diff --git a/grammar.js b/grammar.js index 0df2430..a14b6b4 100644 --- a/grammar.js +++ b/grammar.js @@ -320,7 +320,8 @@ module.exports = grammar({ "function", choice($.identifier, prec.right(2, $.object_access)) ), - seq("(", optional($._function_call_arguments), ")") + seq("(", optional($._function_call_arguments), ")"), + optional(kw("NO-ERROR")) ) ), diff --git a/src/grammar.json b/src/grammar.json index f1836f0..7baa6ed 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2492,6 +2492,30 @@ "value": ")" } ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[nN][oO][--][eE][rR][rR][oO][rR]" + } + } + }, + "named": false, + "value": "NO-ERROR" + }, + { + "type": "BLANK" + } + ] } ] } diff --git a/src/parser.c b/src/parser.c index 3e0f3c3..a79b1ee 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,8 +14,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4719 -#define LARGE_STATE_COUNT 297 +#define STATE_COUNT 4739 +#define LARGE_STATE_COUNT 299 #define SYMBOL_COUNT 426 #define ALIAS_COUNT 0 #define TOKEN_COUNT 238 @@ -129,89 +129,89 @@ enum { anon_sym_COMMA = 102, aux_sym_argument_mode_token1 = 103, aux_sym_argument_mode_token2 = 104, - aux_sym_if_statement_token1 = 105, - aux_sym_if_statement_token2 = 106, - aux_sym_else_if_statement_token1 = 107, - anon_sym_COLON = 108, - aux_sym_while_phrase_token1 = 109, - aux_sym_repeat_statement_token1 = 110, - aux_sym__procedure_terminator_token1 = 111, - aux_sym_procedure_parameter_definition_token1 = 112, - aux_sym_procedure_parameter_definition_token2 = 113, - aux_sym__function_terminator_token1 = 114, - aux_sym_function_parameter_token1 = 115, - aux_sym_function_parameter_token2 = 116, - aux_sym_function_statement_token1 = 117, - aux_sym_interface_statement_token1 = 118, - aux_sym_property_type_token1 = 119, - aux_sym_property_type_token2 = 120, - aux_sym_property_tuning_token1 = 121, - aux_sym_getter_token1 = 122, - aux_sym_setter_token1 = 123, - aux_sym_property_definition_token1 = 124, - aux_sym_event_definition_token1 = 125, - aux_sym_event_definition_token2 = 126, - aux_sym_method_tuning_token1 = 127, - aux_sym_method_definition_token1 = 128, - anon_sym_METHOD = 129, - aux_sym_data_relation_token1 = 130, - aux_sym_data_relation_token2 = 131, - aux_sym_using_statement_token1 = 132, - aux_sym_using_statement_token2 = 133, - aux_sym_using_statement_token3 = 134, - aux_sym_using_statement_token4 = 135, - aux_sym_constructor_definition_token1 = 136, - aux_sym_inherits_token1 = 137, - aux_sym_implements_token1 = 138, - aux_sym_use_widget_pool_token1 = 139, - anon_sym_NO_DASHERROR = 140, - aux_sym_stream_definition_token1 = 141, - aux_sym_input_close_statement_token1 = 142, - aux_sym_input_close_statement_token2 = 143, - aux_sym_input_stream_tuning_token1 = 144, - aux_sym_input_stream_tuning_token2 = 145, - aux_sym_input_stream_tuning_token3 = 146, - aux_sym_input_stream_tuning_token4 = 147, - aux_sym_input_stream_tuning_token5 = 148, - aux_sym_input_stream_tuning_token6 = 149, - aux_sym_input_stream_tuning_token7 = 150, - aux_sym_input_stream_tuning_token8 = 151, - aux_sym_input_stream_tuning_token9 = 152, - aux_sym_input_stream_tuning_token10 = 153, - aux_sym_input_stream_tuning_token11 = 154, - aux_sym_output_stream_tuning_token1 = 155, - aux_sym_output_stream_tuning_token2 = 156, - aux_sym_output_stream_tuning_token3 = 157, - aux_sym_output_stream_tuning_token4 = 158, - aux_sym_output_stream_tuning_token5 = 159, - aux_sym_output_stream_tuning_token6 = 160, - aux_sym_output_stream_tuning_token7 = 161, - aux_sym_output_stream_tuning_token8 = 162, - aux_sym_output_stream_statement_token1 = 163, - aux_sym_on_error_phrase_token1 = 164, - aux_sym_on_error_phrase_token2 = 165, - aux_sym_on_error_phrase_token3 = 166, - aux_sym_on_error_phrase_token4 = 167, - aux_sym_on_error_phrase_token5 = 168, - aux_sym_on_error_phrase_token6 = 169, - aux_sym_on_error_phrase_token7 = 170, - aux_sym_on_error_phrase_token8 = 171, - aux_sym_on_stop_phrase_token1 = 172, - aux_sym_on_quit_phrase_token1 = 173, - aux_sym_stop_after_phrase_token1 = 174, - aux_sym_do_tuning_token1 = 175, - anon_sym_BY = 176, - aux_sym_do_block_token1 = 177, - aux_sym__case_terminator_token1 = 178, - aux_sym_case_when_branch_token1 = 179, - aux_sym_case_otherwise_branch_token1 = 180, - aux_sym_where_clause_token1 = 181, - aux_sym_query_tuning_token1 = 182, - aux_sym_query_tuning_token2 = 183, - aux_sym_query_tuning_token3 = 184, - aux_sym_query_tuning_token4 = 185, - aux_sym_query_tuning_token5 = 186, - aux_sym_query_tuning_token6 = 187, + aux_sym_function_call_token1 = 105, + aux_sym_if_statement_token1 = 106, + aux_sym_if_statement_token2 = 107, + aux_sym_else_if_statement_token1 = 108, + anon_sym_COLON = 109, + aux_sym_while_phrase_token1 = 110, + aux_sym_repeat_statement_token1 = 111, + aux_sym__procedure_terminator_token1 = 112, + aux_sym_procedure_parameter_definition_token1 = 113, + aux_sym_procedure_parameter_definition_token2 = 114, + aux_sym__function_terminator_token1 = 115, + aux_sym_function_parameter_token1 = 116, + aux_sym_function_parameter_token2 = 117, + aux_sym_function_statement_token1 = 118, + aux_sym_interface_statement_token1 = 119, + aux_sym_property_type_token1 = 120, + aux_sym_property_type_token2 = 121, + aux_sym_property_tuning_token1 = 122, + aux_sym_getter_token1 = 123, + aux_sym_setter_token1 = 124, + aux_sym_property_definition_token1 = 125, + aux_sym_event_definition_token1 = 126, + aux_sym_event_definition_token2 = 127, + aux_sym_method_tuning_token1 = 128, + aux_sym_method_definition_token1 = 129, + anon_sym_METHOD = 130, + aux_sym_data_relation_token1 = 131, + aux_sym_data_relation_token2 = 132, + aux_sym_using_statement_token1 = 133, + aux_sym_using_statement_token2 = 134, + aux_sym_using_statement_token3 = 135, + aux_sym_using_statement_token4 = 136, + aux_sym_constructor_definition_token1 = 137, + aux_sym_inherits_token1 = 138, + aux_sym_implements_token1 = 139, + aux_sym_use_widget_pool_token1 = 140, + anon_sym_NO_DASHERROR = 141, + aux_sym_stream_definition_token1 = 142, + aux_sym_input_close_statement_token1 = 143, + aux_sym_input_close_statement_token2 = 144, + aux_sym_input_stream_tuning_token1 = 145, + aux_sym_input_stream_tuning_token2 = 146, + aux_sym_input_stream_tuning_token3 = 147, + aux_sym_input_stream_tuning_token4 = 148, + aux_sym_input_stream_tuning_token5 = 149, + aux_sym_input_stream_tuning_token6 = 150, + aux_sym_input_stream_tuning_token7 = 151, + aux_sym_input_stream_tuning_token8 = 152, + aux_sym_input_stream_tuning_token9 = 153, + aux_sym_input_stream_tuning_token10 = 154, + aux_sym_input_stream_tuning_token11 = 155, + aux_sym_output_stream_tuning_token1 = 156, + aux_sym_output_stream_tuning_token2 = 157, + aux_sym_output_stream_tuning_token3 = 158, + aux_sym_output_stream_tuning_token4 = 159, + aux_sym_output_stream_tuning_token5 = 160, + aux_sym_output_stream_tuning_token6 = 161, + aux_sym_output_stream_tuning_token7 = 162, + aux_sym_output_stream_tuning_token8 = 163, + aux_sym_output_stream_statement_token1 = 164, + aux_sym_on_error_phrase_token1 = 165, + aux_sym_on_error_phrase_token2 = 166, + aux_sym_on_error_phrase_token3 = 167, + aux_sym_on_error_phrase_token4 = 168, + aux_sym_on_error_phrase_token5 = 169, + aux_sym_on_error_phrase_token6 = 170, + aux_sym_on_error_phrase_token7 = 171, + aux_sym_on_error_phrase_token8 = 172, + aux_sym_on_stop_phrase_token1 = 173, + aux_sym_on_quit_phrase_token1 = 174, + aux_sym_stop_after_phrase_token1 = 175, + aux_sym_do_tuning_token1 = 176, + anon_sym_BY = 177, + aux_sym_do_block_token1 = 178, + aux_sym__case_terminator_token1 = 179, + aux_sym_case_when_branch_token1 = 180, + aux_sym_case_otherwise_branch_token1 = 181, + aux_sym_where_clause_token1 = 182, + aux_sym_query_tuning_token1 = 183, + aux_sym_query_tuning_token2 = 184, + aux_sym_query_tuning_token3 = 185, + aux_sym_query_tuning_token4 = 186, + aux_sym_query_tuning_token5 = 187, aux_sym_sort_order_token1 = 188, aux_sym_sort_order_token2 = 189, aux_sym_sort_order_token3 = 190, @@ -558,6 +558,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_COMMA] = ",", [aux_sym_argument_mode_token1] = "OUTPUT", [aux_sym_argument_mode_token2] = "INPUT-OUTPUT", + [aux_sym_function_call_token1] = "NO-ERROR", [aux_sym_if_statement_token1] = "IF", [aux_sym_if_statement_token2] = "THEN", [aux_sym_else_if_statement_token1] = "ELSE", @@ -639,8 +640,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_query_tuning_token2] = "SHARE-LOCK", [aux_sym_query_tuning_token3] = "EXCLUSIVE-LOCK", [aux_sym_query_tuning_token4] = "NO-WAIT", - [aux_sym_query_tuning_token5] = "NO-ERROR", - [aux_sym_query_tuning_token6] = "USE-INDEX", + [aux_sym_query_tuning_token5] = "USE-INDEX", [aux_sym_sort_order_token1] = "ASCENDING", [aux_sym_sort_order_token2] = "DESCENDING", [aux_sym_sort_order_token3] = "DESC", @@ -987,6 +987,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_COMMA] = anon_sym_COMMA, [aux_sym_argument_mode_token1] = aux_sym_argument_mode_token1, [aux_sym_argument_mode_token2] = aux_sym_argument_mode_token2, + [aux_sym_function_call_token1] = anon_sym_NO_DASHERROR, [aux_sym_if_statement_token1] = aux_sym_if_statement_token1, [aux_sym_if_statement_token2] = aux_sym_if_statement_token2, [aux_sym_else_if_statement_token1] = aux_sym_else_if_statement_token1, @@ -1068,8 +1069,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_query_tuning_token2] = aux_sym_query_tuning_token2, [aux_sym_query_tuning_token3] = aux_sym_query_tuning_token3, [aux_sym_query_tuning_token4] = aux_sym_query_tuning_token4, - [aux_sym_query_tuning_token5] = anon_sym_NO_DASHERROR, - [aux_sym_query_tuning_token6] = aux_sym_query_tuning_token6, + [aux_sym_query_tuning_token5] = aux_sym_query_tuning_token5, [aux_sym_sort_order_token1] = aux_sym_sort_order_token1, [aux_sym_sort_order_token2] = aux_sym_sort_order_token2, [aux_sym_sort_order_token3] = aux_sym_sort_order_token3, @@ -1731,6 +1731,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_function_call_token1] = { + .visible = true, + .named = false, + }, [aux_sym_if_statement_token1] = { .visible = true, .named = false, @@ -2059,10 +2063,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_query_tuning_token6] = { - .visible = true, - .named = false, - }, [aux_sym_sort_order_token1] = { .visible = true, .named = false, @@ -3342,13 +3342,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [47] = 47, [48] = 48, [49] = 49, - [50] = 46, - [51] = 47, - [52] = 49, - [53] = 48, - [54] = 45, - [55] = 55, - [56] = 56, + [50] = 50, + [51] = 51, + [52] = 50, + [53] = 51, + [54] = 47, + [55] = 48, + [56] = 49, [57] = 57, [58] = 58, [59] = 59, @@ -3356,300 +3356,300 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [61] = 61, [62] = 62, [63] = 63, - [64] = 63, + [64] = 64, [65] = 65, [66] = 66, [67] = 67, - [68] = 63, - [69] = 69, - [70] = 70, - [71] = 66, - [72] = 70, + [68] = 68, + [69] = 62, + [70] = 64, + [71] = 71, + [72] = 72, [73] = 73, - [74] = 65, - [75] = 61, - [76] = 56, + [74] = 74, + [75] = 75, + [76] = 76, [77] = 77, - [78] = 78, - [79] = 79, - [80] = 73, + [78] = 75, + [79] = 71, + [80] = 80, [81] = 81, [82] = 82, - [83] = 69, - [84] = 77, + [83] = 83, + [84] = 84, [85] = 85, - [86] = 78, - [87] = 55, - [88] = 79, + [86] = 86, + [87] = 58, + [88] = 77, [89] = 89, - [90] = 62, - [91] = 91, - [92] = 67, + [90] = 73, + [91] = 60, + [92] = 61, [93] = 93, - [94] = 85, - [95] = 63, + [94] = 73, + [95] = 89, [96] = 96, - [97] = 62, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 93, - [102] = 102, - [103] = 103, - [104] = 77, - [105] = 105, - [106] = 77, - [107] = 105, - [108] = 100, + [97] = 77, + [98] = 75, + [99] = 64, + [100] = 71, + [101] = 63, + [102] = 65, + [103] = 62, + [104] = 65, + [105] = 63, + [106] = 66, + [107] = 72, + [108] = 108, [109] = 109, - [110] = 105, - [111] = 60, - [112] = 98, - [113] = 98, - [114] = 91, - [115] = 103, - [116] = 59, - [117] = 117, - [118] = 85, - [119] = 102, - [120] = 70, - [121] = 121, - [122] = 98, - [123] = 73, - [124] = 73, + [110] = 66, + [111] = 109, + [112] = 63, + [113] = 60, + [114] = 80, + [115] = 62, + [116] = 61, + [117] = 81, + [118] = 64, + [119] = 60, + [120] = 120, + [121] = 65, + [122] = 61, + [123] = 123, + [124] = 82, [125] = 125, - [126] = 100, - [127] = 62, - [128] = 93, - [129] = 99, - [130] = 81, - [131] = 96, - [132] = 109, - [133] = 133, - [134] = 134, - [135] = 135, - [136] = 77, - [137] = 93, - [138] = 138, - [139] = 63, - [140] = 98, - [141] = 99, - [142] = 70, - [143] = 57, + [126] = 126, + [127] = 65, + [128] = 63, + [129] = 61, + [130] = 59, + [131] = 93, + [132] = 132, + [133] = 76, + [134] = 74, + [135] = 81, + [136] = 83, + [137] = 96, + [138] = 57, + [139] = 68, + [140] = 67, + [141] = 141, + [142] = 142, + [143] = 143, [144] = 144, - [145] = 133, - [146] = 109, - [147] = 85, - [148] = 133, - [149] = 58, - [150] = 81, - [151] = 96, - [152] = 59, - [153] = 60, - [154] = 67, - [155] = 69, - [156] = 66, - [157] = 65, - [158] = 109, - [159] = 61, - [160] = 133, - [161] = 103, - [162] = 62, - [163] = 91, - [164] = 102, - [165] = 79, - [166] = 89, - [167] = 56, - [168] = 82, - [169] = 79, - [170] = 138, - [171] = 100, - [172] = 138, - [173] = 89, + [145] = 145, + [146] = 59, + [147] = 66, + [148] = 132, + [149] = 82, + [150] = 150, + [151] = 150, + [152] = 62, + [153] = 89, + [154] = 154, + [155] = 93, + [156] = 76, + [157] = 73, + [158] = 74, + [159] = 58, + [160] = 132, + [161] = 68, + [162] = 77, + [163] = 66, + [164] = 67, + [165] = 93, + [166] = 59, + [167] = 132, + [168] = 150, + [169] = 60, + [170] = 83, + [171] = 76, + [172] = 154, + [173] = 75, [174] = 57, - [175] = 58, - [176] = 99, - [177] = 96, - [178] = 78, - [179] = 55, - [180] = 73, - [181] = 82, - [182] = 59, - [183] = 105, - [184] = 56, - [185] = 60, - [186] = 81, - [187] = 58, - [188] = 89, - [189] = 96, - [190] = 109, - [191] = 91, - [192] = 99, - [193] = 78, - [194] = 133, - [195] = 138, - [196] = 57, - [197] = 57, - [198] = 78, - [199] = 58, - [200] = 61, - [201] = 138, - [202] = 59, - [203] = 65, - [204] = 60, - [205] = 103, - [206] = 66, - [207] = 100, - [208] = 105, - [209] = 55, - [210] = 210, - [211] = 91, - [212] = 212, - [213] = 81, - [214] = 214, - [215] = 89, - [216] = 102, - [217] = 103, - [218] = 55, - [219] = 82, - [220] = 67, - [221] = 93, - [222] = 56, - [223] = 85, - [224] = 224, - [225] = 70, - [226] = 61, - [227] = 65, - [228] = 66, - [229] = 69, - [230] = 69, - [231] = 79, - [232] = 102, - [233] = 67, - [234] = 82, - [235] = 235, - [236] = 236, + [175] = 109, + [176] = 71, + [177] = 108, + [178] = 58, + [179] = 86, + [180] = 93, + [181] = 76, + [182] = 74, + [183] = 183, + [184] = 109, + [185] = 96, + [186] = 150, + [187] = 74, + [188] = 64, + [189] = 68, + [190] = 68, + [191] = 72, + [192] = 96, + [193] = 67, + [194] = 109, + [195] = 89, + [196] = 59, + [197] = 154, + [198] = 80, + [199] = 86, + [200] = 80, + [201] = 67, + [202] = 132, + [203] = 57, + [204] = 84, + [205] = 85, + [206] = 108, + [207] = 85, + [208] = 81, + [209] = 72, + [210] = 150, + [211] = 84, + [212] = 108, + [213] = 96, + [214] = 83, + [215] = 82, + [216] = 82, + [217] = 85, + [218] = 83, + [219] = 81, + [220] = 80, + [221] = 154, + [222] = 71, + [223] = 84, + [224] = 85, + [225] = 75, + [226] = 86, + [227] = 86, + [228] = 58, + [229] = 77, + [230] = 84, + [231] = 108, + [232] = 57, + [233] = 73, + [234] = 89, + [235] = 72, + [236] = 154, [237] = 237, [238] = 238, [239] = 239, [240] = 240, [241] = 241, - [242] = 236, + [242] = 242, [243] = 243, [244] = 244, - [245] = 236, + [245] = 245, [246] = 246, - [247] = 240, + [247] = 247, [248] = 248, - [249] = 236, - [250] = 250, - [251] = 243, + [249] = 240, + [250] = 247, + [251] = 251, [252] = 252, - [253] = 253, - [254] = 254, + [253] = 240, + [254] = 240, [255] = 255, [256] = 256, [257] = 257, - [258] = 258, - [259] = 236, + [258] = 240, + [259] = 259, [260] = 260, - [261] = 239, - [262] = 262, + [261] = 261, + [262] = 245, [263] = 263, - [264] = 263, + [264] = 237, [265] = 265, [266] = 266, - [267] = 265, - [268] = 263, - [269] = 269, + [267] = 266, + [268] = 266, + [269] = 266, [270] = 265, [271] = 265, - [272] = 272, - [273] = 263, - [274] = 265, - [275] = 263, + [272] = 266, + [273] = 265, + [274] = 266, + [275] = 275, [276] = 265, - [277] = 265, - [278] = 263, - [279] = 272, - [280] = 263, - [281] = 281, - [282] = 282, + [277] = 277, + [278] = 278, + [279] = 265, + [280] = 278, + [281] = 265, + [282] = 266, [283] = 283, [284] = 284, - [285] = 283, - [286] = 283, - [287] = 284, - [288] = 284, - [289] = 283, - [290] = 283, - [291] = 284, - [292] = 284, - [293] = 284, - [294] = 283, - [295] = 284, - [296] = 283, - [297] = 297, - [298] = 297, - [299] = 297, - [300] = 297, - [301] = 297, - [302] = 302, - [303] = 303, - [304] = 303, - [305] = 302, - [306] = 303, + [285] = 285, + [286] = 285, + [287] = 287, + [288] = 287, + [289] = 285, + [290] = 287, + [291] = 287, + [292] = 285, + [293] = 287, + [294] = 285, + [295] = 287, + [296] = 285, + [297] = 285, + [298] = 287, + [299] = 299, + [300] = 299, + [301] = 299, + [302] = 299, + [303] = 299, + [304] = 304, + [305] = 304, + [306] = 306, [307] = 307, - [308] = 303, - [309] = 303, - [310] = 303, - [311] = 303, - [312] = 302, - [313] = 303, - [314] = 302, - [315] = 302, - [316] = 302, - [317] = 303, - [318] = 302, - [319] = 303, - [320] = 302, - [321] = 302, - [322] = 322, - [323] = 323, + [308] = 306, + [309] = 304, + [310] = 304, + [311] = 304, + [312] = 304, + [313] = 306, + [314] = 306, + [315] = 306, + [316] = 306, + [317] = 304, + [318] = 306, + [319] = 304, + [320] = 304, + [321] = 306, + [322] = 306, + [323] = 304, [324] = 324, [325] = 325, - [326] = 323, + [326] = 325, [327] = 327, - [328] = 327, - [329] = 327, - [330] = 327, + [328] = 328, + [329] = 329, + [330] = 4, [331] = 331, - [332] = 9, + [332] = 329, [333] = 333, - [334] = 327, - [335] = 333, - [336] = 4, - [337] = 337, - [338] = 331, + [334] = 329, + [335] = 331, + [336] = 329, + [337] = 8, + [338] = 329, [339] = 339, - [340] = 339, - [341] = 339, - [342] = 12, - [343] = 339, - [344] = 339, - [345] = 345, - [346] = 346, + [340] = 333, + [341] = 341, + [342] = 341, + [343] = 12, + [344] = 341, + [345] = 341, + [346] = 341, [347] = 347, [348] = 348, [349] = 349, - [350] = 346, + [350] = 350, [351] = 351, [352] = 352, [353] = 353, [354] = 354, [355] = 355, [356] = 356, - [357] = 356, + [357] = 357, [358] = 358, [359] = 359, [360] = 360, @@ -3657,484 +3657,484 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [362] = 362, [363] = 363, [364] = 364, - [365] = 346, + [365] = 353, [366] = 366, - [367] = 367, - [368] = 356, - [369] = 347, + [367] = 355, + [368] = 368, + [369] = 369, [370] = 370, - [371] = 354, - [372] = 356, - [373] = 373, - [374] = 374, - [375] = 359, - [376] = 376, - [377] = 377, - [378] = 374, - [379] = 377, - [380] = 376, + [371] = 371, + [372] = 370, + [373] = 357, + [374] = 356, + [375] = 375, + [376] = 361, + [377] = 360, + [378] = 359, + [379] = 364, + [380] = 358, [381] = 381, - [382] = 381, - [383] = 381, - [384] = 384, - [385] = 381, - [386] = 352, + [382] = 357, + [383] = 383, + [384] = 362, + [385] = 385, + [386] = 386, [387] = 387, - [388] = 355, - [389] = 389, - [390] = 387, - [391] = 345, + [388] = 388, + [389] = 386, + [390] = 362, + [391] = 355, [392] = 353, - [393] = 387, - [394] = 355, - [395] = 362, - [396] = 363, - [397] = 370, - [398] = 398, - [399] = 352, - [400] = 364, - [401] = 352, - [402] = 353, - [403] = 355, - [404] = 387, - [405] = 353, - [406] = 345, - [407] = 367, - [408] = 345, - [409] = 345, - [410] = 381, - [411] = 361, - [412] = 364, - [413] = 366, - [414] = 373, - [415] = 362, - [416] = 354, - [417] = 370, - [418] = 354, - [419] = 347, - [420] = 352, - [421] = 373, - [422] = 347, + [393] = 352, + [394] = 351, + [395] = 361, + [396] = 368, + [397] = 354, + [398] = 360, + [399] = 359, + [400] = 400, + [401] = 358, + [402] = 357, + [403] = 357, + [404] = 358, + [405] = 370, + [406] = 359, + [407] = 407, + [408] = 360, + [409] = 361, + [410] = 349, + [411] = 368, + [412] = 383, + [413] = 368, + [414] = 414, + [415] = 407, + [416] = 416, + [417] = 351, + [418] = 352, + [419] = 353, + [420] = 362, + [421] = 355, + [422] = 362, [423] = 423, - [424] = 424, - [425] = 370, - [426] = 373, - [427] = 346, - [428] = 354, - [429] = 373, - [430] = 346, - [431] = 349, - [432] = 381, + [424] = 358, + [425] = 359, + [426] = 347, + [427] = 360, + [428] = 361, + [429] = 350, + [430] = 368, + [431] = 368, + [432] = 423, [433] = 366, - [434] = 366, - [435] = 370, - [436] = 361, - [437] = 359, - [438] = 381, - [439] = 376, - [440] = 362, - [441] = 441, - [442] = 361, - [443] = 367, - [444] = 361, - [445] = 356, - [446] = 362, - [447] = 347, - [448] = 387, - [449] = 366, - [450] = 355, - [451] = 441, - [452] = 452, - [453] = 353, - [454] = 454, - [455] = 363, - [456] = 363, - [457] = 366, - [458] = 363, - [459] = 363, + [434] = 351, + [435] = 371, + [436] = 386, + [437] = 385, + [438] = 363, + [439] = 361, + [440] = 360, + [441] = 359, + [442] = 358, + [443] = 349, + [444] = 352, + [445] = 383, + [446] = 361, + [447] = 360, + [448] = 383, + [449] = 359, + [450] = 358, + [451] = 368, + [452] = 357, + [453] = 453, + [454] = 357, + [455] = 353, + [456] = 370, + [457] = 357, + [458] = 358, + [459] = 349, [460] = 460, - [461] = 367, - [462] = 363, - [463] = 358, - [464] = 374, - [465] = 377, - [466] = 376, - [467] = 377, - [468] = 367, - [469] = 374, - [470] = 423, - [471] = 345, - [472] = 472, - [473] = 345, + [461] = 347, + [462] = 359, + [463] = 360, + [464] = 464, + [465] = 407, + [466] = 385, + [467] = 414, + [468] = 362, + [469] = 386, + [470] = 362, + [471] = 353, + [472] = 352, + [473] = 351, [474] = 353, - [475] = 353, - [476] = 387, - [477] = 384, - [478] = 355, - [479] = 387, - [480] = 359, - [481] = 352, - [482] = 482, - [483] = 373, + [475] = 361, + [476] = 355, + [477] = 366, + [478] = 370, + [479] = 352, + [480] = 351, + [481] = 423, + [482] = 386, + [483] = 362, [484] = 355, - [485] = 485, - [486] = 354, - [487] = 370, - [488] = 347, - [489] = 345, - [490] = 352, + [485] = 353, + [486] = 486, + [487] = 352, + [488] = 363, + [489] = 351, + [490] = 407, [491] = 366, - [492] = 492, - [493] = 347, - [494] = 359, - [495] = 374, - [496] = 373, - [497] = 381, - [498] = 354, - [499] = 364, - [500] = 500, - [501] = 374, - [502] = 370, - [503] = 503, - [504] = 504, - [505] = 370, - [506] = 347, - [507] = 364, - [508] = 354, - [509] = 353, - [510] = 366, - [511] = 377, - [512] = 482, - [513] = 373, - [514] = 376, - [515] = 387, - [516] = 355, - [517] = 352, - [518] = 363, - [519] = 374, - [520] = 3, - [521] = 212, - [522] = 135, - [523] = 134, - [524] = 125, - [525] = 121, - [526] = 117, - [527] = 144, - [528] = 2, - [529] = 210, - [530] = 530, - [531] = 214, - [532] = 224, - [533] = 8, - [534] = 7, - [535] = 6, - [536] = 9, - [537] = 5, - [538] = 4, - [539] = 11, - [540] = 540, + [492] = 385, + [493] = 354, + [494] = 354, + [495] = 383, + [496] = 355, + [497] = 383, + [498] = 407, + [499] = 347, + [500] = 368, + [501] = 347, + [502] = 502, + [503] = 383, + [504] = 385, + [505] = 505, + [506] = 506, + [507] = 355, + [508] = 423, + [509] = 347, + [510] = 354, + [511] = 347, + [512] = 347, + [513] = 366, + [514] = 387, + [515] = 423, + [516] = 363, + [517] = 351, + [518] = 352, + [519] = 519, + [520] = 349, + [521] = 363, + [522] = 145, + [523] = 3, + [524] = 183, + [525] = 126, + [526] = 141, + [527] = 142, + [528] = 125, + [529] = 143, + [530] = 144, + [531] = 123, + [532] = 120, + [533] = 533, + [534] = 2, + [535] = 4, + [536] = 5, + [537] = 6, + [538] = 9, + [539] = 7, + [540] = 8, [541] = 541, - [542] = 12, - [543] = 281, - [544] = 540, - [545] = 10, - [546] = 540, - [547] = 540, + [542] = 24, + [543] = 543, + [544] = 284, + [545] = 283, + [546] = 11, + [547] = 12, [548] = 541, - [549] = 540, - [550] = 541, - [551] = 541, - [552] = 541, - [553] = 282, - [554] = 27, - [555] = 37, - [556] = 35, - [557] = 18, - [558] = 42, - [559] = 36, - [560] = 43, - [561] = 14, - [562] = 33, - [563] = 32, - [564] = 16, - [565] = 40, - [566] = 17, - [567] = 19, - [568] = 34, - [569] = 24, - [570] = 28, - [571] = 21, - [572] = 13, - [573] = 39, - [574] = 38, - [575] = 29, - [576] = 26, - [577] = 41, - [578] = 44, - [579] = 20, - [580] = 15, - [581] = 22, - [582] = 23, - [583] = 583, - [584] = 30, - [585] = 25, - [586] = 31, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 3, + [549] = 10, + [550] = 543, + [551] = 16, + [552] = 543, + [553] = 541, + [554] = 543, + [555] = 541, + [556] = 543, + [557] = 541, + [558] = 17, + [559] = 34, + [560] = 31, + [561] = 43, + [562] = 39, + [563] = 37, + [564] = 18, + [565] = 21, + [566] = 38, + [567] = 23, + [568] = 568, + [569] = 14, + [570] = 19, + [571] = 30, + [572] = 15, + [573] = 41, + [574] = 29, + [575] = 13, + [576] = 45, + [577] = 35, + [578] = 36, + [579] = 27, + [580] = 40, + [581] = 42, + [582] = 32, + [583] = 26, + [584] = 46, + [585] = 33, + [586] = 44, + [587] = 20, + [588] = 25, + [589] = 22, + [590] = 28, [591] = 591, [592] = 592, - [593] = 591, - [594] = 591, - [595] = 592, - [596] = 592, - [597] = 591, - [598] = 2, - [599] = 591, - [600] = 592, - [601] = 591, - [602] = 592, - [603] = 591, - [604] = 592, - [605] = 592, - [606] = 210, - [607] = 117, - [608] = 608, - [609] = 212, - [610] = 121, - [611] = 125, - [612] = 134, - [613] = 135, - [614] = 214, - [615] = 224, - [616] = 144, - [617] = 6, - [618] = 8, - [619] = 619, - [620] = 619, - [621] = 7, - [622] = 11, - [623] = 2, - [624] = 624, - [625] = 624, - [626] = 619, - [627] = 624, - [628] = 4, - [629] = 624, - [630] = 9, - [631] = 624, - [632] = 5, - [633] = 619, - [634] = 3, - [635] = 619, - [636] = 125, - [637] = 125, - [638] = 212, - [639] = 224, - [640] = 10, - [641] = 23, - [642] = 642, - [643] = 281, - [644] = 117, - [645] = 144, - [646] = 144, - [647] = 134, - [648] = 34, - [649] = 214, - [650] = 134, - [651] = 135, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 595, + [597] = 594, + [598] = 595, + [599] = 595, + [600] = 594, + [601] = 3, + [602] = 595, + [603] = 594, + [604] = 594, + [605] = 2, + [606] = 595, + [607] = 594, + [608] = 594, + [609] = 595, + [610] = 610, + [611] = 142, + [612] = 141, + [613] = 126, + [614] = 125, + [615] = 183, + [616] = 123, + [617] = 143, + [618] = 144, + [619] = 145, + [620] = 120, + [621] = 9, + [622] = 7, + [623] = 4, + [624] = 2, + [625] = 625, + [626] = 625, + [627] = 3, + [628] = 628, + [629] = 625, + [630] = 628, + [631] = 625, + [632] = 628, + [633] = 625, + [634] = 6, + [635] = 628, + [636] = 11, + [637] = 628, + [638] = 8, + [639] = 5, + [640] = 143, + [641] = 141, + [642] = 24, + [643] = 120, + [644] = 126, + [645] = 645, + [646] = 125, + [647] = 144, + [648] = 126, + [649] = 145, + [650] = 283, + [651] = 183, [652] = 652, - [653] = 210, - [654] = 214, - [655] = 121, - [656] = 282, - [657] = 12, - [658] = 135, - [659] = 117, - [660] = 210, - [661] = 121, - [662] = 224, - [663] = 212, - [664] = 652, - [665] = 665, - [666] = 15, - [667] = 28, - [668] = 24, - [669] = 37, - [670] = 43, - [671] = 14, - [672] = 30, - [673] = 22, - [674] = 19, - [675] = 31, - [676] = 676, - [677] = 21, - [678] = 33, - [679] = 679, - [680] = 680, - [681] = 27, - [682] = 40, - [683] = 676, - [684] = 39, - [685] = 679, - [686] = 25, - [687] = 680, - [688] = 38, - [689] = 20, - [690] = 26, - [691] = 35, - [692] = 679, - [693] = 44, - [694] = 676, - [695] = 695, - [696] = 680, - [697] = 13, - [698] = 676, - [699] = 6, - [700] = 41, - [701] = 29, - [702] = 676, - [703] = 16, - [704] = 32, - [705] = 680, - [706] = 42, - [707] = 8, - [708] = 679, - [709] = 17, - [710] = 679, - [711] = 18, - [712] = 680, - [713] = 36, - [714] = 714, - [715] = 4, - [716] = 716, - [717] = 11, - [718] = 7, - [719] = 9, - [720] = 9, - [721] = 5, - [722] = 4, - [723] = 10, - [724] = 282, - [725] = 281, - [726] = 281, - [727] = 23, - [728] = 12, - [729] = 282, - [730] = 12, - [731] = 731, - [732] = 34, - [733] = 13, - [734] = 35, - [735] = 735, - [736] = 24, - [737] = 40, - [738] = 19, - [739] = 21, - [740] = 22, - [741] = 14, + [653] = 125, + [654] = 16, + [655] = 123, + [656] = 284, + [657] = 141, + [658] = 28, + [659] = 120, + [660] = 12, + [661] = 142, + [662] = 142, + [663] = 143, + [664] = 144, + [665] = 145, + [666] = 652, + [667] = 17, + [668] = 123, + [669] = 10, + [670] = 183, + [671] = 13, + [672] = 44, + [673] = 27, + [674] = 23, + [675] = 675, + [676] = 46, + [677] = 15, + [678] = 678, + [679] = 7, + [680] = 21, + [681] = 22, + [682] = 9, + [683] = 675, + [684] = 29, + [685] = 685, + [686] = 30, + [687] = 32, + [688] = 33, + [689] = 34, + [690] = 36, + [691] = 678, + [692] = 37, + [693] = 675, + [694] = 694, + [695] = 31, + [696] = 696, + [697] = 20, + [698] = 40, + [699] = 43, + [700] = 14, + [701] = 35, + [702] = 678, + [703] = 694, + [704] = 678, + [705] = 25, + [706] = 26, + [707] = 18, + [708] = 38, + [709] = 39, + [710] = 45, + [711] = 694, + [712] = 694, + [713] = 713, + [714] = 41, + [715] = 675, + [716] = 675, + [717] = 694, + [718] = 678, + [719] = 19, + [720] = 42, + [721] = 6, + [722] = 11, + [723] = 5, + [724] = 8, + [725] = 4, + [726] = 4, + [727] = 8, + [728] = 728, + [729] = 283, + [730] = 284, + [731] = 12, + [732] = 283, + [733] = 733, + [734] = 12, + [735] = 17, + [736] = 28, + [737] = 10, + [738] = 284, + [739] = 13, + [740] = 25, + [741] = 26, [742] = 742, - [743] = 25, + [743] = 34, [744] = 33, - [745] = 17, - [746] = 30, - [747] = 32, - [748] = 37, - [749] = 26, - [750] = 28, - [751] = 15, - [752] = 39, - [753] = 29, - [754] = 42, - [755] = 27, - [756] = 43, - [757] = 16, - [758] = 20, - [759] = 41, - [760] = 38, - [761] = 31, - [762] = 44, - [763] = 18, - [764] = 36, - [765] = 2, - [766] = 766, - [767] = 3, - [768] = 768, - [769] = 144, - [770] = 117, - [771] = 771, - [772] = 772, + [745] = 32, + [746] = 35, + [747] = 14, + [748] = 16, + [749] = 15, + [750] = 30, + [751] = 29, + [752] = 19, + [753] = 27, + [754] = 37, + [755] = 40, + [756] = 23, + [757] = 24, + [758] = 36, + [759] = 38, + [760] = 22, + [761] = 18, + [762] = 39, + [763] = 46, + [764] = 20, + [765] = 43, + [766] = 42, + [767] = 41, + [768] = 45, + [769] = 44, + [770] = 770, + [771] = 21, + [772] = 31, [773] = 773, - [774] = 10, - [775] = 2, - [776] = 125, - [777] = 134, - [778] = 135, - [779] = 212, - [780] = 3, - [781] = 224, - [782] = 782, - [783] = 768, - [784] = 214, - [785] = 210, - [786] = 782, - [787] = 608, - [788] = 121, - [789] = 773, - [790] = 121, - [791] = 6, - [792] = 135, - [793] = 793, - [794] = 214, + [774] = 2, + [775] = 3, + [776] = 120, + [777] = 2, + [778] = 778, + [779] = 144, + [780] = 145, + [781] = 143, + [782] = 142, + [783] = 141, + [784] = 126, + [785] = 125, + [786] = 123, + [787] = 183, + [788] = 610, + [789] = 789, + [790] = 790, + [791] = 791, + [792] = 792, + [793] = 778, + [794] = 10, [795] = 3, - [796] = 144, - [797] = 212, - [798] = 210, - [799] = 117, - [800] = 8, - [801] = 793, - [802] = 224, - [803] = 803, - [804] = 793, - [805] = 134, - [806] = 793, - [807] = 28, - [808] = 2, - [809] = 125, - [810] = 793, - [811] = 811, - [812] = 41, - [813] = 813, - [814] = 6, - [815] = 134, - [816] = 7, - [817] = 4, - [818] = 214, - [819] = 819, - [820] = 135, - [821] = 8, - [822] = 822, - [823] = 823, - [824] = 772, - [825] = 212, - [826] = 5, - [827] = 117, - [828] = 11, - [829] = 224, - [830] = 121, - [831] = 125, - [832] = 210, - [833] = 144, - [834] = 9, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, - [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, + [796] = 790, + [797] = 789, + [798] = 798, + [799] = 120, + [800] = 3, + [801] = 144, + [802] = 143, + [803] = 142, + [804] = 141, + [805] = 41, + [806] = 126, + [807] = 125, + [808] = 123, + [809] = 798, + [810] = 145, + [811] = 7, + [812] = 183, + [813] = 9, + [814] = 798, + [815] = 815, + [816] = 2, + [817] = 798, + [818] = 798, + [819] = 23, + [820] = 820, + [821] = 4, + [822] = 11, + [823] = 8, + [824] = 183, + [825] = 825, + [826] = 9, + [827] = 827, + [828] = 120, + [829] = 123, + [830] = 5, + [831] = 831, + [832] = 125, + [833] = 126, + [834] = 834, + [835] = 142, + [836] = 6, + [837] = 144, + [838] = 145, + [839] = 7, + [840] = 791, + [841] = 143, + [842] = 141, [843] = 843, [844] = 844, [845] = 845, @@ -4142,7 +4142,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [847] = 847, [848] = 848, [849] = 849, - [850] = 822, + [850] = 850, [851] = 851, [852] = 852, [853] = 853, @@ -4159,12 +4159,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [864] = 864, [865] = 865, [866] = 866, - [867] = 4, + [867] = 867, [868] = 868, - [869] = 9, - [870] = 836, - [871] = 871, - [872] = 845, + [869] = 869, + [870] = 870, + [871] = 24, + [872] = 284, [873] = 873, [874] = 874, [875] = 875, @@ -4173,7 +4173,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [878] = 878, [879] = 879, [880] = 880, - [881] = 881, + [881] = 843, [882] = 882, [883] = 883, [884] = 884, @@ -4183,11 +4183,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [888] = 888, [889] = 889, [890] = 890, - [891] = 10, - [892] = 892, - [893] = 34, + [891] = 891, + [892] = 283, + [893] = 893, [894] = 894, - [895] = 895, + [895] = 882, [896] = 896, [897] = 897, [898] = 898, @@ -4197,2656 +4197,2656 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [902] = 902, [903] = 903, [904] = 904, - [905] = 905, + [905] = 896, [906] = 906, [907] = 907, [908] = 908, [909] = 909, - [910] = 910, - [911] = 11, - [912] = 23, - [913] = 840, - [914] = 837, - [915] = 842, - [916] = 843, - [917] = 852, - [918] = 853, + [910] = 904, + [911] = 903, + [912] = 902, + [913] = 870, + [914] = 869, + [915] = 868, + [916] = 866, + [917] = 917, + [918] = 918, [919] = 919, - [920] = 860, + [920] = 920, [921] = 921, - [922] = 861, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, + [922] = 922, + [923] = 901, + [924] = 900, + [925] = 899, + [926] = 898, + [927] = 897, [928] = 928, - [929] = 862, + [929] = 929, [930] = 930, [931] = 931, - [932] = 873, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 874, - [942] = 875, - [943] = 876, - [944] = 944, - [945] = 877, + [932] = 932, + [933] = 8, + [934] = 28, + [935] = 894, + [936] = 893, + [937] = 891, + [938] = 890, + [939] = 889, + [940] = 888, + [941] = 941, + [942] = 942, + [943] = 887, + [944] = 886, + [945] = 885, [946] = 946, [947] = 947, - [948] = 878, + [948] = 948, [949] = 949, [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, + [951] = 884, + [952] = 883, + [953] = 17, + [954] = 917, [955] = 955, - [956] = 956, - [957] = 899, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, + [956] = 880, + [957] = 879, + [958] = 878, + [959] = 877, + [960] = 10, + [961] = 876, [962] = 962, - [963] = 900, - [964] = 964, + [963] = 875, + [964] = 874, [965] = 965, - [966] = 966, - [967] = 901, - [968] = 902, - [969] = 969, + [966] = 873, + [967] = 867, + [968] = 968, + [969] = 865, [970] = 970, - [971] = 903, + [971] = 971, [972] = 972, - [973] = 973, - [974] = 904, + [973] = 834, + [974] = 974, [975] = 975, [976] = 976, - [977] = 977, - [978] = 906, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 907, + [977] = 864, + [978] = 863, + [979] = 862, + [980] = 861, + [981] = 860, + [982] = 859, [983] = 983, [984] = 984, - [985] = 985, - [986] = 986, + [985] = 858, + [986] = 857, [987] = 987, [988] = 988, - [989] = 989, + [989] = 856, [990] = 990, - [991] = 991, - [992] = 938, + [991] = 855, + [992] = 854, [993] = 993, [994] = 994, - [995] = 995, - [996] = 996, + [995] = 853, + [996] = 852, [997] = 997, - [998] = 998, - [999] = 939, + [998] = 851, + [999] = 850, [1000] = 1000, [1001] = 1001, - [1002] = 940, + [1002] = 1002, [1003] = 1003, [1004] = 1004, - [1005] = 1005, - [1006] = 944, + [1005] = 918, + [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 1005, - [1010] = 1008, - [1011] = 1003, - [1012] = 1000, - [1013] = 998, - [1014] = 993, - [1015] = 991, - [1016] = 990, - [1017] = 985, - [1018] = 1018, - [1019] = 983, - [1020] = 1007, - [1021] = 1004, - [1022] = 946, - [1023] = 282, - [1024] = 997, - [1025] = 996, - [1026] = 995, - [1027] = 994, - [1028] = 8, - [1029] = 988, - [1030] = 987, - [1031] = 986, - [1032] = 12, - [1033] = 838, - [1034] = 984, - [1035] = 981, - [1036] = 979, - [1037] = 977, - [1038] = 976, - [1039] = 961, - [1040] = 960, - [1041] = 958, - [1042] = 955, - [1043] = 954, - [1044] = 975, - [1045] = 953, - [1046] = 952, - [1047] = 951, - [1048] = 973, - [1049] = 949, - [1050] = 970, - [1051] = 969, - [1052] = 966, - [1053] = 965, - [1054] = 281, - [1055] = 950, - [1056] = 947, - [1057] = 937, - [1058] = 936, - [1059] = 935, - [1060] = 933, - [1061] = 931, - [1062] = 930, - [1063] = 928, - [1064] = 7, - [1065] = 927, - [1066] = 926, - [1067] = 925, - [1068] = 924, - [1069] = 880, - [1070] = 923, - [1071] = 919, - [1072] = 989, - [1073] = 910, - [1074] = 908, - [1075] = 898, - [1076] = 894, - [1077] = 892, - [1078] = 6, - [1079] = 888, - [1080] = 886, - [1081] = 885, - [1082] = 909, - [1083] = 897, - [1084] = 5, - [1085] = 896, - [1086] = 884, - [1087] = 905, - [1088] = 883, - [1089] = 895, - [1090] = 882, - [1091] = 881, - [1092] = 879, - [1093] = 871, - [1094] = 890, - [1095] = 889, - [1096] = 980, - [1097] = 1018, - [1098] = 972, - [1099] = 964, - [1100] = 962, - [1101] = 959, - [1102] = 956, - [1103] = 934, - [1104] = 921, - [1105] = 1001, - [1106] = 839, - [1107] = 841, - [1108] = 844, - [1109] = 847, - [1110] = 848, - [1111] = 849, - [1112] = 835, - [1113] = 854, - [1114] = 855, - [1115] = 856, - [1116] = 857, - [1117] = 858, - [1118] = 863, - [1119] = 864, - [1120] = 865, - [1121] = 866, - [1122] = 868, - [1123] = 1123, - [1124] = 1123, - [1125] = 864, - [1126] = 1126, - [1127] = 944, - [1128] = 1128, - [1129] = 926, - [1130] = 927, - [1131] = 863, - [1132] = 928, - [1133] = 930, - [1134] = 931, - [1135] = 933, - [1136] = 1136, - [1137] = 1137, - [1138] = 868, - [1139] = 946, - [1140] = 935, - [1141] = 1123, - [1142] = 1142, - [1143] = 1143, - [1144] = 924, - [1145] = 24, - [1146] = 936, - [1147] = 866, - [1148] = 937, - [1149] = 938, - [1150] = 939, - [1151] = 940, - [1152] = 865, - [1153] = 939, - [1154] = 940, - [1155] = 944, - [1156] = 25, - [1157] = 946, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 848, + [1013] = 847, + [1014] = 846, + [1015] = 845, + [1016] = 988, + [1017] = 907, + [1018] = 908, + [1019] = 922, + [1020] = 929, + [1021] = 930, + [1022] = 931, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 932, + [1031] = 941, + [1032] = 950, + [1033] = 955, + [1034] = 974, + [1035] = 983, + [1036] = 844, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 990, + [1042] = 993, + [1043] = 997, + [1044] = 1002, + [1045] = 906, + [1046] = 1046, + [1047] = 1047, + [1048] = 1028, + [1049] = 1038, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, + [1063] = 1050, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1051, + [1068] = 1052, + [1069] = 994, + [1070] = 1055, + [1071] = 9, + [1072] = 12, + [1073] = 1056, + [1074] = 1058, + [1075] = 1059, + [1076] = 1060, + [1077] = 1061, + [1078] = 5, + [1079] = 1062, + [1080] = 7, + [1081] = 1081, + [1082] = 1007, + [1083] = 1064, + [1084] = 1065, + [1085] = 1066, + [1086] = 965, + [1087] = 909, + [1088] = 6, + [1089] = 942, + [1090] = 970, + [1091] = 971, + [1092] = 972, + [1093] = 975, + [1094] = 976, + [1095] = 962, + [1096] = 984, + [1097] = 949, + [1098] = 1000, + [1099] = 1001, + [1100] = 1003, + [1101] = 1004, + [1102] = 928, + [1103] = 1008, + [1104] = 948, + [1105] = 1009, + [1106] = 1010, + [1107] = 1011, + [1108] = 1023, + [1109] = 1024, + [1110] = 1025, + [1111] = 1026, + [1112] = 1027, + [1113] = 1029, + [1114] = 1037, + [1115] = 1039, + [1116] = 1040, + [1117] = 1046, + [1118] = 1047, + [1119] = 1053, + [1120] = 1054, + [1121] = 1057, + [1122] = 4, + [1123] = 947, + [1124] = 946, + [1125] = 11, + [1126] = 968, + [1127] = 16, + [1128] = 921, + [1129] = 920, + [1130] = 1130, + [1131] = 919, + [1132] = 1006, + [1133] = 1133, + [1134] = 846, + [1135] = 20, + [1136] = 850, + [1137] = 851, + [1138] = 988, + [1139] = 907, + [1140] = 852, + [1141] = 5, + [1142] = 863, + [1143] = 853, + [1144] = 1144, + [1145] = 854, + [1146] = 22, + [1147] = 855, + [1148] = 856, + [1149] = 864, + [1150] = 1133, + [1151] = 1151, + [1152] = 857, + [1153] = 1153, + [1154] = 858, + [1155] = 965, + [1156] = 1156, + [1157] = 859, [1158] = 1158, - [1159] = 947, - [1160] = 885, - [1161] = 950, - [1162] = 1162, + [1159] = 962, + [1160] = 860, + [1161] = 1161, + [1162] = 861, [1163] = 1163, [1164] = 1164, - [1165] = 1165, + [1165] = 1153, [1166] = 1166, - [1167] = 1167, - [1168] = 836, - [1169] = 889, - [1170] = 938, - [1171] = 31, - [1172] = 862, - [1173] = 861, - [1174] = 860, - [1175] = 1175, - [1176] = 35, - [1177] = 1143, - [1178] = 1162, + [1167] = 862, + [1168] = 908, + [1169] = 922, + [1170] = 863, + [1171] = 864, + [1172] = 42, + [1173] = 1158, + [1174] = 1037, + [1175] = 1039, + [1176] = 1040, + [1177] = 976, + [1178] = 44, [1179] = 1179, - [1180] = 17, - [1181] = 18, - [1182] = 36, - [1183] = 858, - [1184] = 1184, - [1185] = 1164, - [1186] = 42, - [1187] = 965, - [1188] = 966, - [1189] = 969, - [1190] = 970, - [1191] = 857, - [1192] = 973, - [1193] = 1193, - [1194] = 975, - [1195] = 976, - [1196] = 977, - [1197] = 947, + [1180] = 46, + [1181] = 1153, + [1182] = 862, + [1183] = 976, + [1184] = 1166, + [1185] = 990, + [1186] = 1186, + [1187] = 975, + [1188] = 1158, + [1189] = 1163, + [1190] = 972, + [1191] = 1191, + [1192] = 975, + [1193] = 993, + [1194] = 971, + [1195] = 1195, + [1196] = 1196, + [1197] = 970, [1198] = 1198, - [1199] = 979, - [1200] = 856, - [1201] = 937, - [1202] = 855, + [1199] = 865, + [1200] = 867, + [1201] = 1201, + [1202] = 997, [1203] = 1203, - [1204] = 1204, - [1205] = 871, - [1206] = 854, - [1207] = 950, - [1208] = 1208, - [1209] = 890, - [1210] = 7, - [1211] = 981, - [1212] = 23, - [1213] = 1213, - [1214] = 1214, - [1215] = 984, - [1216] = 873, - [1217] = 986, - [1218] = 32, - [1219] = 33, - [1220] = 14, - [1221] = 987, - [1222] = 1222, - [1223] = 43, - [1224] = 874, - [1225] = 988, - [1226] = 989, - [1227] = 875, - [1228] = 876, - [1229] = 936, - [1230] = 877, - [1231] = 878, - [1232] = 29, - [1233] = 994, - [1234] = 1234, - [1235] = 879, - [1236] = 1184, - [1237] = 13, - [1238] = 995, - [1239] = 20, - [1240] = 26, - [1241] = 996, - [1242] = 997, - [1243] = 34, - [1244] = 1143, - [1245] = 1162, - [1246] = 19, - [1247] = 1247, - [1248] = 1248, - [1249] = 40, + [1204] = 1002, + [1205] = 1205, + [1206] = 1206, + [1207] = 972, + [1208] = 906, + [1209] = 971, + [1210] = 861, + [1211] = 970, + [1212] = 39, + [1213] = 19, + [1214] = 860, + [1215] = 6, + [1216] = 929, + [1217] = 1198, + [1218] = 1218, + [1219] = 1219, + [1220] = 859, + [1221] = 1221, + [1222] = 858, + [1223] = 857, + [1224] = 873, + [1225] = 874, + [1226] = 875, + [1227] = 949, + [1228] = 1164, + [1229] = 876, + [1230] = 27, + [1231] = 856, + [1232] = 855, + [1233] = 865, + [1234] = 854, + [1235] = 1186, + [1236] = 867, + [1237] = 1144, + [1238] = 1198, + [1239] = 877, + [1240] = 878, + [1241] = 879, + [1242] = 880, + [1243] = 1164, + [1244] = 1244, + [1245] = 853, + [1246] = 843, + [1247] = 13, + [1248] = 29, + [1249] = 30, [1250] = 1250, - [1251] = 935, - [1252] = 1137, - [1253] = 1253, - [1254] = 1136, - [1255] = 1004, - [1256] = 1007, - [1257] = 10, - [1258] = 1008, - [1259] = 16, - [1260] = 1184, - [1261] = 1261, - [1262] = 1213, - [1263] = 1005, - [1264] = 1003, - [1265] = 5, - [1266] = 1261, - [1267] = 1000, - [1268] = 998, - [1269] = 933, - [1270] = 853, - [1271] = 924, - [1272] = 881, - [1273] = 852, - [1274] = 1179, - [1275] = 895, - [1276] = 882, - [1277] = 1277, - [1278] = 1214, - [1279] = 835, - [1280] = 1280, - [1281] = 923, - [1282] = 965, - [1283] = 883, - [1284] = 884, - [1285] = 1285, - [1286] = 966, + [1251] = 883, + [1252] = 930, + [1253] = 31, + [1254] = 948, + [1255] = 1153, + [1256] = 1158, + [1257] = 1153, + [1258] = 852, + [1259] = 1218, + [1260] = 1158, + [1261] = 947, + [1262] = 884, + [1263] = 946, + [1264] = 873, + [1265] = 874, + [1266] = 1196, + [1267] = 1267, + [1268] = 885, + [1269] = 886, + [1270] = 1196, + [1271] = 1271, + [1272] = 1046, + [1273] = 1196, + [1274] = 942, + [1275] = 1047, + [1276] = 876, + [1277] = 877, + [1278] = 878, + [1279] = 879, + [1280] = 32, + [1281] = 1028, + [1282] = 1196, + [1283] = 33, + [1284] = 888, + [1285] = 34, + [1286] = 851, [1287] = 1287, - [1288] = 919, - [1289] = 969, - [1290] = 1290, - [1291] = 849, - [1292] = 1292, - [1293] = 848, - [1294] = 993, - [1295] = 886, - [1296] = 931, - [1297] = 44, + [1288] = 35, + [1289] = 1289, + [1290] = 889, + [1291] = 880, + [1292] = 887, + [1293] = 1038, + [1294] = 1294, + [1295] = 1050, + [1296] = 942, + [1297] = 1244, [1298] = 888, - [1299] = 970, - [1300] = 847, - [1301] = 844, - [1302] = 973, - [1303] = 975, - [1304] = 41, - [1305] = 1213, - [1306] = 976, - [1307] = 908, - [1308] = 1247, - [1309] = 991, - [1310] = 1247, - [1311] = 923, - [1312] = 990, - [1313] = 892, - [1314] = 1123, - [1315] = 985, - [1316] = 1018, - [1317] = 930, - [1318] = 983, - [1319] = 928, - [1320] = 1143, - [1321] = 977, - [1322] = 1162, - [1323] = 1164, - [1324] = 1248, - [1325] = 1198, - [1326] = 896, - [1327] = 1162, - [1328] = 1167, - [1329] = 37, - [1330] = 927, - [1331] = 30, - [1332] = 894, - [1333] = 1143, - [1334] = 979, - [1335] = 898, - [1336] = 1248, + [1299] = 889, + [1300] = 890, + [1301] = 843, + [1302] = 1051, + [1303] = 1052, + [1304] = 921, + [1305] = 891, + [1306] = 1196, + [1307] = 920, + [1308] = 890, + [1309] = 1161, + [1310] = 1198, + [1311] = 1250, + [1312] = 883, + [1313] = 36, + [1314] = 37, + [1315] = 1000, + [1316] = 850, + [1317] = 1001, + [1318] = 1318, + [1319] = 10, + [1320] = 1000, + [1321] = 1001, + [1322] = 884, + [1323] = 1003, + [1324] = 1004, + [1325] = 1004, + [1326] = 885, + [1327] = 1327, + [1328] = 893, + [1329] = 894, + [1330] = 882, + [1331] = 17, + [1332] = 886, + [1333] = 891, + [1334] = 11, + [1335] = 21, + [1336] = 844, [1337] = 897, - [1338] = 909, - [1339] = 1213, - [1340] = 1208, - [1341] = 1248, - [1342] = 899, - [1343] = 981, - [1344] = 926, - [1345] = 961, - [1346] = 1123, - [1347] = 900, - [1348] = 11, - [1349] = 843, - [1350] = 842, - [1351] = 960, - [1352] = 958, - [1353] = 901, - [1354] = 22, - [1355] = 21, - [1356] = 841, - [1357] = 984, - [1358] = 986, - [1359] = 987, - [1360] = 1213, + [1338] = 40, + [1339] = 1161, + [1340] = 898, + [1341] = 1341, + [1342] = 1196, + [1343] = 1343, + [1344] = 928, + [1345] = 899, + [1346] = 919, + [1347] = 928, + [1348] = 1008, + [1349] = 1186, + [1350] = 983, + [1351] = 1053, + [1352] = 1054, + [1353] = 1198, + [1354] = 900, + [1355] = 918, + [1356] = 41, + [1357] = 1008, + [1358] = 1055, + [1359] = 1198, + [1360] = 1186, [1361] = 1361, - [1362] = 955, - [1363] = 839, - [1364] = 1364, - [1365] = 9, - [1366] = 988, - [1367] = 954, - [1368] = 953, - [1369] = 952, - [1370] = 951, - [1371] = 949, - [1372] = 989, - [1373] = 4, - [1374] = 1248, - [1375] = 925, - [1376] = 919, - [1377] = 1248, - [1378] = 902, - [1379] = 903, - [1380] = 949, - [1381] = 904, - [1382] = 905, - [1383] = 951, - [1384] = 1248, - [1385] = 906, - [1386] = 27, - [1387] = 1184, - [1388] = 28, - [1389] = 1005, - [1390] = 952, - [1391] = 1123, - [1392] = 994, - [1393] = 995, - [1394] = 996, - [1395] = 997, - [1396] = 1213, - [1397] = 907, - [1398] = 953, - [1399] = 39, - [1400] = 38, - [1401] = 1401, - [1402] = 1164, - [1403] = 1253, - [1404] = 1213, - [1405] = 1004, - [1406] = 980, - [1407] = 954, - [1408] = 837, - [1409] = 972, - [1410] = 964, - [1411] = 962, - [1412] = 1001, - [1413] = 959, - [1414] = 1248, - [1415] = 1007, - [1416] = 921, - [1417] = 1008, - [1418] = 1184, - [1419] = 956, - [1420] = 934, - [1421] = 921, - [1422] = 1001, - [1423] = 837, - [1424] = 839, - [1425] = 955, - [1426] = 1361, - [1427] = 841, - [1428] = 842, - [1429] = 843, - [1430] = 844, - [1431] = 847, + [1362] = 1009, + [1363] = 1363, + [1364] = 28, + [1365] = 1056, + [1366] = 917, + [1367] = 974, + [1368] = 1009, + [1369] = 1203, + [1370] = 1010, + [1371] = 1010, + [1372] = 901, + [1373] = 902, + [1374] = 1011, + [1375] = 1375, + [1376] = 1196, + [1377] = 887, + [1378] = 955, + [1379] = 1161, + [1380] = 1011, + [1381] = 903, + [1382] = 43, + [1383] = 904, + [1384] = 866, + [1385] = 909, + [1386] = 14, + [1387] = 896, + [1388] = 848, + [1389] = 848, + [1390] = 15, + [1391] = 25, + [1392] = 26, + [1393] = 847, + [1394] = 846, + [1395] = 1203, + [1396] = 868, + [1397] = 847, + [1398] = 1267, + [1399] = 1186, + [1400] = 1203, + [1401] = 845, + [1402] = 988, + [1403] = 907, + [1404] = 950, + [1405] = 1164, + [1406] = 908, + [1407] = 922, + [1408] = 18, + [1409] = 870, + [1410] = 1057, + [1411] = 1203, + [1412] = 23, + [1413] = 869, + [1414] = 1058, + [1415] = 1164, + [1416] = 868, + [1417] = 1318, + [1418] = 1059, + [1419] = 875, + [1420] = 869, + [1421] = 866, + [1422] = 1161, + [1423] = 1375, + [1424] = 38, + [1425] = 45, + [1426] = 917, + [1427] = 1186, + [1428] = 918, + [1429] = 870, + [1430] = 919, + [1431] = 896, [1432] = 1003, - [1433] = 848, - [1434] = 1292, - [1435] = 849, - [1436] = 1287, - [1437] = 1285, - [1438] = 835, - [1439] = 852, - [1440] = 925, - [1441] = 958, - [1442] = 853, - [1443] = 854, - [1444] = 1204, - [1445] = 1203, - [1446] = 1000, - [1447] = 998, - [1448] = 855, - [1449] = 1247, - [1450] = 909, - [1451] = 856, - [1452] = 897, - [1453] = 934, - [1454] = 1193, - [1455] = 896, - [1456] = 956, - [1457] = 857, - [1458] = 1280, - [1459] = 895, - [1460] = 858, - [1461] = 860, - [1462] = 861, - [1463] = 862, - [1464] = 863, - [1465] = 1128, - [1466] = 1126, - [1467] = 1364, - [1468] = 1123, - [1469] = 864, - [1470] = 865, - [1471] = 866, - [1472] = 868, - [1473] = 1164, - [1474] = 993, - [1475] = 1165, - [1476] = 1166, - [1477] = 836, - [1478] = 871, - [1479] = 873, - [1480] = 874, - [1481] = 875, - [1482] = 991, - [1483] = 961, - [1484] = 959, - [1485] = 876, - [1486] = 962, - [1487] = 877, - [1488] = 15, - [1489] = 878, - [1490] = 990, - [1491] = 1234, - [1492] = 960, - [1493] = 879, - [1494] = 910, - [1495] = 910, - [1496] = 881, - [1497] = 1222, - [1498] = 882, - [1499] = 1277, - [1500] = 883, - [1501] = 884, - [1502] = 885, - [1503] = 886, - [1504] = 888, - [1505] = 892, - [1506] = 964, - [1507] = 972, - [1508] = 985, - [1509] = 894, - [1510] = 282, - [1511] = 898, - [1512] = 281, - [1513] = 1247, - [1514] = 899, - [1515] = 900, - [1516] = 901, - [1517] = 12, - [1518] = 980, - [1519] = 1213, - [1520] = 902, - [1521] = 903, - [1522] = 904, - [1523] = 905, - [1524] = 906, - [1525] = 907, - [1526] = 1401, - [1527] = 1158, - [1528] = 1163, - [1529] = 889, - [1530] = 1175, - [1531] = 983, - [1532] = 890, - [1533] = 1018, - [1534] = 908, - [1535] = 20, - [1536] = 28, - [1537] = 10, - [1538] = 39, - [1539] = 38, - [1540] = 44, - [1541] = 36, - [1542] = 18, - [1543] = 17, - [1544] = 27, - [1545] = 43, - [1546] = 32, - [1547] = 34, - [1548] = 33, - [1549] = 41, - [1550] = 25, - [1551] = 14, - [1552] = 40, - [1553] = 26, - [1554] = 15, - [1555] = 1555, - [1556] = 37, + [1433] = 1066, + [1434] = 1065, + [1435] = 1064, + [1436] = 1007, + [1437] = 12, + [1438] = 1062, + [1439] = 284, + [1440] = 1061, + [1441] = 283, + [1442] = 1060, + [1443] = 1059, + [1444] = 1221, + [1445] = 1058, + [1446] = 1446, + [1447] = 1447, + [1448] = 920, + [1449] = 1057, + [1450] = 1056, + [1451] = 921, + [1452] = 1363, + [1453] = 1055, + [1454] = 909, + [1455] = 1060, + [1456] = 1054, + [1457] = 1053, + [1458] = 1061, + [1459] = 1052, + [1460] = 1051, + [1461] = 941, + [1462] = 904, + [1463] = 1050, + [1464] = 1294, + [1465] = 1038, + [1466] = 1327, + [1467] = 1201, + [1468] = 24, + [1469] = 893, + [1470] = 929, + [1471] = 930, + [1472] = 931, + [1473] = 1473, + [1474] = 1289, + [1475] = 894, + [1476] = 1287, + [1477] = 903, + [1478] = 1028, + [1479] = 1047, + [1480] = 1046, + [1481] = 906, + [1482] = 1206, + [1483] = 1205, + [1484] = 1002, + [1485] = 997, + [1486] = 1062, + [1487] = 1023, + [1488] = 1007, + [1489] = 16, + [1490] = 902, + [1491] = 1198, + [1492] = 4, + [1493] = 901, + [1494] = 932, + [1495] = 1195, + [1496] = 993, + [1497] = 1186, + [1498] = 931, + [1499] = 990, + [1500] = 1361, + [1501] = 1473, + [1502] = 1040, + [1503] = 1024, + [1504] = 882, + [1505] = 1039, + [1506] = 1025, + [1507] = 1026, + [1508] = 1064, + [1509] = 1065, + [1510] = 1027, + [1511] = 1029, + [1512] = 1037, + [1513] = 844, + [1514] = 1341, + [1515] = 1343, + [1516] = 983, + [1517] = 932, + [1518] = 946, + [1519] = 974, + [1520] = 1066, + [1521] = 955, + [1522] = 947, + [1523] = 950, + [1524] = 845, + [1525] = 948, + [1526] = 900, + [1527] = 1198, + [1528] = 949, + [1529] = 1029, + [1530] = 1151, + [1531] = 965, + [1532] = 1156, + [1533] = 899, + [1534] = 962, + [1535] = 8, + [1536] = 1027, + [1537] = 1446, + [1538] = 898, + [1539] = 1026, + [1540] = 1025, + [1541] = 897, + [1542] = 1023, + [1543] = 1179, + [1544] = 1024, + [1545] = 1447, + [1546] = 941, + [1547] = 40, + [1548] = 28, + [1549] = 30, + [1550] = 29, + [1551] = 42, + [1552] = 13, + [1553] = 44, + [1554] = 17, + [1555] = 39, + [1556] = 1556, [1557] = 35, - [1558] = 19, - [1559] = 29, - [1560] = 21, - [1561] = 22, - [1562] = 42, - [1563] = 24, - [1564] = 12, - [1565] = 31, - [1566] = 13, - [1567] = 16, - [1568] = 23, - [1569] = 30, - [1570] = 1570, - [1571] = 15, - [1572] = 1572, - [1573] = 1573, - [1574] = 21, - [1575] = 22, - [1576] = 24, - [1577] = 43, - [1578] = 20, - [1579] = 1579, - [1580] = 282, - [1581] = 29, - [1582] = 17, - [1583] = 1572, - [1584] = 1584, - [1585] = 30, - [1586] = 18, - [1587] = 36, - [1588] = 37, - [1589] = 281, - [1590] = 1579, - [1591] = 1572, - [1592] = 35, - [1593] = 1593, - [1594] = 1594, - [1595] = 1584, - [1596] = 31, - [1597] = 1579, - [1598] = 1579, - [1599] = 32, - [1600] = 33, - [1601] = 14, - [1602] = 13, - [1603] = 1572, - [1604] = 41, - [1605] = 1250, - [1606] = 44, - [1607] = 28, - [1608] = 1579, - [1609] = 25, - [1610] = 16, - [1611] = 27, - [1612] = 42, - [1613] = 38, - [1614] = 19, - [1615] = 40, - [1616] = 1572, - [1617] = 26, - [1618] = 39, - [1619] = 1619, - [1620] = 1620, - [1621] = 1621, - [1622] = 1622, - [1623] = 1623, - [1624] = 1624, - [1625] = 1625, - [1626] = 1626, - [1627] = 1626, - [1628] = 1628, - [1629] = 1629, - [1630] = 1630, - [1631] = 1628, - [1632] = 1626, + [1558] = 10, + [1559] = 27, + [1560] = 1560, + [1561] = 31, + [1562] = 45, + [1563] = 38, + [1564] = 20, + [1565] = 23, + [1566] = 12, + [1567] = 21, + [1568] = 32, + [1569] = 18, + [1570] = 24, + [1571] = 26, + [1572] = 22, + [1573] = 33, + [1574] = 15, + [1575] = 46, + [1576] = 43, + [1577] = 36, + [1578] = 37, + [1579] = 14, + [1580] = 19, + [1581] = 25, + [1582] = 16, + [1583] = 34, + [1584] = 41, + [1585] = 20, + [1586] = 1586, + [1587] = 14, + [1588] = 25, + [1589] = 1191, + [1590] = 15, + [1591] = 1591, + [1592] = 1592, + [1593] = 26, + [1594] = 283, + [1595] = 35, + [1596] = 18, + [1597] = 1597, + [1598] = 1591, + [1599] = 19, + [1600] = 39, + [1601] = 1592, + [1602] = 23, + [1603] = 43, + [1604] = 46, + [1605] = 31, + [1606] = 1597, + [1607] = 44, + [1608] = 284, + [1609] = 38, + [1610] = 1610, + [1611] = 42, + [1612] = 1591, + [1613] = 1597, + [1614] = 45, + [1615] = 1591, + [1616] = 41, + [1617] = 40, + [1618] = 1591, + [1619] = 37, + [1620] = 1597, + [1621] = 36, + [1622] = 34, + [1623] = 33, + [1624] = 32, + [1625] = 22, + [1626] = 30, + [1627] = 29, + [1628] = 13, + [1629] = 21, + [1630] = 27, + [1631] = 1631, + [1632] = 1597, [1633] = 1633, - [1634] = 1630, - [1635] = 1626, - [1636] = 1623, + [1634] = 1634, + [1635] = 1635, + [1636] = 1636, [1637] = 1637, [1638] = 1638, [1639] = 1639, - [1640] = 1630, - [1641] = 1628, - [1642] = 1630, - [1643] = 1623, - [1644] = 1628, - [1645] = 1645, + [1640] = 1640, + [1641] = 1641, + [1642] = 1642, + [1643] = 1637, + [1644] = 1644, + [1645] = 1637, [1646] = 1646, [1647] = 1647, [1648] = 1648, - [1649] = 1649, - [1650] = 1650, - [1651] = 1651, - [1652] = 1652, + [1649] = 1646, + [1650] = 1642, + [1651] = 1648, + [1652] = 1648, [1653] = 1653, - [1654] = 1628, - [1655] = 1626, - [1656] = 1639, - [1657] = 1623, - [1658] = 1658, - [1659] = 1659, - [1660] = 1630, - [1661] = 1623, + [1654] = 1654, + [1655] = 1655, + [1656] = 1648, + [1657] = 1657, + [1658] = 1642, + [1659] = 1642, + [1660] = 1660, + [1661] = 1661, [1662] = 1646, - [1663] = 1663, + [1663] = 1637, [1664] = 1664, [1665] = 1665, [1666] = 1666, - [1667] = 1663, - [1668] = 1665, - [1669] = 1666, - [1670] = 1663, - [1671] = 1665, - [1672] = 1666, - [1673] = 1664, - [1674] = 1666, - [1675] = 1664, - [1676] = 1665, - [1677] = 1666, - [1678] = 1664, + [1667] = 1642, + [1668] = 1668, + [1669] = 1641, + [1670] = 1670, + [1671] = 1646, + [1672] = 1637, + [1673] = 1648, + [1674] = 1657, + [1675] = 1675, + [1676] = 1646, + [1677] = 1677, + [1678] = 1678, [1679] = 1679, - [1680] = 1665, - [1681] = 1664, - [1682] = 1663, - [1683] = 1663, - [1684] = 1684, - [1685] = 1685, - [1686] = 1686, - [1687] = 1687, - [1688] = 1688, - [1689] = 1687, - [1690] = 1684, - [1691] = 1691, - [1692] = 1692, - [1693] = 1685, - [1694] = 1694, - [1695] = 1695, - [1696] = 1696, - [1697] = 1697, + [1680] = 1680, + [1681] = 1677, + [1682] = 1678, + [1683] = 1683, + [1684] = 1683, + [1685] = 1677, + [1686] = 1679, + [1687] = 1683, + [1688] = 1679, + [1689] = 1679, + [1690] = 1679, + [1691] = 1683, + [1692] = 1677, + [1693] = 1678, + [1694] = 1678, + [1695] = 1677, + [1696] = 1678, + [1697] = 1683, [1698] = 1698, - [1699] = 1685, - [1700] = 1684, - [1701] = 1701, + [1699] = 1699, + [1700] = 1699, + [1701] = 1698, [1702] = 1702, - [1703] = 1685, + [1703] = 1703, [1704] = 1704, - [1705] = 1684, + [1705] = 1698, [1706] = 1706, - [1707] = 1707, + [1707] = 1706, [1708] = 1708, - [1709] = 1685, - [1710] = 1687, + [1709] = 1709, + [1710] = 1710, [1711] = 1711, [1712] = 1712, - [1713] = 1713, - [1714] = 1687, - [1715] = 1715, - [1716] = 1684, + [1713] = 1699, + [1714] = 1698, + [1715] = 1698, + [1716] = 1706, [1717] = 1717, - [1718] = 1687, + [1718] = 1718, [1719] = 1719, [1720] = 1720, [1721] = 1721, [1722] = 1722, [1723] = 1723, - [1724] = 1723, - [1725] = 1722, - [1726] = 1720, + [1724] = 1699, + [1725] = 1699, + [1726] = 1706, [1727] = 1727, [1728] = 1728, [1729] = 1729, [1730] = 1730, - [1731] = 1731, + [1731] = 1706, [1732] = 1732, - [1733] = 1719, + [1733] = 1733, [1734] = 1734, - [1735] = 1735, - [1736] = 1730, + [1735] = 1734, + [1736] = 1736, [1737] = 1737, - [1738] = 1720, - [1739] = 1731, - [1740] = 1721, - [1741] = 1730, - [1742] = 1720, - [1743] = 1737, - [1744] = 1722, - [1745] = 1723, - [1746] = 1735, - [1747] = 1727, - [1748] = 1729, - [1749] = 1729, - [1750] = 1728, - [1751] = 1728, - [1752] = 1727, - [1753] = 1731, - [1754] = 1729, - [1755] = 1735, + [1738] = 1738, + [1739] = 1739, + [1740] = 1739, + [1741] = 1738, + [1742] = 1733, + [1743] = 1743, + [1744] = 1743, + [1745] = 1745, + [1746] = 1739, + [1747] = 1747, + [1748] = 1745, + [1749] = 1749, + [1750] = 1745, + [1751] = 1751, + [1752] = 1733, + [1753] = 1749, + [1754] = 1754, + [1755] = 1755, [1756] = 1737, - [1757] = 1735, - [1758] = 1721, - [1759] = 1759, - [1760] = 1731, - [1761] = 1730, - [1762] = 1735, - [1763] = 1737, - [1764] = 1723, - [1765] = 1722, - [1766] = 1734, - [1767] = 1719, - [1768] = 1729, - [1769] = 1734, - [1770] = 1719, - [1771] = 1732, - [1772] = 1737, - [1773] = 1728, - [1774] = 1728, - [1775] = 1721, - [1776] = 1732, - [1777] = 1727, - [1778] = 1727, - [1779] = 1730, - [1780] = 1719, - [1781] = 1734, - [1782] = 1721, - [1783] = 1734, - [1784] = 1731, - [1785] = 1720, - [1786] = 1722, - [1787] = 1732, - [1788] = 1723, - [1789] = 1732, - [1790] = 31, - [1791] = 29, - [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 24, - [1796] = 20, - [1797] = 15, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1803, + [1757] = 1755, + [1758] = 1747, + [1759] = 1733, + [1760] = 1734, + [1761] = 1736, + [1762] = 1749, + [1763] = 1747, + [1764] = 1739, + [1765] = 1733, + [1766] = 1738, + [1767] = 1767, + [1768] = 1737, + [1769] = 1736, + [1770] = 1767, + [1771] = 1737, + [1772] = 1754, + [1773] = 1751, + [1774] = 1745, + [1775] = 1743, + [1776] = 1767, + [1777] = 1754, + [1778] = 1767, + [1779] = 1755, + [1780] = 1751, + [1781] = 1754, + [1782] = 1734, + [1783] = 1747, + [1784] = 1736, + [1785] = 1751, + [1786] = 1749, + [1787] = 1743, + [1788] = 1743, + [1789] = 1747, + [1790] = 1734, + [1791] = 1791, + [1792] = 1736, + [1793] = 1738, + [1794] = 1749, + [1795] = 1755, + [1796] = 1754, + [1797] = 1745, + [1798] = 1755, + [1799] = 1737, + [1800] = 1738, + [1801] = 1751, + [1802] = 1739, + [1803] = 1767, [1804] = 1804, - [1805] = 1805, - [1806] = 1806, - [1807] = 1807, + [1805] = 15, + [1806] = 20, + [1807] = 21, [1808] = 1808, - [1809] = 1808, - [1810] = 1806, - [1811] = 1805, - [1812] = 1807, - [1813] = 1808, - [1814] = 1805, - [1815] = 1808, - [1816] = 1805, - [1817] = 1806, - [1818] = 1807, - [1819] = 1806, - [1820] = 1807, - [1821] = 1806, - [1822] = 1808, + [1809] = 1809, + [1810] = 1810, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 44, + [1815] = 1815, + [1816] = 1816, + [1817] = 1817, + [1818] = 22, + [1819] = 1819, + [1820] = 1819, + [1821] = 1819, + [1822] = 1822, [1823] = 1823, - [1824] = 1807, - [1825] = 1805, - [1826] = 1826, - [1827] = 1827, - [1828] = 1826, - [1829] = 1829, - [1830] = 1830, - [1831] = 1831, - [1832] = 1826, - [1833] = 1833, - [1834] = 1827, - [1835] = 1826, - [1836] = 1833, - [1837] = 1837, - [1838] = 1838, - [1839] = 1839, + [1824] = 1823, + [1825] = 1825, + [1826] = 1822, + [1827] = 1822, + [1828] = 1825, + [1829] = 1825, + [1830] = 1823, + [1831] = 1823, + [1832] = 1825, + [1833] = 1822, + [1834] = 1819, + [1835] = 1835, + [1836] = 1819, + [1837] = 1823, + [1838] = 1825, + [1839] = 1822, [1840] = 1840, [1841] = 1841, [1842] = 1842, - [1843] = 1827, + [1843] = 1841, [1844] = 1844, - [1845] = 1833, - [1846] = 1833, - [1847] = 1844, - [1848] = 1827, + [1845] = 1845, + [1846] = 1846, + [1847] = 1846, + [1848] = 1844, [1849] = 1844, - [1850] = 1844, - [1851] = 1844, - [1852] = 1827, - [1853] = 1833, - [1854] = 1826, - [1855] = 1855, - [1856] = 1856, + [1850] = 1842, + [1851] = 1846, + [1852] = 1846, + [1853] = 1853, + [1854] = 1854, + [1855] = 1841, + [1856] = 1841, [1857] = 1857, - [1858] = 1858, - [1859] = 1855, + [1858] = 1844, + [1859] = 1859, [1860] = 1860, - [1861] = 1856, - [1862] = 1855, - [1863] = 1860, - [1864] = 1858, - [1865] = 1858, - [1866] = 1858, - [1867] = 1860, - [1868] = 1855, - [1869] = 1858, - [1870] = 1856, - [1871] = 1860, - [1872] = 1858, + [1861] = 1842, + [1862] = 1862, + [1863] = 1842, + [1864] = 1844, + [1865] = 1841, + [1866] = 1842, + [1867] = 1846, + [1868] = 1868, + [1869] = 1869, + [1870] = 1870, + [1871] = 1869, + [1872] = 1869, [1873] = 1873, - [1874] = 1855, - [1875] = 1860, - [1876] = 1855, + [1874] = 1873, + [1875] = 1875, + [1876] = 1873, [1877] = 1877, - [1878] = 1856, - [1879] = 1879, - [1880] = 1858, - [1881] = 1856, - [1882] = 1856, - [1883] = 1860, - [1884] = 1856, - [1885] = 1855, - [1886] = 1860, - [1887] = 1887, - [1888] = 1888, - [1889] = 1889, - [1890] = 1889, - [1891] = 1889, - [1892] = 1892, - [1893] = 1893, - [1894] = 1894, - [1895] = 1895, - [1896] = 1896, - [1897] = 1895, + [1878] = 1875, + [1879] = 1873, + [1880] = 1869, + [1881] = 1875, + [1882] = 1869, + [1883] = 1875, + [1884] = 1869, + [1885] = 1885, + [1886] = 1869, + [1887] = 1873, + [1888] = 1873, + [1889] = 1877, + [1890] = 1875, + [1891] = 1877, + [1892] = 1875, + [1893] = 1877, + [1894] = 1875, + [1895] = 1877, + [1896] = 1877, + [1897] = 1873, [1898] = 1898, [1899] = 1899, - [1900] = 1900, + [1900] = 1877, [1901] = 1901, [1902] = 1902, [1903] = 1903, [1904] = 1904, [1905] = 1905, - [1906] = 1900, - [1907] = 1900, - [1908] = 1895, - [1909] = 1895, + [1906] = 1906, + [1907] = 1907, + [1908] = 1908, + [1909] = 1909, [1910] = 1910, - [1911] = 1895, - [1912] = 1899, - [1913] = 1899, + [1911] = 1911, + [1912] = 1912, + [1913] = 1912, [1914] = 1914, - [1915] = 1889, - [1916] = 1900, - [1917] = 1917, - [1918] = 1899, - [1919] = 1899, - [1920] = 1920, + [1915] = 1910, + [1916] = 1910, + [1917] = 1901, + [1918] = 1912, + [1919] = 1919, + [1920] = 1910, [1921] = 1921, - [1922] = 1840, - [1923] = 1923, - [1924] = 1900, - [1925] = 1889, + [1922] = 1922, + [1923] = 1914, + [1924] = 1914, + [1925] = 1925, [1926] = 1926, - [1927] = 1927, - [1928] = 1928, - [1929] = 1929, + [1927] = 1914, + [1928] = 1901, + [1929] = 1914, [1930] = 1930, - [1931] = 1931, + [1931] = 1845, [1932] = 1932, - [1933] = 1933, + [1933] = 1910, [1934] = 1934, [1935] = 1935, - [1936] = 1936, - [1937] = 1937, + [1936] = 1901, + [1937] = 1912, [1938] = 1938, - [1939] = 1939, - [1940] = 1939, - [1941] = 1936, + [1939] = 1901, + [1940] = 1912, + [1941] = 1941, [1942] = 1942, [1943] = 1943, - [1944] = 1938, - [1945] = 1942, - [1946] = 1939, + [1944] = 1944, + [1945] = 1945, + [1946] = 1946, [1947] = 1947, [1948] = 1948, - [1949] = 1942, + [1949] = 1949, [1950] = 1950, [1951] = 1951, [1952] = 1952, [1953] = 1953, - [1954] = 1937, + [1954] = 1950, [1955] = 1955, - [1956] = 1938, - [1957] = 1948, - [1958] = 1936, - [1959] = 4, - [1960] = 1950, - [1961] = 1955, - [1962] = 1962, - [1963] = 1952, - [1964] = 1943, - [1965] = 1965, - [1966] = 1952, - [1967] = 9, - [1968] = 1962, - [1969] = 1969, - [1970] = 1939, - [1971] = 1942, - [1972] = 1969, + [1956] = 1956, + [1957] = 1953, + [1958] = 1958, + [1959] = 1959, + [1960] = 1960, + [1961] = 1960, + [1962] = 1956, + [1963] = 1955, + [1964] = 1950, + [1965] = 1958, + [1966] = 1951, + [1967] = 1955, + [1968] = 1960, + [1969] = 1956, + [1970] = 1953, + [1971] = 1971, + [1972] = 1972, [1973] = 1973, - [1974] = 1962, - [1975] = 1947, - [1976] = 1950, - [1977] = 1937, - [1978] = 1955, - [1979] = 1938, - [1980] = 1937, - [1981] = 1981, - [1982] = 1938, - [1983] = 1969, - [1984] = 1947, - [1985] = 1943, - [1986] = 1948, - [1987] = 1947, - [1988] = 1948, - [1989] = 1952, - [1990] = 1955, - [1991] = 1955, - [1992] = 1992, - [1993] = 1937, - [1994] = 1943, - [1995] = 1950, - [1996] = 1969, - [1997] = 1962, - [1998] = 1969, - [1999] = 1936, - [2000] = 1950, - [2001] = 1952, - [2002] = 1943, - [2003] = 1947, - [2004] = 1948, - [2005] = 1962, - [2006] = 1936, - [2007] = 1939, - [2008] = 1942, - [2009] = 2009, - [2010] = 2010, - [2011] = 2011, - [2012] = 2012, + [1974] = 1959, + [1975] = 1951, + [1976] = 1976, + [1977] = 1971, + [1978] = 1978, + [1979] = 1953, + [1980] = 1960, + [1981] = 1960, + [1982] = 1976, + [1983] = 1983, + [1984] = 1953, + [1985] = 1972, + [1986] = 1955, + [1987] = 1987, + [1988] = 1959, + [1989] = 1987, + [1990] = 1983, + [1991] = 1958, + [1992] = 1959, + [1993] = 1983, + [1994] = 1959, + [1995] = 1972, + [1996] = 1987, + [1997] = 1997, + [1998] = 1987, + [1999] = 1956, + [2000] = 1958, + [2001] = 1951, + [2002] = 1987, + [2003] = 1983, + [2004] = 1958, + [2005] = 8, + [2006] = 1950, + [2007] = 4, + [2008] = 1976, + [2009] = 1951, + [2010] = 1955, + [2011] = 1971, + [2012] = 1950, [2013] = 2013, - [2014] = 2014, - [2015] = 2015, + [2014] = 1971, + [2015] = 1972, [2016] = 2016, - [2017] = 2013, - [2018] = 2016, - [2019] = 2019, - [2020] = 2020, - [2021] = 2021, - [2022] = 2022, - [2023] = 2022, - [2024] = 2011, + [2017] = 1976, + [2018] = 1956, + [2019] = 1972, + [2020] = 1971, + [2021] = 1976, + [2022] = 1983, + [2023] = 2023, + [2024] = 2024, [2025] = 2025, [2026] = 2026, [2027] = 2027, [2028] = 2028, - [2029] = 2028, - [2030] = 2027, + [2029] = 2029, + [2030] = 2030, [2031] = 2031, - [2032] = 2013, + [2032] = 12, [2033] = 2033, - [2034] = 2011, - [2035] = 2011, - [2036] = 2020, - [2037] = 2011, - [2038] = 2026, - [2039] = 2015, - [2040] = 2010, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, + [2040] = 2035, [2041] = 2041, [2042] = 2042, - [2043] = 2026, - [2044] = 2019, - [2045] = 2045, - [2046] = 2046, - [2047] = 2028, - [2048] = 2048, - [2049] = 2022, - [2050] = 2020, - [2051] = 2033, - [2052] = 2022, - [2053] = 2033, - [2054] = 2054, - [2055] = 2025, - [2056] = 2033, - [2057] = 2022, - [2058] = 2048, - [2059] = 2014, - [2060] = 2013, - [2061] = 2031, - [2062] = 2033, - [2063] = 2010, + [2043] = 2043, + [2044] = 2038, + [2045] = 2035, + [2046] = 2024, + [2047] = 2047, + [2048] = 2036, + [2049] = 2037, + [2050] = 2047, + [2051] = 2024, + [2052] = 2052, + [2053] = 2025, + [2054] = 2024, + [2055] = 2037, + [2056] = 2039, + [2057] = 2035, + [2058] = 2041, + [2059] = 2052, + [2060] = 2047, + [2061] = 2052, + [2062] = 2062, + [2063] = 2062, [2064] = 2064, [2065] = 2065, - [2066] = 2010, - [2067] = 2054, - [2068] = 2031, - [2069] = 2011, - [2070] = 2070, - [2071] = 2020, - [2072] = 2072, - [2073] = 2031, - [2074] = 2027, - [2075] = 2014, - [2076] = 2013, - [2077] = 2077, - [2078] = 2015, - [2079] = 2079, - [2080] = 2016, - [2081] = 2048, - [2082] = 2014, - [2083] = 2026, - [2084] = 2016, - [2085] = 12, - [2086] = 2011, - [2087] = 2026, - [2088] = 2027, - [2089] = 2019, - [2090] = 2031, - [2091] = 2019, - [2092] = 2092, - [2093] = 2016, - [2094] = 2048, - [2095] = 2020, - [2096] = 2010, - [2097] = 2048, - [2098] = 2025, - [2099] = 2045, - [2100] = 2028, - [2101] = 2025, - [2102] = 2054, - [2103] = 2015, - [2104] = 2054, - [2105] = 2011, - [2106] = 2014, - [2107] = 2015, - [2108] = 2108, - [2109] = 2045, + [2066] = 2026, + [2067] = 2023, + [2068] = 2038, + [2069] = 2069, + [2070] = 2037, + [2071] = 2071, + [2072] = 2041, + [2073] = 2025, + [2074] = 2036, + [2075] = 2039, + [2076] = 2026, + [2077] = 2064, + [2078] = 2043, + [2079] = 2037, + [2080] = 2043, + [2081] = 2036, + [2082] = 2065, + [2083] = 2042, + [2084] = 2084, + [2085] = 2035, + [2086] = 2035, + [2087] = 2052, + [2088] = 2041, + [2089] = 2023, + [2090] = 2065, + [2091] = 2041, + [2092] = 2064, + [2093] = 2062, + [2094] = 2084, + [2095] = 2025, + [2096] = 24, + [2097] = 2036, + [2098] = 2064, + [2099] = 2099, + [2100] = 2023, + [2101] = 2024, + [2102] = 2038, + [2103] = 2039, + [2104] = 2047, + [2105] = 2035, + [2106] = 2084, + [2107] = 2042, + [2108] = 2043, + [2109] = 2109, [2110] = 2110, - [2111] = 2111, - [2112] = 2112, - [2113] = 2028, - [2114] = 2027, - [2115] = 2019, - [2116] = 2025, - [2117] = 2045, - [2118] = 2045, - [2119] = 2054, - [2120] = 2120, - [2121] = 2121, + [2111] = 2043, + [2112] = 2042, + [2113] = 16, + [2114] = 2065, + [2115] = 2084, + [2116] = 2026, + [2117] = 2064, + [2118] = 2026, + [2119] = 2062, + [2120] = 2023, + [2121] = 2035, [2122] = 2122, [2123] = 2123, [2124] = 2124, - [2125] = 2125, - [2126] = 2126, - [2127] = 2127, - [2128] = 2128, - [2129] = 2121, - [2130] = 2122, - [2131] = 2131, - [2132] = 2131, - [2133] = 2133, + [2125] = 2038, + [2126] = 2042, + [2127] = 2052, + [2128] = 2047, + [2129] = 2129, + [2130] = 2065, + [2131] = 2084, + [2132] = 2062, + [2133] = 2039, [2134] = 2134, - [2135] = 2135, + [2135] = 2025, [2136] = 2136, - [2137] = 4, + [2137] = 2137, [2138] = 2136, [2139] = 2139, [2140] = 2140, [2141] = 2141, [2142] = 2142, - [2143] = 2121, - [2144] = 2121, - [2145] = 2127, + [2143] = 2142, + [2144] = 2144, + [2145] = 2145, [2146] = 2146, [2147] = 2147, - [2148] = 35, - [2149] = 2136, - [2150] = 2120, - [2151] = 2142, - [2152] = 2121, - [2153] = 2127, - [2154] = 2131, - [2155] = 2155, + [2148] = 2141, + [2149] = 2149, + [2150] = 2141, + [2151] = 2136, + [2152] = 2152, + [2153] = 2153, + [2154] = 2140, + [2155] = 2145, [2156] = 2156, - [2157] = 2134, + [2157] = 2157, [2158] = 2158, - [2159] = 2156, - [2160] = 2120, + [2159] = 2140, + [2160] = 2160, [2161] = 2161, - [2162] = 2127, - [2163] = 2131, - [2164] = 2146, - [2165] = 2142, - [2166] = 2166, - [2167] = 26, - [2168] = 2146, - [2169] = 2142, - [2170] = 2122, - [2171] = 2171, - [2172] = 2172, - [2173] = 2134, - [2174] = 2122, - [2175] = 2133, - [2176] = 2146, - [2177] = 2142, - [2178] = 2133, + [2162] = 46, + [2163] = 2160, + [2164] = 2153, + [2165] = 2160, + [2166] = 2145, + [2167] = 2167, + [2168] = 2168, + [2169] = 2153, + [2170] = 2153, + [2171] = 2145, + [2172] = 19, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2176, + [2177] = 2167, + [2178] = 2168, [2179] = 2179, - [2180] = 2133, - [2181] = 2134, - [2182] = 2136, - [2183] = 9, - [2184] = 2156, + [2180] = 2140, + [2181] = 2181, + [2182] = 2157, + [2183] = 2183, + [2184] = 2141, [2185] = 2185, - [2186] = 2127, - [2187] = 2120, - [2188] = 2133, - [2189] = 2134, - [2190] = 2190, - [2191] = 2122, - [2192] = 2136, - [2193] = 2193, - [2194] = 2156, - [2195] = 2131, - [2196] = 2120, - [2197] = 2136, - [2198] = 2136, - [2199] = 2146, - [2200] = 2156, - [2201] = 2201, - [2202] = 2070, - [2203] = 2203, - [2204] = 2204, - [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, - [2209] = 2206, - [2210] = 2210, + [2186] = 2145, + [2187] = 2136, + [2188] = 2188, + [2189] = 2142, + [2190] = 2142, + [2191] = 2140, + [2192] = 2168, + [2193] = 2167, + [2194] = 2136, + [2195] = 2157, + [2196] = 2137, + [2197] = 2160, + [2198] = 2167, + [2199] = 2153, + [2200] = 2168, + [2201] = 2141, + [2202] = 2137, + [2203] = 2168, + [2204] = 2142, + [2205] = 2145, + [2206] = 2137, + [2207] = 2145, + [2208] = 2137, + [2209] = 8, + [2210] = 2160, [2211] = 2211, - [2212] = 2212, - [2213] = 2211, - [2214] = 2214, - [2215] = 2215, - [2216] = 2216, + [2212] = 2167, + [2213] = 2213, + [2214] = 2157, + [2215] = 4, + [2216] = 2157, [2217] = 2217, - [2218] = 2206, - [2219] = 2216, - [2220] = 2220, - [2221] = 2207, - [2222] = 2215, - [2223] = 2214, + [2218] = 2218, + [2219] = 2219, + [2220] = 24, + [2221] = 2221, + [2222] = 2222, + [2223] = 16, [2224] = 2224, [2225] = 2225, - [2226] = 2224, - [2227] = 2207, - [2228] = 2212, - [2229] = 2215, - [2230] = 2224, - [2231] = 2220, - [2232] = 2203, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 12, + [2231] = 2231, + [2232] = 2232, [2233] = 2233, - [2234] = 2220, - [2235] = 2225, - [2236] = 2217, - [2237] = 2233, - [2238] = 2212, - [2239] = 2224, + [2234] = 2234, + [2235] = 2235, + [2236] = 2229, + [2237] = 2237, + [2238] = 2238, + [2239] = 2239, [2240] = 2240, [2241] = 2241, [2242] = 2242, [2243] = 2243, - [2244] = 2244, - [2245] = 12, - [2246] = 2246, - [2247] = 2210, - [2248] = 2246, - [2249] = 2211, - [2250] = 2250, + [2244] = 2229, + [2245] = 2240, + [2246] = 2240, + [2247] = 2229, + [2248] = 2238, + [2249] = 2233, + [2250] = 2228, [2251] = 2251, - [2252] = 2252, - [2253] = 2233, + [2252] = 2227, + [2253] = 2226, [2254] = 2254, - [2255] = 2206, - [2256] = 2204, - [2257] = 2203, - [2258] = 2240, - [2259] = 2210, - [2260] = 2064, + [2255] = 2222, + [2256] = 2228, + [2257] = 2227, + [2258] = 2224, + [2259] = 2226, + [2260] = 2222, [2261] = 2261, - [2262] = 2203, - [2263] = 2240, - [2264] = 2241, - [2265] = 2207, - [2266] = 2243, - [2267] = 2251, - [2268] = 2268, - [2269] = 2241, - [2270] = 2246, - [2271] = 2205, - [2272] = 2203, - [2273] = 2246, - [2274] = 2210, + [2262] = 2262, + [2263] = 2219, + [2264] = 2262, + [2265] = 2265, + [2266] = 2266, + [2267] = 2224, + [2268] = 2231, + [2269] = 2232, + [2270] = 2218, + [2271] = 2233, + [2272] = 2238, + [2273] = 2273, + [2274] = 2274, [2275] = 2275, - [2276] = 2233, - [2277] = 2212, - [2278] = 2205, - [2279] = 2204, - [2280] = 2280, - [2281] = 2280, - [2282] = 2211, + [2276] = 2276, + [2277] = 2239, + [2278] = 2241, + [2279] = 2242, + [2280] = 2251, + [2281] = 2281, + [2282] = 2261, [2283] = 2283, - [2284] = 2211, - [2285] = 2217, - [2286] = 2225, - [2287] = 2280, - [2288] = 2254, - [2289] = 2246, - [2290] = 2216, - [2291] = 2214, - [2292] = 2292, - [2293] = 2210, - [2294] = 2240, - [2295] = 2280, - [2296] = 2243, - [2297] = 2212, - [2298] = 2241, - [2299] = 2205, - [2300] = 2204, - [2301] = 2254, - [2302] = 2233, - [2303] = 2215, - [2304] = 2207, - [2305] = 2220, - [2306] = 2220, - [2307] = 2215, - [2308] = 2254, - [2309] = 2204, - [2310] = 2205, - [2311] = 2216, - [2312] = 2312, - [2313] = 2206, - [2314] = 2224, - [2315] = 2225, - [2316] = 2316, - [2317] = 2214, - [2318] = 2216, - [2319] = 2217, - [2320] = 2316, - [2321] = 2321, - [2322] = 2322, - [2323] = 2214, - [2324] = 2243, - [2325] = 2225, - [2326] = 2217, - [2327] = 2241, - [2328] = 2240, - [2329] = 2254, - [2330] = 2243, - [2331] = 2280, - [2332] = 2332, - [2333] = 2332, - [2334] = 26, - [2335] = 2335, - [2336] = 2336, - [2337] = 2337, - [2338] = 2338, - [2339] = 35, - [2340] = 2340, - [2341] = 2337, - [2342] = 2335, - [2343] = 2338, - [2344] = 2344, - [2345] = 2344, - [2346] = 2346, - [2347] = 2347, - [2348] = 2340, - [2349] = 2349, - [2350] = 2337, - [2351] = 2335, - [2352] = 2332, + [2284] = 2273, + [2285] = 2254, + [2286] = 2274, + [2287] = 2251, + [2288] = 2228, + [2289] = 2275, + [2290] = 2254, + [2291] = 2227, + [2292] = 2233, + [2293] = 2293, + [2294] = 2241, + [2295] = 2231, + [2296] = 2232, + [2297] = 2239, + [2298] = 2232, + [2299] = 2231, + [2300] = 2226, + [2301] = 2251, + [2302] = 2254, + [2303] = 2240, + [2304] = 2262, + [2305] = 2254, + [2306] = 2222, + [2307] = 2238, + [2308] = 2240, + [2309] = 2251, + [2310] = 2219, + [2311] = 2229, + [2312] = 2239, + [2313] = 2242, + [2314] = 2219, + [2315] = 2262, + [2316] = 2275, + [2317] = 2241, + [2318] = 2239, + [2319] = 2274, + [2320] = 2275, + [2321] = 2274, + [2322] = 2273, + [2323] = 2218, + [2324] = 2324, + [2325] = 2325, + [2326] = 2273, + [2327] = 2228, + [2328] = 2227, + [2329] = 2218, + [2330] = 2232, + [2331] = 2231, + [2332] = 2224, + [2333] = 2241, + [2334] = 2242, + [2335] = 2226, + [2336] = 2275, + [2337] = 2222, + [2338] = 2031, + [2339] = 2274, + [2340] = 2071, + [2341] = 2273, + [2342] = 2218, + [2343] = 2234, + [2344] = 2224, + [2345] = 2238, + [2346] = 2233, + [2347] = 2242, + [2348] = 2262, + [2349] = 2219, + [2350] = 2350, + [2351] = 19, + [2352] = 46, [2353] = 2353, - [2354] = 2338, - [2355] = 2344, - [2356] = 2340, - [2357] = 2338, - [2358] = 2335, - [2359] = 2335, - [2360] = 2344, - [2361] = 2361, - [2362] = 2332, - [2363] = 2332, + [2354] = 2350, + [2355] = 2355, + [2356] = 2350, + [2357] = 2355, + [2358] = 2358, + [2359] = 2359, + [2360] = 2355, + [2361] = 2353, + [2362] = 2362, + [2363] = 2363, [2364] = 2364, - [2365] = 2337, - [2366] = 2344, - [2367] = 2337, - [2368] = 2340, - [2369] = 2338, - [2370] = 2340, - [2371] = 2371, - [2372] = 2372, - [2373] = 2373, - [2374] = 907, - [2375] = 2375, - [2376] = 2376, - [2377] = 2377, - [2378] = 2373, - [2379] = 906, - [2380] = 905, - [2381] = 904, - [2382] = 2382, - [2383] = 903, - [2384] = 902, - [2385] = 901, - [2386] = 2386, - [2387] = 2373, - [2388] = 2388, - [2389] = 900, - [2390] = 2377, + [2365] = 2365, + [2366] = 2358, + [2367] = 2353, + [2368] = 2368, + [2369] = 2369, + [2370] = 2368, + [2371] = 2350, + [2372] = 2358, + [2373] = 2368, + [2374] = 2353, + [2375] = 2353, + [2376] = 2368, + [2377] = 2355, + [2378] = 2378, + [2379] = 2368, + [2380] = 2363, + [2381] = 2363, + [2382] = 2363, + [2383] = 2350, + [2384] = 2384, + [2385] = 2358, + [2386] = 2363, + [2387] = 2355, + [2388] = 2358, + [2389] = 2389, + [2390] = 1039, [2391] = 2391, - [2392] = 899, + [2392] = 971, [2393] = 2393, - [2394] = 2394, + [2394] = 970, [2395] = 2395, [2396] = 2396, - [2397] = 2397, - [2398] = 2377, + [2397] = 1000, + [2398] = 2398, [2399] = 2399, - [2400] = 878, - [2401] = 2373, - [2402] = 877, + [2400] = 2400, + [2401] = 1001, + [2402] = 1003, [2403] = 2403, [2404] = 2404, - [2405] = 876, - [2406] = 2406, - [2407] = 875, - [2408] = 874, - [2409] = 2395, - [2410] = 2386, - [2411] = 2403, - [2412] = 873, - [2413] = 862, - [2414] = 2404, - [2415] = 861, - [2416] = 860, + [2405] = 2405, + [2406] = 1004, + [2407] = 928, + [2408] = 2408, + [2409] = 2409, + [2410] = 2393, + [2411] = 2411, + [2412] = 1008, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 1009, [2417] = 2417, - [2418] = 853, - [2419] = 852, - [2420] = 2420, - [2421] = 2421, - [2422] = 2422, - [2423] = 843, - [2424] = 2393, - [2425] = 2395, - [2426] = 837, - [2427] = 2386, - [2428] = 2428, - [2429] = 2406, - [2430] = 2430, - [2431] = 2431, - [2432] = 2375, - [2433] = 2377, - [2434] = 2434, - [2435] = 2435, - [2436] = 2388, - [2437] = 2372, - [2438] = 2371, - [2439] = 2399, - [2440] = 2440, - [2441] = 2396, + [2418] = 2418, + [2419] = 1010, + [2420] = 1011, + [2421] = 2391, + [2422] = 2396, + [2423] = 2391, + [2424] = 2424, + [2425] = 2425, + [2426] = 2426, + [2427] = 2405, + [2428] = 2403, + [2429] = 2429, + [2430] = 2426, + [2431] = 1023, + [2432] = 1024, + [2433] = 2393, + [2434] = 2391, + [2435] = 1025, + [2436] = 1026, + [2437] = 1027, + [2438] = 2415, + [2439] = 1029, + [2440] = 2395, + [2441] = 2426, [2442] = 2442, - [2443] = 2395, - [2444] = 1830, - [2445] = 2386, - [2446] = 2393, - [2447] = 2394, - [2448] = 2396, - [2449] = 2388, - [2450] = 2406, - [2451] = 2451, - [2452] = 2452, - [2453] = 2422, - [2454] = 2454, - [2455] = 2455, - [2456] = 2417, - [2457] = 2457, - [2458] = 2403, - [2459] = 2459, - [2460] = 2404, - [2461] = 2461, - [2462] = 938, - [2463] = 2371, - [2464] = 2464, - [2465] = 939, - [2466] = 2375, - [2467] = 2422, - [2468] = 2373, - [2469] = 940, - [2470] = 2377, - [2471] = 2394, - [2472] = 2472, - [2473] = 944, - [2474] = 946, - [2475] = 2399, - [2476] = 2476, - [2477] = 2394, - [2478] = 2399, - [2479] = 2375, - [2480] = 2457, - [2481] = 2376, - [2482] = 2457, - [2483] = 2417, + [2443] = 2443, + [2444] = 2444, + [2445] = 2445, + [2446] = 2446, + [2447] = 2393, + [2448] = 1857, + [2449] = 2391, + [2450] = 2429, + [2451] = 2403, + [2452] = 2405, + [2453] = 2453, + [2454] = 1037, + [2455] = 2442, + [2456] = 2456, + [2457] = 2395, + [2458] = 2445, + [2459] = 2429, + [2460] = 972, + [2461] = 2426, + [2462] = 2424, + [2463] = 2463, + [2464] = 2417, + [2465] = 2413, + [2466] = 2466, + [2467] = 2418, + [2468] = 2468, + [2469] = 1040, + [2470] = 2442, + [2471] = 2456, + [2472] = 2405, + [2473] = 1046, + [2474] = 2445, + [2475] = 2475, + [2476] = 2399, + [2477] = 2477, + [2478] = 2417, + [2479] = 2479, + [2480] = 2446, + [2481] = 2424, + [2482] = 2482, + [2483] = 1047, [2484] = 2484, - [2485] = 2388, - [2486] = 2396, - [2487] = 2457, - [2488] = 2394, - [2489] = 2489, - [2490] = 2372, - [2491] = 2386, - [2492] = 2371, - [2493] = 2372, - [2494] = 2406, - [2495] = 2495, - [2496] = 2417, - [2497] = 2403, - [2498] = 842, - [2499] = 2372, - [2500] = 2404, - [2501] = 989, - [2502] = 2502, - [2503] = 2422, - [2504] = 2371, - [2505] = 2393, - [2506] = 2422, - [2507] = 2393, - [2508] = 2457, - [2509] = 2395, - [2510] = 2399, - [2511] = 2375, + [2485] = 2424, + [2486] = 2418, + [2487] = 2403, + [2488] = 2413, + [2489] = 1053, + [2490] = 1054, + [2491] = 2426, + [2492] = 2429, + [2493] = 2399, + [2494] = 975, + [2495] = 2415, + [2496] = 2399, + [2497] = 2446, + [2498] = 1057, + [2499] = 2456, + [2500] = 2399, + [2501] = 2501, + [2502] = 2396, + [2503] = 2393, + [2504] = 2395, + [2505] = 2505, + [2506] = 2506, + [2507] = 2415, + [2508] = 2413, + [2509] = 2417, + [2510] = 909, + [2511] = 2511, [2512] = 2512, - [2513] = 2513, - [2514] = 2404, - [2515] = 2406, - [2516] = 2403, - [2517] = 2417, - [2518] = 2388, - [2519] = 2519, - [2520] = 2396, - [2521] = 2521, - [2522] = 1018, - [2523] = 2523, - [2524] = 2524, - [2525] = 2525, + [2513] = 2417, + [2514] = 2456, + [2515] = 2515, + [2516] = 976, + [2517] = 2517, + [2518] = 2518, + [2519] = 2418, + [2520] = 2424, + [2521] = 2456, + [2522] = 2522, + [2523] = 2396, + [2524] = 2445, + [2525] = 2442, [2526] = 2526, - [2527] = 2527, - [2528] = 2528, + [2527] = 2445, + [2528] = 2442, [2529] = 2529, [2530] = 2530, - [2531] = 2531, + [2531] = 2429, [2532] = 2532, - [2533] = 2533, - [2534] = 2534, - [2535] = 2535, - [2536] = 2536, - [2537] = 2537, - [2538] = 2526, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 2534, - [2543] = 2543, + [2533] = 2446, + [2534] = 942, + [2535] = 2396, + [2536] = 2415, + [2537] = 2395, + [2538] = 2413, + [2539] = 2405, + [2540] = 2482, + [2541] = 2403, + [2542] = 2446, + [2543] = 2418, [2544] = 2544, [2545] = 2545, - [2546] = 2528, + [2546] = 2545, [2547] = 2547, - [2548] = 2547, + [2548] = 2548, [2549] = 2549, [2550] = 2550, [2551] = 2551, - [2552] = 2533, + [2552] = 2552, [2553] = 2553, - [2554] = 2544, + [2554] = 2554, [2555] = 2555, - [2556] = 2543, - [2557] = 2547, + [2556] = 2556, + [2557] = 2557, [2558] = 2558, - [2559] = 2532, + [2559] = 2559, [2560] = 2560, [2561] = 2561, [2562] = 2562, [2563] = 2563, - [2564] = 2561, - [2565] = 2561, - [2566] = 2526, - [2567] = 2530, - [2568] = 2530, - [2569] = 2555, + [2564] = 2564, + [2565] = 2565, + [2566] = 2566, + [2567] = 2567, + [2568] = 2568, + [2569] = 2569, [2570] = 2570, - [2571] = 2536, - [2572] = 2532, - [2573] = 2573, - [2574] = 2533, - [2575] = 2575, + [2571] = 2555, + [2572] = 2572, + [2573] = 2544, + [2574] = 2574, + [2575] = 2547, [2576] = 2576, - [2577] = 2577, - [2578] = 2537, - [2579] = 2544, - [2580] = 2580, - [2581] = 2541, - [2582] = 2558, + [2577] = 2567, + [2578] = 2578, + [2579] = 2562, + [2580] = 2569, + [2581] = 2548, + [2582] = 2544, [2583] = 2583, - [2584] = 2580, - [2585] = 2580, - [2586] = 2550, - [2587] = 2549, - [2588] = 2583, - [2589] = 2536, - [2590] = 2590, + [2584] = 2583, + [2585] = 2572, + [2586] = 2548, + [2587] = 2547, + [2588] = 2588, + [2589] = 2551, + [2590] = 2552, [2591] = 2591, - [2592] = 2553, - [2593] = 2541, - [2594] = 2549, - [2595] = 2544, - [2596] = 2577, - [2597] = 2558, - [2598] = 2527, - [2599] = 2599, - [2600] = 2600, - [2601] = 2543, - [2602] = 2539, - [2603] = 2576, - [2604] = 2527, - [2605] = 2553, - [2606] = 2545, - [2607] = 2551, - [2608] = 2561, - [2609] = 2609, - [2610] = 2535, - [2611] = 2583, - [2612] = 2551, - [2613] = 2563, - [2614] = 2563, - [2615] = 2541, - [2616] = 2532, - [2617] = 2543, - [2618] = 2580, - [2619] = 2549, - [2620] = 2530, - [2621] = 2547, - [2622] = 2534, - [2623] = 2555, - [2624] = 2624, - [2625] = 2532, - [2626] = 2537, - [2627] = 2535, - [2628] = 2628, - [2629] = 2533, - [2630] = 2536, - [2631] = 2583, - [2632] = 2632, - [2633] = 2551, - [2634] = 2526, - [2635] = 2577, - [2636] = 2563, - [2637] = 2558, - [2638] = 2553, - [2639] = 2577, - [2640] = 2527, - [2641] = 2641, - [2642] = 2576, - [2643] = 2641, - [2644] = 2544, - [2645] = 2541, - [2646] = 2580, - [2647] = 2647, - [2648] = 2576, - [2649] = 2534, - [2650] = 2577, - [2651] = 2561, - [2652] = 2632, - [2653] = 2653, - [2654] = 2547, - [2655] = 2526, - [2656] = 2641, - [2657] = 2632, - [2658] = 2528, - [2659] = 2536, - [2660] = 2555, - [2661] = 2583, - [2662] = 2563, - [2663] = 2539, - [2664] = 2534, - [2665] = 2665, - [2666] = 2528, - [2667] = 2537, - [2668] = 2535, - [2669] = 2669, - [2670] = 2545, - [2671] = 2550, - [2672] = 2543, - [2673] = 2555, - [2674] = 2528, - [2675] = 2535, - [2676] = 2537, - [2677] = 2539, - [2678] = 2545, - [2679] = 2550, - [2680] = 2549, - [2681] = 2632, - [2682] = 2641, - [2683] = 2641, - [2684] = 2632, - [2685] = 2533, - [2686] = 2530, - [2687] = 2551, - [2688] = 2558, - [2689] = 2689, - [2690] = 2553, - [2691] = 2527, - [2692] = 2550, - [2693] = 2576, - [2694] = 2545, - [2695] = 2539, - [2696] = 2696, - [2697] = 2697, - [2698] = 2698, - [2699] = 2699, - [2700] = 2700, - [2701] = 2701, - [2702] = 2702, - [2703] = 2703, - [2704] = 2704, - [2705] = 2705, - [2706] = 2706, + [2592] = 2557, + [2593] = 2555, + [2594] = 2559, + [2595] = 2591, + [2596] = 2557, + [2597] = 2597, + [2598] = 2598, + [2599] = 2568, + [2600] = 2559, + [2601] = 2576, + [2602] = 2578, + [2603] = 2550, + [2604] = 2549, + [2605] = 2568, + [2606] = 2606, + [2607] = 2588, + [2608] = 2608, + [2609] = 2591, + [2610] = 2610, + [2611] = 2588, + [2612] = 2554, + [2613] = 2566, + [2614] = 2559, + [2615] = 2565, + [2616] = 2616, + [2617] = 2557, + [2618] = 2618, + [2619] = 2567, + [2620] = 2564, + [2621] = 2621, + [2622] = 2622, + [2623] = 2556, + [2624] = 2558, + [2625] = 2625, + [2626] = 2563, + [2627] = 2552, + [2628] = 2572, + [2629] = 2578, + [2630] = 2598, + [2631] = 2631, + [2632] = 2583, + [2633] = 2633, + [2634] = 2563, + [2635] = 2564, + [2636] = 2565, + [2637] = 2597, + [2638] = 2566, + [2639] = 2552, + [2640] = 2588, + [2641] = 2578, + [2642] = 2597, + [2643] = 2550, + [2644] = 2545, + [2645] = 2572, + [2646] = 2549, + [2647] = 2545, + [2648] = 2549, + [2649] = 2550, + [2650] = 2568, + [2651] = 2549, + [2652] = 2550, + [2653] = 2562, + [2654] = 2569, + [2655] = 2551, + [2656] = 2544, + [2657] = 2547, + [2658] = 2548, + [2659] = 2547, + [2660] = 2548, + [2661] = 2598, + [2662] = 2576, + [2663] = 2591, + [2664] = 2664, + [2665] = 2554, + [2666] = 2556, + [2667] = 2576, + [2668] = 2558, + [2669] = 2576, + [2670] = 2569, + [2671] = 2562, + [2672] = 2545, + [2673] = 2567, + [2674] = 2674, + [2675] = 2552, + [2676] = 2591, + [2677] = 2568, + [2678] = 2555, + [2679] = 2597, + [2680] = 2563, + [2681] = 2598, + [2682] = 2564, + [2683] = 2554, + [2684] = 2572, + [2685] = 2598, + [2686] = 2597, + [2687] = 2565, + [2688] = 2566, + [2689] = 2559, + [2690] = 2583, + [2691] = 2691, + [2692] = 2583, + [2693] = 2588, + [2694] = 2694, + [2695] = 2556, + [2696] = 2551, + [2697] = 2558, + [2698] = 2578, + [2699] = 2566, + [2700] = 2565, + [2701] = 2557, + [2702] = 2562, + [2703] = 2569, + [2704] = 2555, + [2705] = 2551, + [2706] = 2544, [2707] = 2707, - [2708] = 2706, - [2709] = 2709, - [2710] = 2710, - [2711] = 2711, - [2712] = 2712, - [2713] = 2713, + [2708] = 2564, + [2709] = 2563, + [2710] = 2554, + [2711] = 2556, + [2712] = 2558, + [2713] = 2567, [2714] = 2714, [2715] = 2715, [2716] = 2716, [2717] = 2717, - [2718] = 2717, + [2718] = 2718, [2719] = 2719, [2720] = 2720, [2721] = 2721, [2722] = 2722, - [2723] = 2720, - [2724] = 2704, + [2723] = 2723, + [2724] = 2724, [2725] = 2725, [2726] = 2726, [2727] = 2727, - [2728] = 2728, - [2729] = 2722, - [2730] = 2722, - [2731] = 2720, - [2732] = 2732, - [2733] = 2706, - [2734] = 2717, - [2735] = 2728, + [2728] = 2721, + [2729] = 2729, + [2730] = 2730, + [2731] = 2731, + [2732] = 2721, + [2733] = 2733, + [2734] = 2734, + [2735] = 2731, [2736] = 2736, - [2737] = 2737, + [2737] = 2726, [2738] = 2738, - [2739] = 2711, + [2739] = 2733, [2740] = 2740, - [2741] = 2696, - [2742] = 2699, - [2743] = 2727, - [2744] = 2726, - [2745] = 2697, + [2741] = 2741, + [2742] = 2742, + [2743] = 2743, + [2744] = 2744, + [2745] = 2745, [2746] = 2746, - [2747] = 2719, - [2748] = 2748, + [2747] = 2747, + [2748] = 2717, [2749] = 2749, - [2750] = 2703, - [2751] = 2751, + [2750] = 2750, + [2751] = 2738, [2752] = 2752, [2753] = 2753, - [2754] = 2754, - [2755] = 2715, + [2754] = 2731, + [2755] = 2755, [2756] = 2756, - [2757] = 2728, - [2758] = 2703, - [2759] = 2759, - [2760] = 2719, - [2761] = 2696, - [2762] = 2762, - [2763] = 2749, - [2764] = 2701, + [2757] = 2757, + [2758] = 2758, + [2759] = 2724, + [2760] = 2753, + [2761] = 2733, + [2762] = 2741, + [2763] = 2729, + [2764] = 2764, [2765] = 2765, [2766] = 2766, [2767] = 2767, - [2768] = 2713, - [2769] = 2746, + [2768] = 2768, + [2769] = 2769, [2770] = 2770, - [2771] = 2706, - [2772] = 2716, - [2773] = 2709, + [2771] = 2771, + [2772] = 2772, + [2773] = 2773, [2774] = 2774, - [2775] = 2775, - [2776] = 2727, + [2775] = 2773, + [2776] = 2776, [2777] = 2777, - [2778] = 2698, - [2779] = 2779, - [2780] = 2710, - [2781] = 2714, - [2782] = 2714, - [2783] = 2751, - [2784] = 2701, - [2785] = 2699, - [2786] = 2710, - [2787] = 2787, - [2788] = 2788, + [2778] = 2778, + [2779] = 2721, + [2780] = 2780, + [2781] = 2781, + [2782] = 2782, + [2783] = 2721, + [2784] = 2784, + [2785] = 2785, + [2786] = 2729, + [2787] = 2784, + [2788] = 2724, [2789] = 2716, - [2790] = 2715, - [2791] = 2726, + [2790] = 2790, + [2791] = 2791, [2792] = 2792, - [2793] = 2793, - [2794] = 2698, - [2795] = 2727, - [2796] = 2796, + [2793] = 2745, + [2794] = 2794, + [2795] = 2795, + [2796] = 2734, [2797] = 2797, - [2798] = 2726, - [2799] = 2728, - [2800] = 2800, - [2801] = 2713, - [2802] = 2709, + [2798] = 2725, + [2799] = 2756, + [2800] = 2734, + [2801] = 2715, + [2802] = 2781, [2803] = 2803, [2804] = 2804, - [2805] = 2805, - [2806] = 2715, - [2807] = 2722, - [2808] = 2808, - [2809] = 2701, - [2810] = 2697, - [2811] = 2720, - [2812] = 2704, - [2813] = 2716, + [2805] = 2724, + [2806] = 2781, + [2807] = 2773, + [2808] = 2733, + [2809] = 2738, + [2810] = 2717, + [2811] = 2731, + [2812] = 2784, + [2813] = 2717, [2814] = 2814, - [2815] = 2815, - [2816] = 2816, - [2817] = 2817, - [2818] = 2713, - [2819] = 2717, - [2820] = 2711, - [2821] = 2821, - [2822] = 2699, - [2823] = 2696, - [2824] = 2824, - [2825] = 2719, - [2826] = 2826, - [2827] = 2703, - [2828] = 2751, - [2829] = 2704, - [2830] = 2749, - [2831] = 2701, - [2832] = 2697, - [2833] = 2746, - [2834] = 2759, - [2835] = 2746, - [2836] = 2749, - [2837] = 2751, - [2838] = 2838, - [2839] = 2721, - [2840] = 2716, + [2815] = 2729, + [2816] = 2767, + [2817] = 2771, + [2818] = 2818, + [2819] = 2715, + [2820] = 2734, + [2821] = 2738, + [2822] = 2767, + [2823] = 2823, + [2824] = 2744, + [2825] = 2716, + [2826] = 2733, + [2827] = 2715, + [2828] = 2777, + [2829] = 2744, + [2830] = 2753, + [2831] = 2831, + [2832] = 2767, + [2833] = 2717, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2738, + [2838] = 2750, + [2839] = 2731, + [2840] = 2773, [2841] = 2841, - [2842] = 2703, - [2843] = 2711, + [2842] = 2842, + [2843] = 2770, [2844] = 2844, - [2845] = 2719, - [2846] = 2696, - [2847] = 2751, - [2848] = 2709, - [2849] = 2749, - [2850] = 2746, - [2851] = 2697, - [2852] = 2713, + [2845] = 2845, + [2846] = 2725, + [2847] = 2745, + [2848] = 2777, + [2849] = 2756, + [2850] = 2753, + [2851] = 2716, + [2852] = 2734, [2853] = 2853, [2854] = 2854, [2855] = 2855, - [2856] = 2699, - [2857] = 2711, + [2856] = 2767, + [2857] = 2753, [2858] = 2858, - [2859] = 2859, - [2860] = 2860, + [2859] = 2725, + [2860] = 2756, [2861] = 2861, - [2862] = 2704, - [2863] = 2717, - [2864] = 2706, - [2865] = 2709, - [2866] = 2720, - [2867] = 2867, - [2868] = 2714, - [2869] = 2698, - [2870] = 2722, - [2871] = 2871, - [2872] = 2872, - [2873] = 2710, - [2874] = 2698, - [2875] = 2710, + [2862] = 2862, + [2863] = 2781, + [2864] = 2744, + [2865] = 2865, + [2866] = 2866, + [2867] = 2749, + [2868] = 2773, + [2869] = 2770, + [2870] = 2870, + [2871] = 2726, + [2872] = 2729, + [2873] = 2873, + [2874] = 2745, + [2875] = 2784, [2876] = 2876, - [2877] = 2877, - [2878] = 2700, + [2877] = 2777, + [2878] = 2750, [2879] = 2879, - [2880] = 2880, - [2881] = 2881, - [2882] = 2714, - [2883] = 2728, + [2880] = 2745, + [2881] = 2771, + [2882] = 2770, + [2883] = 2715, [2884] = 2884, - [2885] = 2885, + [2885] = 2771, [2886] = 2886, - [2887] = 2887, + [2887] = 2777, [2888] = 2888, - [2889] = 2889, + [2889] = 2749, [2890] = 2890, - [2891] = 2727, - [2892] = 2892, - [2893] = 2726, - [2894] = 2894, + [2891] = 2726, + [2892] = 2724, + [2893] = 2725, + [2894] = 2716, [2895] = 2895, - [2896] = 2896, - [2897] = 2897, - [2898] = 2715, - [2899] = 2899, - [2900] = 2900, + [2896] = 2749, + [2897] = 2770, + [2898] = 2726, + [2899] = 2750, + [2900] = 2756, [2901] = 2901, [2902] = 2902, - [2903] = 2903, - [2904] = 2904, - [2905] = 8, + [2903] = 2750, + [2904] = 2781, + [2905] = 2752, [2906] = 2906, - [2907] = 2907, - [2908] = 2904, - [2909] = 2903, - [2910] = 2903, - [2911] = 2904, + [2907] = 2749, + [2908] = 2771, + [2909] = 2842, + [2910] = 2910, + [2911] = 2911, [2912] = 2912, [2913] = 2913, - [2914] = 2907, - [2915] = 2899, + [2914] = 2744, + [2915] = 2784, [2916] = 2916, - [2917] = 2903, - [2918] = 2904, - [2919] = 2907, + [2917] = 2917, + [2918] = 2918, + [2919] = 2919, [2920] = 2920, - [2921] = 2899, - [2922] = 2903, + [2921] = 2921, + [2922] = 2922, [2923] = 2923, - [2924] = 2924, - [2925] = 2907, + [2924] = 2919, + [2925] = 2920, [2926] = 2926, - [2927] = 2907, + [2927] = 2927, [2928] = 2928, [2929] = 2929, - [2930] = 2901, - [2931] = 2902, - [2932] = 2932, - [2933] = 2933, - [2934] = 2934, - [2935] = 2906, + [2930] = 2930, + [2931] = 2931, + [2932] = 2920, + [2933] = 2923, + [2934] = 42, + [2935] = 2935, [2936] = 2936, [2937] = 2937, [2938] = 2938, - [2939] = 2929, - [2940] = 2904, - [2941] = 2903, + [2939] = 39, + [2940] = 2938, + [2941] = 2923, [2942] = 2942, - [2943] = 2943, - [2944] = 2907, + [2943] = 2927, + [2944] = 2944, [2945] = 2945, - [2946] = 2899, - [2947] = 2947, - [2948] = 2948, - [2949] = 2929, + [2946] = 2946, + [2947] = 2919, + [2948] = 2920, + [2949] = 2921, [2950] = 2950, [2951] = 2951, [2952] = 2952, - [2953] = 2938, - [2954] = 6, + [2953] = 2923, + [2954] = 2954, [2955] = 2955, [2956] = 2956, - [2957] = 2957, - [2958] = 2929, - [2959] = 2899, - [2960] = 2960, - [2961] = 2901, - [2962] = 2902, - [2963] = 2906, - [2964] = 2964, - [2965] = 2938, - [2966] = 2669, - [2967] = 2938, - [2968] = 2938, + [2957] = 2920, + [2958] = 2922, + [2959] = 2921, + [2960] = 2935, + [2961] = 2922, + [2962] = 2962, + [2963] = 2963, + [2964] = 2936, + [2965] = 2919, + [2966] = 2920, + [2967] = 9, + [2968] = 2968, [2969] = 2969, - [2970] = 2943, - [2971] = 2599, + [2970] = 2970, + [2971] = 2935, [2972] = 2972, - [2973] = 2600, - [2974] = 13, - [2975] = 2945, + [2973] = 2921, + [2974] = 2974, + [2975] = 2975, [2976] = 2976, [2977] = 2977, - [2978] = 16, + [2978] = 2938, [2979] = 2979, - [2980] = 2943, - [2981] = 15, + [2980] = 2968, + [2981] = 2920, [2982] = 2982, - [2983] = 2899, - [2984] = 2907, - [2985] = 29, - [2986] = 2986, - [2987] = 2987, - [2988] = 2988, - [2989] = 2904, - [2990] = 2929, - [2991] = 2903, - [2992] = 2952, - [2993] = 2993, + [2983] = 2970, + [2984] = 2984, + [2985] = 2985, + [2986] = 2922, + [2987] = 2944, + [2988] = 2921, + [2989] = 2938, + [2990] = 2944, + [2991] = 2991, + [2992] = 2919, + [2993] = 2922, [2994] = 2994, - [2995] = 2901, - [2996] = 2902, - [2997] = 2997, - [2998] = 2998, - [2999] = 2906, - [3000] = 3000, - [3001] = 3001, - [3002] = 3002, + [2995] = 2968, + [2996] = 2921, + [2997] = 2938, + [2998] = 2922, + [2999] = 2944, + [3000] = 2921, + [3001] = 2927, + [3002] = 2935, [3003] = 3003, - [3004] = 3004, + [3004] = 2968, [3005] = 2938, - [3006] = 2943, + [3006] = 2938, [3007] = 3007, - [3008] = 3008, - [3009] = 2903, - [3010] = 2952, - [3011] = 2904, - [3012] = 2920, - [3013] = 2945, - [3014] = 2952, - [3015] = 2998, - [3016] = 2907, - [3017] = 2899, - [3018] = 3018, - [3019] = 2952, - [3020] = 2900, - [3021] = 2899, - [3022] = 2907, - [3023] = 3023, + [3008] = 2922, + [3009] = 3009, + [3010] = 3010, + [3011] = 2919, + [3012] = 2991, + [3013] = 2927, + [3014] = 2919, + [3015] = 3015, + [3016] = 3016, + [3017] = 15, + [3018] = 2935, + [3019] = 3019, + [3020] = 2970, + [3021] = 2560, + [3022] = 2561, + [3023] = 7, [3024] = 3024, - [3025] = 3025, - [3026] = 2904, - [3027] = 2903, - [3028] = 3025, - [3029] = 2945, - [3030] = 2901, - [3031] = 2902, - [3032] = 2906, - [3033] = 2945, - [3034] = 2938, - [3035] = 3035, - [3036] = 2689, - [3037] = 2943, - [3038] = 3038, - [3039] = 3039, - [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 3043, + [3025] = 2979, + [3026] = 2920, + [3027] = 3027, + [3028] = 2979, + [3029] = 3029, + [3030] = 2921, + [3031] = 3031, + [3032] = 3032, + [3033] = 3033, + [3034] = 3034, + [3035] = 2621, + [3036] = 2922, + [3037] = 2920, + [3038] = 2919, + [3039] = 2970, + [3040] = 2970, + [3041] = 2968, + [3042] = 2931, + [3043] = 2927, [3044] = 3044, [3045] = 3045, - [3046] = 3046, - [3047] = 3047, - [3048] = 3048, + [3046] = 21, + [3047] = 2921, + [3048] = 3019, [3049] = 3049, - [3050] = 3050, - [3051] = 3051, - [3052] = 3052, + [3050] = 2691, + [3051] = 2944, + [3052] = 2979, [3053] = 3053, - [3054] = 3054, - [3055] = 3055, - [3056] = 3056, + [3054] = 2923, + [3055] = 2979, + [3056] = 974, [3057] = 3057, [3058] = 3058, [3059] = 3059, [3060] = 3060, [3061] = 3061, - [3062] = 3062, + [3062] = 3059, [3063] = 3063, - [3064] = 3064, - [3065] = 3038, - [3066] = 3066, - [3067] = 3067, - [3068] = 3068, - [3069] = 3047, + [3064] = 3060, + [3065] = 3065, + [3066] = 3059, + [3067] = 3060, + [3068] = 3059, + [3069] = 3069, [3070] = 3070, [3071] = 3071, - [3072] = 3056, - [3073] = 3048, - [3074] = 3052, - [3075] = 3075, - [3076] = 3076, - [3077] = 3077, + [3072] = 3072, + [3073] = 3073, + [3074] = 3060, + [3075] = 3060, + [3076] = 3059, + [3077] = 11, [3078] = 3078, [3079] = 3079, [3080] = 3080, - [3081] = 3081, + [3081] = 3071, [3082] = 3082, [3083] = 3083, - [3084] = 3084, + [3084] = 3071, [3085] = 3085, - [3086] = 3086, + [3086] = 3071, [3087] = 3087, [3088] = 3088, - [3089] = 3055, - [3090] = 3078, - [3091] = 3084, - [3092] = 3085, - [3093] = 3093, - [3094] = 3094, - [3095] = 3095, - [3096] = 3096, - [3097] = 3097, - [3098] = 3098, - [3099] = 3039, - [3100] = 3100, + [3089] = 3089, + [3090] = 3085, + [3091] = 3071, + [3092] = 3069, + [3093] = 3083, + [3094] = 3063, + [3095] = 3083, + [3096] = 3065, + [3097] = 3061, + [3098] = 3073, + [3099] = 3083, + [3100] = 3061, [3101] = 3101, - [3102] = 3102, + [3102] = 3083, [3103] = 3103, - [3104] = 3040, + [3104] = 3061, [3105] = 3105, [3106] = 3106, [3107] = 3107, [3108] = 3108, [3109] = 3109, - [3110] = 3098, + [3110] = 3110, [3111] = 3111, - [3112] = 3098, - [3113] = 3108, - [3114] = 3107, - [3115] = 3085, - [3116] = 3105, - [3117] = 3084, - [3118] = 3078, - [3119] = 3108, - [3120] = 3048, + [3112] = 3112, + [3113] = 3113, + [3114] = 3114, + [3115] = 3115, + [3116] = 3116, + [3117] = 3117, + [3118] = 3118, + [3119] = 3119, + [3120] = 3120, [3121] = 3121, - [3122] = 3107, - [3123] = 3056, - [3124] = 3055, - [3125] = 3076, - [3126] = 3040, - [3127] = 3042, - [3128] = 9, - [3129] = 3096, - [3130] = 3042, + [3122] = 3122, + [3123] = 3123, + [3124] = 3124, + [3125] = 3125, + [3126] = 3126, + [3127] = 3127, + [3128] = 3128, + [3129] = 3129, + [3130] = 3130, [3131] = 3131, - [3132] = 3105, + [3132] = 3132, [3133] = 3133, - [3134] = 3103, - [3135] = 3102, + [3134] = 3085, + [3135] = 3135, [3136] = 3136, - [3137] = 3101, - [3138] = 3039, - [3139] = 3046, - [3140] = 3109, - [3141] = 4, - [3142] = 3102, - [3143] = 865, - [3144] = 980, + [3137] = 3137, + [3138] = 3138, + [3139] = 3139, + [3140] = 3140, + [3141] = 3141, + [3142] = 3142, + [3143] = 3143, + [3144] = 3144, [3145] = 3145, - [3146] = 972, - [3147] = 964, - [3148] = 962, - [3149] = 959, - [3150] = 956, - [3151] = 934, - [3152] = 3083, - [3153] = 3095, - [3154] = 921, - [3155] = 1001, - [3156] = 3047, + [3146] = 3146, + [3147] = 3147, + [3148] = 3148, + [3149] = 3149, + [3150] = 3150, + [3151] = 3151, + [3152] = 3151, + [3153] = 3153, + [3154] = 3137, + [3155] = 3132, + [3156] = 3089, [3157] = 3157, - [3158] = 839, - [3159] = 841, - [3160] = 844, - [3161] = 847, - [3162] = 848, - [3163] = 3163, - [3164] = 849, - [3165] = 835, - [3166] = 3050, - [3167] = 854, - [3168] = 3045, - [3169] = 3169, - [3170] = 855, - [3171] = 856, - [3172] = 857, - [3173] = 858, - [3174] = 3094, - [3175] = 3093, - [3176] = 3054, - [3177] = 863, - [3178] = 3088, - [3179] = 864, - [3180] = 937, - [3181] = 866, - [3182] = 868, - [3183] = 836, - [3184] = 3087, - [3185] = 871, - [3186] = 879, - [3187] = 881, - [3188] = 882, - [3189] = 883, - [3190] = 3057, - [3191] = 3058, - [3192] = 884, - [3193] = 885, - [3194] = 3096, - [3195] = 3059, - [3196] = 886, - [3197] = 888, - [3198] = 892, - [3199] = 894, - [3200] = 898, - [3201] = 908, - [3202] = 3109, - [3203] = 3060, - [3204] = 910, - [3205] = 3061, - [3206] = 919, - [3207] = 923, - [3208] = 3062, - [3209] = 924, - [3210] = 3063, - [3211] = 3064, - [3212] = 925, - [3213] = 926, - [3214] = 927, - [3215] = 928, - [3216] = 3216, - [3217] = 930, - [3218] = 931, - [3219] = 933, - [3220] = 935, - [3221] = 3066, - [3222] = 3067, - [3223] = 936, - [3224] = 889, - [3225] = 3068, - [3226] = 947, - [3227] = 950, - [3228] = 965, - [3229] = 966, - [3230] = 969, - [3231] = 970, - [3232] = 973, - [3233] = 3045, - [3234] = 3234, - [3235] = 975, - [3236] = 3070, - [3237] = 976, - [3238] = 3071, - [3239] = 977, - [3240] = 3075, - [3241] = 979, - [3242] = 981, - [3243] = 984, - [3244] = 3077, - [3245] = 986, - [3246] = 987, + [3158] = 3150, + [3159] = 3124, + [3160] = 3160, + [3161] = 3149, + [3162] = 3087, + [3163] = 3148, + [3164] = 3146, + [3165] = 3083, + [3166] = 3166, + [3167] = 3167, + [3168] = 3070, + [3169] = 3144, + [3170] = 3170, + [3171] = 3065, + [3172] = 3061, + [3173] = 3173, + [3174] = 3063, + [3175] = 3105, + [3176] = 3160, + [3177] = 3106, + [3178] = 3107, + [3179] = 3108, + [3180] = 3109, + [3181] = 3110, + [3182] = 3111, + [3183] = 3112, + [3184] = 3113, + [3185] = 3114, + [3186] = 3115, + [3187] = 3116, + [3188] = 3088, + [3189] = 3118, + [3190] = 3119, + [3191] = 3120, + [3192] = 3121, + [3193] = 3143, + [3194] = 3142, + [3195] = 3141, + [3196] = 3122, + [3197] = 3123, + [3198] = 3125, + [3199] = 3126, + [3200] = 3128, + [3201] = 3129, + [3202] = 3130, + [3203] = 3131, + [3204] = 3133, + [3205] = 3135, + [3206] = 3103, + [3207] = 3136, + [3208] = 3208, + [3209] = 3209, + [3210] = 3139, + [3211] = 3140, + [3212] = 3141, + [3213] = 3101, + [3214] = 3103, + [3215] = 3140, + [3216] = 3139, + [3217] = 3142, + [3218] = 3143, + [3219] = 3219, + [3220] = 3220, + [3221] = 3144, + [3222] = 3101, + [3223] = 3223, + [3224] = 3146, + [3225] = 3148, + [3226] = 3149, + [3227] = 3227, + [3228] = 3151, + [3229] = 3229, + [3230] = 3137, + [3231] = 3132, + [3232] = 3232, + [3233] = 3136, + [3234] = 3150, + [3235] = 3058, + [3236] = 3135, + [3237] = 3124, + [3238] = 3133, + [3239] = 3087, + [3240] = 3083, + [3241] = 3241, + [3242] = 3058, + [3243] = 3070, + [3244] = 3131, + [3245] = 3130, + [3246] = 3061, [3247] = 3247, - [3248] = 988, - [3249] = 994, - [3250] = 995, - [3251] = 996, - [3252] = 997, - [3253] = 3079, - [3254] = 1004, - [3255] = 3080, - [3256] = 1007, - [3257] = 1008, - [3258] = 3258, - [3259] = 3082, - [3260] = 3043, - [3261] = 1005, - [3262] = 1003, - [3263] = 3083, - [3264] = 1000, - [3265] = 3101, - [3266] = 998, - [3267] = 993, - [3268] = 3039, - [3269] = 991, - [3270] = 3095, - [3271] = 3087, - [3272] = 990, - [3273] = 985, - [3274] = 3088, - [3275] = 983, - [3276] = 3093, - [3277] = 961, - [3278] = 960, - [3279] = 3094, - [3280] = 958, - [3281] = 3095, - [3282] = 955, - [3283] = 3044, - [3284] = 954, - [3285] = 3136, - [3286] = 953, - [3287] = 3101, - [3288] = 952, - [3289] = 3102, - [3290] = 951, - [3291] = 3103, - [3292] = 3082, - [3293] = 949, - [3294] = 3105, - [3295] = 909, - [3296] = 897, - [3297] = 896, - [3298] = 3298, - [3299] = 3103, + [3248] = 3248, + [3249] = 3105, + [3250] = 3101, + [3251] = 3106, + [3252] = 3103, + [3253] = 3058, + [3254] = 3107, + [3255] = 3108, + [3256] = 3256, + [3257] = 3109, + [3258] = 3110, + [3259] = 3111, + [3260] = 3112, + [3261] = 3113, + [3262] = 3114, + [3263] = 3115, + [3264] = 3116, + [3265] = 3265, + [3266] = 3118, + [3267] = 3119, + [3268] = 3120, + [3269] = 3121, + [3270] = 3270, + [3271] = 3122, + [3272] = 3123, + [3273] = 3125, + [3274] = 3126, + [3275] = 3129, + [3276] = 3160, + [3277] = 3128, + [3278] = 3128, + [3279] = 3129, + [3280] = 3280, + [3281] = 3130, + [3282] = 3131, + [3283] = 3133, + [3284] = 3284, + [3285] = 3135, + [3286] = 3136, + [3287] = 3287, + [3288] = 3288, + [3289] = 3139, + [3290] = 3140, + [3291] = 3291, + [3292] = 3292, + [3293] = 3141, + [3294] = 3294, + [3295] = 3126, + [3296] = 3142, + [3297] = 3143, + [3298] = 3144, + [3299] = 3299, [3300] = 3300, - [3301] = 3045, - [3302] = 3080, - [3303] = 3079, - [3304] = 3052, - [3305] = 895, - [3306] = 3076, - [3307] = 890, - [3308] = 3107, - [3309] = 3077, - [3310] = 3108, - [3311] = 3098, - [3312] = 3075, - [3313] = 3094, - [3314] = 3093, - [3315] = 3085, - [3316] = 3043, - [3317] = 3071, - [3318] = 3070, - [3319] = 3084, - [3320] = 3078, - [3321] = 3068, - [3322] = 3067, - [3323] = 3136, - [3324] = 3066, - [3325] = 1222, - [3326] = 3038, - [3327] = 3064, - [3328] = 3043, - [3329] = 3063, - [3330] = 3330, - [3331] = 3048, - [3332] = 3062, - [3333] = 3061, - [3334] = 845, - [3335] = 3060, - [3336] = 3056, - [3337] = 3059, - [3338] = 3338, - [3339] = 3339, - [3340] = 3340, - [3341] = 3341, - [3342] = 3055, - [3343] = 3343, - [3344] = 3040, - [3345] = 3345, - [3346] = 2986, - [3347] = 3042, - [3348] = 3003, - [3349] = 3058, - [3350] = 3350, - [3351] = 3088, - [3352] = 3109, - [3353] = 3087, - [3354] = 3136, - [3355] = 1555, - [3356] = 3057, - [3357] = 3054, - [3358] = 3100, - [3359] = 3046, - [3360] = 3046, - [3361] = 3361, - [3362] = 3054, - [3363] = 3046, - [3364] = 3050, - [3365] = 3096, - [3366] = 3054, - [3367] = 3043, - [3368] = 3368, - [3369] = 3054, - [3370] = 3051, - [3371] = 3046, - [3372] = 3057, - [3373] = 3058, - [3374] = 3059, - [3375] = 3060, - [3376] = 3061, - [3377] = 3062, - [3378] = 3063, - [3379] = 3064, - [3380] = 3380, - [3381] = 3381, - [3382] = 3038, - [3383] = 3066, - [3384] = 3384, - [3385] = 3067, - [3386] = 3047, - [3387] = 3068, - [3388] = 3388, - [3389] = 3070, - [3390] = 3071, - [3391] = 3046, - [3392] = 3075, - [3393] = 3077, - [3394] = 3394, - [3395] = 3083, - [3396] = 3082, - [3397] = 3397, - [3398] = 3398, - [3399] = 3079, - [3400] = 3400, - [3401] = 3080, - [3402] = 3081, - [3403] = 3082, - [3404] = 3083, - [3405] = 3405, - [3406] = 3406, - [3407] = 3087, - [3408] = 3088, - [3409] = 3345, - [3410] = 3340, - [3411] = 3411, - [3412] = 3093, - [3413] = 3094, - [3414] = 3095, - [3415] = 3039, - [3416] = 3080, - [3417] = 3101, - [3418] = 3079, - [3419] = 3234, - [3420] = 3420, - [3421] = 3102, - [3422] = 3103, - [3423] = 3111, - [3424] = 3096, - [3425] = 3105, + [3301] = 3146, + [3302] = 3302, + [3303] = 3148, + [3304] = 3149, + [3305] = 3305, + [3306] = 3151, + [3307] = 3137, + [3308] = 3123, + [3309] = 3132, + [3310] = 3122, + [3311] = 3150, + [3312] = 3124, + [3313] = 3313, + [3314] = 3314, + [3315] = 3315, + [3316] = 3316, + [3317] = 3125, + [3318] = 3160, + [3319] = 3087, + [3320] = 3320, + [3321] = 3083, + [3322] = 3322, + [3323] = 3323, + [3324] = 3063, + [3325] = 3121, + [3326] = 3065, + [3327] = 3120, + [3328] = 3070, + [3329] = 3329, + [3330] = 3061, + [3331] = 3119, + [3332] = 3118, + [3333] = 3105, + [3334] = 3106, + [3335] = 3107, + [3336] = 3108, + [3337] = 3109, + [3338] = 3110, + [3339] = 3111, + [3340] = 3112, + [3341] = 3113, + [3342] = 3065, + [3343] = 3114, + [3344] = 3063, + [3345] = 3115, + [3346] = 3116, + [3347] = 3347, + [3348] = 3348, + [3349] = 3118, + [3350] = 3119, + [3351] = 4, + [3352] = 3352, + [3353] = 3353, + [3354] = 8, + [3355] = 3120, + [3356] = 867, + [3357] = 1066, + [3358] = 1065, + [3359] = 1064, + [3360] = 1007, + [3361] = 1062, + [3362] = 3121, + [3363] = 3363, + [3364] = 3122, + [3365] = 1061, + [3366] = 1060, + [3367] = 1059, + [3368] = 1058, + [3369] = 3123, + [3370] = 3125, + [3371] = 3126, + [3372] = 1056, + [3373] = 1055, + [3374] = 1052, + [3375] = 1051, + [3376] = 3376, + [3377] = 3377, + [3378] = 1050, + [3379] = 3128, + [3380] = 1038, + [3381] = 3129, + [3382] = 1028, + [3383] = 3265, + [3384] = 3130, + [3385] = 3131, + [3386] = 3116, + [3387] = 906, + [3388] = 1002, + [3389] = 997, + [3390] = 993, + [3391] = 990, + [3392] = 844, + [3393] = 983, + [3394] = 955, + [3395] = 3133, + [3396] = 950, + [3397] = 941, + [3398] = 932, + [3399] = 931, + [3400] = 930, + [3401] = 929, + [3402] = 3115, + [3403] = 3403, + [3404] = 922, + [3405] = 908, + [3406] = 3160, + [3407] = 3135, + [3408] = 907, + [3409] = 988, + [3410] = 845, + [3411] = 846, + [3412] = 847, + [3413] = 3114, + [3414] = 848, + [3415] = 850, + [3416] = 3136, + [3417] = 851, + [3418] = 3113, + [3419] = 3227, + [3420] = 852, + [3421] = 853, + [3422] = 854, + [3423] = 855, + [3424] = 3424, + [3425] = 3425, [3426] = 3426, - [3427] = 3427, - [3428] = 3428, - [3429] = 3057, - [3430] = 3430, - [3431] = 3431, - [3432] = 3109, - [3433] = 3046, - [3434] = 3434, - [3435] = 3107, - [3436] = 3398, - [3437] = 3108, - [3438] = 3438, - [3439] = 3098, + [3427] = 856, + [3428] = 3139, + [3429] = 857, + [3430] = 858, + [3431] = 859, + [3432] = 860, + [3433] = 861, + [3434] = 3140, + [3435] = 862, + [3436] = 863, + [3437] = 864, + [3438] = 865, + [3439] = 883, [3440] = 3440, - [3441] = 3441, - [3442] = 3085, - [3443] = 3443, - [3444] = 3084, - [3445] = 3078, - [3446] = 3446, - [3447] = 3447, - [3448] = 3048, - [3449] = 3449, - [3450] = 3081, - [3451] = 3056, - [3452] = 3055, + [3441] = 3141, + [3442] = 873, + [3443] = 874, + [3444] = 3103, + [3445] = 3445, + [3446] = 875, + [3447] = 876, + [3448] = 877, + [3449] = 878, + [3450] = 879, + [3451] = 880, + [3452] = 3101, [3453] = 3453, - [3454] = 3454, - [3455] = 3077, - [3456] = 3075, - [3457] = 3457, - [3458] = 3339, - [3459] = 3040, - [3460] = 3042, - [3461] = 3071, - [3462] = 3462, - [3463] = 3045, - [3464] = 3070, - [3465] = 3058, + [3454] = 843, + [3455] = 3455, + [3456] = 965, + [3457] = 884, + [3458] = 3142, + [3459] = 885, + [3460] = 3143, + [3461] = 3144, + [3462] = 886, + [3463] = 887, + [3464] = 888, + [3465] = 889, [3466] = 3466, - [3467] = 3059, - [3468] = 3468, - [3469] = 3136, - [3470] = 3470, - [3471] = 3060, - [3472] = 3472, - [3473] = 3473, - [3474] = 3474, - [3475] = 3398, - [3476] = 3046, - [3477] = 3477, - [3478] = 11, - [3479] = 3050, - [3480] = 3052, - [3481] = 3481, - [3482] = 3482, - [3483] = 3054, - [3484] = 3076, - [3485] = 3398, - [3486] = 3486, - [3487] = 3487, - [3488] = 3420, - [3489] = 3047, - [3490] = 3067, - [3491] = 3486, - [3492] = 3216, - [3493] = 3493, + [3467] = 890, + [3468] = 891, + [3469] = 893, + [3470] = 894, + [3471] = 3146, + [3472] = 3148, + [3473] = 882, + [3474] = 3147, + [3475] = 3149, + [3476] = 897, + [3477] = 898, + [3478] = 3112, + [3479] = 899, + [3480] = 900, + [3481] = 901, + [3482] = 902, + [3483] = 3058, + [3484] = 3111, + [3485] = 903, + [3486] = 3110, + [3487] = 904, + [3488] = 3109, + [3489] = 896, + [3490] = 3151, + [3491] = 870, + [3492] = 869, + [3493] = 868, [3494] = 3494, - [3495] = 3398, - [3496] = 3496, - [3497] = 3050, - [3498] = 3338, - [3499] = 3499, - [3500] = 3394, - [3501] = 3066, - [3502] = 3038, + [3495] = 866, + [3496] = 917, + [3497] = 3497, + [3498] = 918, + [3499] = 919, + [3500] = 920, + [3501] = 921, + [3502] = 946, [3503] = 3503, - [3504] = 3504, - [3505] = 3505, - [3506] = 3506, - [3507] = 3507, + [3504] = 947, + [3505] = 3137, + [3506] = 948, + [3507] = 949, [3508] = 3508, - [3509] = 3509, - [3510] = 3068, - [3511] = 3420, - [3512] = 3061, - [3513] = 3076, - [3514] = 3062, - [3515] = 3515, - [3516] = 3076, - [3517] = 3486, - [3518] = 3420, - [3519] = 3052, - [3520] = 3063, - [3521] = 3052, - [3522] = 3054, - [3523] = 3064, - [3524] = 3524, - [3525] = 3525, + [3509] = 3132, + [3510] = 962, + [3511] = 3511, + [3512] = 3512, + [3513] = 3513, + [3514] = 3150, + [3515] = 3124, + [3516] = 3108, + [3517] = 3147, + [3518] = 3087, + [3519] = 1179, + [3520] = 3107, + [3521] = 3106, + [3522] = 3147, + [3523] = 3523, + [3524] = 3083, + [3525] = 1006, [3526] = 3526, - [3527] = 3486, - [3528] = 3420, - [3529] = 3052, - [3530] = 3486, - [3531] = 3076, - [3532] = 3532, - [3533] = 3533, - [3534] = 3534, - [3535] = 3535, + [3527] = 3527, + [3528] = 3033, + [3529] = 3529, + [3530] = 3403, + [3531] = 3070, + [3532] = 3329, + [3533] = 3061, + [3534] = 3302, + [3535] = 3105, [3536] = 3536, [3537] = 3537, [3538] = 3538, [3539] = 3539, - [3540] = 3540, - [3541] = 3541, - [3542] = 3542, + [3540] = 2962, + [3541] = 3065, + [3542] = 3063, [3543] = 3543, - [3544] = 3544, - [3545] = 3545, - [3546] = 3546, - [3547] = 3547, - [3548] = 3548, - [3549] = 3549, + [3544] = 3138, + [3545] = 3147, + [3546] = 3170, + [3547] = 3065, + [3548] = 1560, + [3549] = 3063, [3550] = 3550, - [3551] = 3540, + [3551] = 2930, [3552] = 3552, - [3553] = 3547, - [3554] = 3547, + [3553] = 3553, + [3554] = 3554, [3555] = 3555, [3556] = 3556, [3557] = 3557, @@ -6856,526 +6856,526 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3561] = 3561, [3562] = 3562, [3563] = 3563, - [3564] = 3564, + [3564] = 3552, [3565] = 3565, [3566] = 3566, - [3567] = 3561, + [3567] = 3567, [3568] = 3568, - [3569] = 3540, - [3570] = 3534, + [3569] = 3569, + [3570] = 3570, [3571] = 3571, [3572] = 3572, [3573] = 3573, - [3574] = 3574, + [3574] = 3552, [3575] = 3575, - [3576] = 3576, + [3576] = 3015, [3577] = 3577, - [3578] = 3559, - [3579] = 3576, + [3578] = 3578, + [3579] = 3562, [3580] = 3580, [3581] = 3581, [3582] = 3582, - [3583] = 3547, - [3584] = 3552, - [3585] = 3585, - [3586] = 3552, + [3583] = 3583, + [3584] = 3584, + [3585] = 3555, + [3586] = 3586, [3587] = 3587, - [3588] = 3552, - [3589] = 3552, + [3588] = 3588, + [3589] = 3554, [3590] = 3590, [3591] = 3591, [3592] = 3592, [3593] = 3593, - [3594] = 3594, - [3595] = 3564, - [3596] = 3547, - [3597] = 3552, + [3594] = 2945, + [3595] = 3595, + [3596] = 3578, + [3597] = 3580, [3598] = 3598, [3599] = 3599, - [3600] = 3538, - [3601] = 3577, - [3602] = 3602, - [3603] = 3547, - [3604] = 3591, - [3605] = 3592, - [3606] = 3547, - [3607] = 3547, + [3600] = 3600, + [3601] = 3601, + [3602] = 3569, + [3603] = 3552, + [3604] = 3569, + [3605] = 3605, + [3606] = 3606, + [3607] = 3569, [3608] = 3608, - [3609] = 3609, + [3609] = 3569, [3610] = 3610, - [3611] = 3537, - [3612] = 3612, - [3613] = 3593, - [3614] = 3539, - [3615] = 3615, - [3616] = 3547, - [3617] = 3617, - [3618] = 3564, - [3619] = 3619, - [3620] = 3552, - [3621] = 3532, + [3611] = 3611, + [3612] = 3592, + [3613] = 3613, + [3614] = 3580, + [3615] = 16, + [3616] = 3552, + [3617] = 3578, + [3618] = 3562, + [3619] = 3606, + [3620] = 3575, + [3621] = 3621, [3622] = 3622, - [3623] = 3623, - [3624] = 3538, - [3625] = 3591, - [3626] = 3626, - [3627] = 3627, - [3628] = 3568, - [3629] = 3629, - [3630] = 3592, - [3631] = 3556, + [3623] = 3552, + [3624] = 3569, + [3625] = 3558, + [3626] = 3552, + [3627] = 3552, + [3628] = 3599, + [3629] = 3592, + [3630] = 3606, + [3631] = 3557, [3632] = 3632, - [3633] = 3593, - [3634] = 3634, - [3635] = 3635, - [3636] = 3580, - [3637] = 3557, - [3638] = 3558, + [3633] = 3633, + [3634] = 3559, + [3635] = 3610, + [3636] = 3593, + [3637] = 3611, + [3638] = 3613, [3639] = 3639, - [3640] = 3615, - [3641] = 3564, + [3640] = 3640, + [3641] = 3641, [3642] = 3642, - [3643] = 3552, - [3644] = 3538, - [3645] = 3645, - [3646] = 3646, - [3647] = 3647, - [3648] = 3560, + [3643] = 3613, + [3644] = 3644, + [3645] = 3575, + [3646] = 3590, + [3647] = 3569, + [3648] = 3583, [3649] = 3649, - [3650] = 3543, - [3651] = 3651, - [3652] = 3652, - [3653] = 3653, - [3654] = 3565, - [3655] = 3645, - [3656] = 3565, - [3657] = 3543, - [3658] = 3561, + [3650] = 3558, + [3651] = 3610, + [3652] = 3586, + [3653] = 3611, + [3654] = 3613, + [3655] = 3550, + [3656] = 3588, + [3657] = 3582, + [3658] = 3658, [3659] = 3659, - [3660] = 3660, - [3661] = 3591, - [3662] = 3662, + [3660] = 3608, + [3661] = 3575, + [3662] = 3577, [3663] = 3663, - [3664] = 3664, - [3665] = 3592, - [3666] = 3646, - [3667] = 3571, + [3664] = 3569, + [3665] = 3639, + [3666] = 3640, + [3667] = 3558, [3668] = 3668, - [3669] = 3593, - [3670] = 3581, - [3671] = 3582, - [3672] = 3672, - [3673] = 3673, - [3674] = 3593, + [3669] = 3553, + [3670] = 3573, + [3671] = 3550, + [3672] = 3658, + [3673] = 3663, + [3674] = 3572, [3675] = 3675, - [3676] = 3585, - [3677] = 3564, + [3676] = 3571, + [3677] = 3599, [3678] = 3552, - [3679] = 3538, + [3679] = 283, [3680] = 3680, - [3681] = 3651, - [3682] = 3576, - [3683] = 3577, - [3684] = 3615, - [3685] = 3673, - [3686] = 3686, + [3681] = 3593, + [3682] = 3610, + [3683] = 3683, + [3684] = 3684, + [3685] = 3611, + [3686] = 3613, [3687] = 3687, - [3688] = 3582, - [3689] = 3615, + [3688] = 3680, + [3689] = 3683, [3690] = 3690, - [3691] = 3590, + [3691] = 3691, [3692] = 3692, [3693] = 3693, - [3694] = 3535, - [3695] = 3695, - [3696] = 3585, - [3697] = 3673, + [3694] = 3694, + [3695] = 3575, + [3696] = 3696, + [3697] = 3684, [3698] = 3698, - [3699] = 3699, + [3699] = 3570, [3700] = 3700, - [3701] = 3701, - [3702] = 3615, + [3701] = 3569, + [3702] = 3558, [3703] = 3703, - [3704] = 3590, + [3704] = 3704, [3705] = 3705, - [3706] = 3598, - [3707] = 3707, - [3708] = 3708, + [3706] = 284, + [3707] = 3608, + [3708] = 3553, [3709] = 3709, - [3710] = 3653, - [3711] = 3711, + [3710] = 3568, + [3711] = 3567, [3712] = 3712, [3713] = 3713, - [3714] = 3714, - [3715] = 3715, - [3716] = 3716, + [3714] = 3693, + [3715] = 3566, + [3716] = 3577, [3717] = 3717, - [3718] = 3599, - [3719] = 3719, - [3720] = 3609, + [3718] = 3565, + [3719] = 3561, + [3720] = 3720, [3721] = 3721, - [3722] = 3532, - [3723] = 3716, - [3724] = 3724, - [3725] = 3725, - [3726] = 3717, - [3727] = 3727, - [3728] = 3652, - [3729] = 3642, - [3730] = 3571, - [3731] = 3660, + [3722] = 3608, + [3723] = 3693, + [3724] = 3556, + [3725] = 3611, + [3726] = 3608, + [3727] = 3595, + [3728] = 3600, + [3729] = 3590, + [3730] = 3730, + [3731] = 3731, [3732] = 3732, - [3733] = 3703, - [3734] = 3663, - [3735] = 3735, - [3736] = 3542, - [3737] = 3715, - [3738] = 3695, - [3739] = 3739, - [3740] = 3707, - [3741] = 3649, - [3742] = 3560, - [3743] = 3559, - [3744] = 3664, + [3733] = 3733, + [3734] = 3553, + [3735] = 24, + [3736] = 3736, + [3737] = 3737, + [3738] = 3554, + [3739] = 3642, + [3740] = 3586, + [3741] = 3693, + [3742] = 3742, + [3743] = 3659, + [3744] = 3744, [3745] = 3745, - [3746] = 3549, + [3746] = 3668, [3747] = 3747, [3748] = 3748, - [3749] = 3749, - [3750] = 3750, - [3751] = 3751, + [3749] = 3691, + [3750] = 3694, + [3751] = 3698, [3752] = 3752, [3753] = 3753, - [3754] = 3754, + [3754] = 3700, [3755] = 3755, - [3756] = 3675, - [3757] = 3659, - [3758] = 3672, - [3759] = 3759, - [3760] = 3592, + [3756] = 3756, + [3757] = 3573, + [3758] = 3758, + [3759] = 3705, + [3760] = 3760, [3761] = 3761, [3762] = 3762, - [3763] = 3763, - [3764] = 3695, + [3763] = 3709, + [3764] = 3610, [3765] = 3765, - [3766] = 3672, + [3766] = 3730, [3767] = 3767, - [3768] = 3540, - [3769] = 3598, - [3770] = 3708, - [3771] = 3659, - [3772] = 3673, - [3773] = 3599, - [3774] = 3555, - [3775] = 3716, - [3776] = 3763, - [3777] = 3762, - [3778] = 3752, - [3779] = 3556, - [3780] = 3751, - [3781] = 3719, - [3782] = 3782, - [3783] = 3783, - [3784] = 3784, - [3785] = 3750, - [3786] = 3749, - [3787] = 3717, - [3788] = 3715, - [3789] = 3789, - [3790] = 3790, - [3791] = 3609, + [3768] = 3768, + [3769] = 3769, + [3770] = 3770, + [3771] = 3771, + [3772] = 3772, + [3773] = 3554, + [3774] = 3712, + [3775] = 3731, + [3776] = 3776, + [3777] = 3713, + [3778] = 3778, + [3779] = 3779, + [3780] = 3780, + [3781] = 3781, + [3782] = 3737, + [3783] = 3563, + [3784] = 3779, + [3785] = 3772, + [3786] = 3745, + [3787] = 3752, + [3788] = 3771, + [3789] = 3582, + [3790] = 3770, + [3791] = 3762, [3792] = 3792, - [3793] = 3619, - [3794] = 3680, - [3795] = 3795, - [3796] = 3747, - [3797] = 3649, - [3798] = 3707, - [3799] = 3799, + [3793] = 3769, + [3794] = 3794, + [3795] = 3765, + [3796] = 3768, + [3797] = 3767, + [3798] = 3798, + [3799] = 3748, [3800] = 3800, - [3801] = 3558, - [3802] = 3557, - [3803] = 3642, - [3804] = 3612, - [3805] = 3591, - [3806] = 3602, - [3807] = 3675, - [3808] = 3703, - [3809] = 3532, - [3810] = 3687, - [3811] = 3609, - [3812] = 3812, - [3813] = 3581, - [3814] = 3713, - [3815] = 3747, - [3816] = 3816, - [3817] = 3817, - [3818] = 3712, - [3819] = 3692, - [3820] = 3820, - [3821] = 3599, - [3822] = 3575, - [3823] = 3693, - [3824] = 3701, - [3825] = 3700, - [3826] = 3562, - [3827] = 3619, - [3828] = 3612, - [3829] = 3829, - [3830] = 3590, - [3831] = 3831, - [3832] = 3832, - [3833] = 3563, - [3834] = 3834, - [3835] = 3829, - [3836] = 3680, - [3837] = 3585, + [3801] = 3801, + [3802] = 3780, + [3803] = 3720, + [3804] = 3804, + [3805] = 3778, + [3806] = 3778, + [3807] = 3780, + [3808] = 3779, + [3809] = 3721, + [3810] = 3748, + [3811] = 3811, + [3812] = 3765, + [3813] = 3813, + [3814] = 3553, + [3815] = 3779, + [3816] = 3760, + [3817] = 3748, + [3818] = 3554, + [3819] = 3819, + [3820] = 3733, + [3821] = 3821, + [3822] = 3732, + [3823] = 3554, + [3824] = 3591, + [3825] = 3825, + [3826] = 3826, + [3827] = 3780, + [3828] = 3747, + [3829] = 3721, + [3830] = 12, + [3831] = 3698, + [3832] = 3691, + [3833] = 3659, + [3834] = 3720, + [3835] = 3835, + [3836] = 3552, + [3837] = 3778, [3838] = 3838, - [3839] = 3539, + [3839] = 3765, [3840] = 3840, - [3841] = 3841, - [3842] = 3673, - [3843] = 3602, - [3844] = 3700, - [3845] = 3845, - [3846] = 3566, - [3847] = 3572, - [3848] = 3701, - [3849] = 3664, - [3850] = 3663, - [3851] = 3851, - [3852] = 3572, - [3853] = 3840, - [3854] = 3582, - [3855] = 3855, - [3856] = 3566, - [3857] = 3581, - [3858] = 3580, - [3859] = 3652, - [3860] = 3651, - [3861] = 3615, - [3862] = 3687, - [3863] = 3563, - [3864] = 3577, - [3865] = 3023, - [3866] = 3645, - [3867] = 3646, - [3868] = 3562, - [3869] = 3646, - [3870] = 3645, - [3871] = 3576, - [3872] = 3651, - [3873] = 3652, - [3874] = 3575, - [3875] = 3615, - [3876] = 3574, - [3877] = 3580, - [3878] = 3878, - [3879] = 1648, - [3880] = 3642, - [3881] = 3663, - [3882] = 3664, - [3883] = 3571, - [3884] = 3884, - [3885] = 3533, - [3886] = 3732, - [3887] = 3561, - [3888] = 3555, - [3889] = 3649, - [3890] = 3673, - [3891] = 3565, - [3892] = 3892, - [3893] = 3878, - [3894] = 3543, - [3895] = 3539, - [3896] = 3560, - [3897] = 3680, - [3898] = 3572, - [3899] = 2997, - [3900] = 2976, - [3901] = 3754, - [3902] = 3559, - [3903] = 3903, + [3841] = 3698, + [3842] = 3700, + [3843] = 3691, + [3844] = 3762, + [3845] = 3693, + [3846] = 3659, + [3847] = 3732, + [3848] = 3848, + [3849] = 3849, + [3850] = 3587, + [3851] = 3733, + [3852] = 3684, + [3853] = 3683, + [3854] = 3573, + [3855] = 3572, + [3856] = 3856, + [3857] = 3857, + [3858] = 3571, + [3859] = 3559, + [3860] = 3658, + [3861] = 3550, + [3862] = 3752, + [3863] = 3640, + [3864] = 3639, + [3865] = 3608, + [3866] = 3588, + [3867] = 3867, + [3868] = 3868, + [3869] = 3745, + [3870] = 3737, + [3871] = 3559, + [3872] = 3762, + [3873] = 3552, + [3874] = 3570, + [3875] = 3875, + [3876] = 3747, + [3877] = 3562, + [3878] = 3588, + [3879] = 3659, + [3880] = 3691, + [3881] = 3608, + [3882] = 3578, + [3883] = 3752, + [3884] = 3580, + [3885] = 3592, + [3886] = 3639, + [3887] = 3640, + [3888] = 3745, + [3889] = 3606, + [3890] = 3890, + [3891] = 3552, + [3892] = 3550, + [3893] = 3658, + [3894] = 3894, + [3895] = 3737, + [3896] = 3599, + [3897] = 3593, + [3898] = 3898, + [3899] = 3590, + [3900] = 3698, + [3901] = 3683, + [3902] = 3684, + [3903] = 3747, [3904] = 3904, - [3905] = 3659, - [3906] = 3540, - [3907] = 3558, - [3908] = 3557, - [3909] = 3556, - [3910] = 3789, - [3911] = 3566, - [3912] = 3563, - [3913] = 3549, - [3914] = 3914, - [3915] = 3700, - [3916] = 3701, - [3917] = 3575, + [3905] = 3586, + [3906] = 3906, + [3907] = 3731, + [3908] = 3582, + [3909] = 3717, + [3910] = 3693, + [3911] = 3562, + [3912] = 3912, + [3913] = 3731, + [3914] = 3577, + [3915] = 3760, + [3916] = 3578, + [3917] = 3700, [3918] = 3918, [3919] = 3919, - [3920] = 3542, - [3921] = 3840, + [3920] = 3580, + [3921] = 3921, [3922] = 3922, - [3923] = 3535, - [3924] = 3547, - [3925] = 3712, - [3926] = 3712, - [3927] = 3713, - [3928] = 3832, - [3929] = 3929, - [3930] = 3831, - [3931] = 3703, - [3932] = 3713, - [3933] = 3562, - [3934] = 3934, - [3935] = 3935, - [3936] = 282, - [3937] = 3672, - [3938] = 3598, - [3939] = 3939, - [3940] = 3747, - [3941] = 281, - [3942] = 3942, - [3943] = 3540, - [3944] = 3762, - [3945] = 3762, - [3946] = 3763, - [3947] = 3543, - [3948] = 3840, - [3949] = 3763, - [3950] = 3755, - [3951] = 3602, - [3952] = 3547, - [3953] = 3535, - [3954] = 3549, - [3955] = 3542, - [3956] = 3612, - [3957] = 3556, - [3958] = 3549, - [3959] = 3749, - [3960] = 3750, - [3961] = 3751, - [3962] = 3752, - [3963] = 3557, - [3964] = 3558, - [3965] = 3542, - [3966] = 3752, - [3967] = 3751, - [3968] = 3750, - [3969] = 3749, - [3970] = 3535, - [3971] = 3619, - [3972] = 3559, - [3973] = 3973, - [3974] = 3560, + [3923] = 3572, + [3924] = 3745, + [3925] = 3925, + [3926] = 3554, + [3927] = 3592, + [3928] = 3571, + [3929] = 3767, + [3930] = 3606, + [3931] = 3568, + [3932] = 3768, + [3933] = 3933, + [3934] = 3730, + [3935] = 3720, + [3936] = 3721, + [3937] = 3570, + [3938] = 3568, + [3939] = 3567, + [3940] = 3940, + [3941] = 3933, + [3942] = 3599, + [3943] = 3943, + [3944] = 3944, + [3945] = 3769, + [3946] = 3732, + [3947] = 3733, + [3948] = 3948, + [3949] = 3730, + [3950] = 3748, + [3951] = 3772, + [3952] = 3593, + [3953] = 3771, + [3954] = 3590, + [3955] = 3621, + [3956] = 3956, + [3957] = 3566, + [3958] = 3770, + [3959] = 3586, + [3960] = 3769, + [3961] = 3779, + [3962] = 3770, + [3963] = 3771, + [3964] = 3964, + [3965] = 3567, + [3966] = 3966, + [3967] = 3794, + [3968] = 3772, + [3969] = 3582, + [3970] = 3798, + [3971] = 3565, + [3972] = 3972, + [3973] = 3760, + [3974] = 3577, [3975] = 3975, - [3976] = 3687, - [3977] = 3540, + [3976] = 3780, + [3977] = 3943, [3978] = 3573, - [3979] = 3713, - [3980] = 3565, - [3981] = 3712, - [3982] = 3763, - [3983] = 3762, - [3984] = 3561, + [3979] = 3769, + [3980] = 3770, + [3981] = 3771, + [3982] = 3772, + [3983] = 3572, + [3984] = 3778, [3985] = 3571, - [3986] = 3986, + [3986] = 3566, [3987] = 3987, - [3988] = 3988, + [3988] = 3565, [3989] = 3989, - [3990] = 3576, - [3991] = 3577, - [3992] = 3555, - [3993] = 3581, - [3994] = 3582, - [3995] = 3585, - [3996] = 3695, - [3997] = 3997, - [3998] = 3701, - [3999] = 3747, - [4000] = 3590, - [4001] = 3840, - [4002] = 3598, - [4003] = 3700, - [4004] = 4004, - [4005] = 3599, - [4006] = 3609, - [4007] = 3680, - [4008] = 3767, - [4009] = 3562, - [4010] = 3532, - [4011] = 3703, - [4012] = 3642, - [4013] = 3649, - [4014] = 3675, - [4015] = 3716, - [4016] = 3563, - [4017] = 3659, - [4018] = 3717, - [4019] = 3673, - [4020] = 3672, - [4021] = 4021, - [4022] = 3566, - [4023] = 4023, - [4024] = 3695, - [4025] = 3749, - [4026] = 3664, - [4027] = 4027, - [4028] = 3716, - [4029] = 3717, - [4030] = 3663, - [4031] = 3715, - [4032] = 3761, - [4033] = 3707, - [4034] = 3750, - [4035] = 3572, - [4036] = 3675, - [4037] = 3751, - [4038] = 3555, - [4039] = 4039, - [4040] = 3652, - [4041] = 3715, - [4042] = 3539, - [4043] = 3651, - [4044] = 3619, - [4045] = 3752, - [4046] = 3707, - [4047] = 4047, - [4048] = 3646, - [4049] = 3645, - [4050] = 3612, - [4051] = 3615, - [4052] = 12, - [4053] = 3602, - [4054] = 3687, - [4055] = 4055, - [4056] = 3580, - [4057] = 3547, - [4058] = 3575, + [3990] = 3561, + [3991] = 3991, + [3992] = 3992, + [3993] = 3993, + [3994] = 3570, + [3995] = 3995, + [3996] = 3996, + [3997] = 3765, + [3998] = 3705, + [3999] = 3999, + [4000] = 4000, + [4001] = 3781, + [4002] = 3768, + [4003] = 3767, + [4004] = 3826, + [4005] = 3709, + [4006] = 4006, + [4007] = 3556, + [4008] = 4008, + [4009] = 3733, + [4010] = 3568, + [4011] = 3567, + [4012] = 3732, + [4013] = 4013, + [4014] = 1664, + [4015] = 3762, + [4016] = 3566, + [4017] = 3705, + [4018] = 3694, + [4019] = 3760, + [4020] = 3668, + [4021] = 3565, + [4022] = 3561, + [4023] = 3721, + [4024] = 3991, + [4025] = 3752, + [4026] = 3720, + [4027] = 3992, + [4028] = 4028, + [4029] = 4029, + [4030] = 3556, + [4031] = 3747, + [4032] = 3694, + [4033] = 3737, + [4034] = 4034, + [4035] = 3595, + [4036] = 3561, + [4037] = 3642, + [4038] = 3600, + [4039] = 4028, + [4040] = 3668, + [4041] = 3556, + [4042] = 3731, + [4043] = 4043, + [4044] = 3700, + [4045] = 3642, + [4046] = 4046, + [4047] = 3595, + [4048] = 3693, + [4049] = 4049, + [4050] = 3595, + [4051] = 4051, + [4052] = 3600, + [4053] = 3730, + [4054] = 3684, + [4055] = 3683, + [4056] = 4056, + [4057] = 3709, + [4058] = 4058, [4059] = 4059, [4060] = 4060, - [4061] = 4061, - [4062] = 4062, + [4061] = 3705, + [4062] = 3559, [4063] = 4063, [4064] = 4064, - [4065] = 4065, - [4066] = 4066, - [4067] = 4067, - [4068] = 4068, + [4065] = 3709, + [4066] = 3658, + [4067] = 3694, + [4068] = 3600, [4069] = 4069, - [4070] = 4070, - [4071] = 4071, - [4072] = 4072, - [4073] = 4073, - [4074] = 4074, - [4075] = 4075, - [4076] = 4076, - [4077] = 4077, - [4078] = 4078, + [4070] = 3668, + [4071] = 3767, + [4072] = 3768, + [4073] = 3642, + [4074] = 3588, + [4075] = 3608, + [4076] = 4029, + [4077] = 3639, + [4078] = 3640, [4079] = 4079, [4080] = 4080, - [4081] = 4059, + [4081] = 4081, [4082] = 4082, - [4083] = 4073, + [4083] = 4083, [4084] = 4084, [4085] = 4085, [4086] = 4086, @@ -7384,17 +7384,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4089] = 4089, [4090] = 4090, [4091] = 4091, - [4092] = 4082, - [4093] = 4084, + [4092] = 4092, + [4093] = 4093, [4094] = 4094, - [4095] = 4095, - [4096] = 4075, - [4097] = 4059, + [4095] = 4081, + [4096] = 4096, + [4097] = 4097, [4098] = 4098, - [4099] = 4099, + [4099] = 4082, [4100] = 4100, [4101] = 4101, - [4102] = 4102, + [4102] = 4079, [4103] = 4103, [4104] = 4104, [4105] = 4105, @@ -7403,614 +7403,634 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4108] = 4108, [4109] = 4109, [4110] = 4110, - [4111] = 4111, + [4111] = 4084, [4112] = 4112, - [4113] = 4113, + [4113] = 4080, [4114] = 4114, [4115] = 4115, [4116] = 4116, [4117] = 4117, - [4118] = 4087, - [4119] = 4119, + [4118] = 4118, + [4119] = 4081, [4120] = 4120, [4121] = 4121, [4122] = 4122, - [4123] = 4123, + [4123] = 4084, [4124] = 4124, [4125] = 4125, [4126] = 4126, - [4127] = 4127, - [4128] = 4128, + [4127] = 4082, + [4128] = 4117, [4129] = 4129, [4130] = 4130, [4131] = 4131, [4132] = 4132, - [4133] = 4133, + [4133] = 4079, [4134] = 4134, [4135] = 4135, [4136] = 4136, [4137] = 4137, [4138] = 4138, [4139] = 4139, - [4140] = 4077, + [4140] = 4140, [4141] = 4141, [4142] = 4142, [4143] = 4143, [4144] = 4144, - [4145] = 4145, - [4146] = 4146, - [4147] = 4144, - [4148] = 4080, - [4149] = 4149, + [4145] = 4117, + [4146] = 4144, + [4147] = 4147, + [4148] = 4148, + [4149] = 4143, [4150] = 4150, - [4151] = 4060, + [4151] = 4151, [4152] = 4152, [4153] = 4153, - [4154] = 4075, - [4155] = 4070, - [4156] = 4069, - [4157] = 4157, - [4158] = 4146, + [4154] = 4154, + [4155] = 4155, + [4156] = 4156, + [4157] = 4138, + [4158] = 4158, [4159] = 4159, - [4160] = 4076, + [4160] = 4160, [4161] = 4161, - [4162] = 4162, + [4162] = 4104, [4163] = 4163, [4164] = 4164, [4165] = 4165, [4166] = 4166, [4167] = 4167, [4168] = 4168, - [4169] = 4145, - [4170] = 4066, - [4171] = 4063, + [4169] = 4137, + [4170] = 4159, + [4171] = 4171, [4172] = 4172, - [4173] = 4076, - [4174] = 4075, + [4173] = 4173, + [4174] = 4105, [4175] = 4175, - [4176] = 4068, - [4177] = 4090, - [4178] = 4159, - [4179] = 4143, - [4180] = 4079, - [4181] = 4181, - [4182] = 4113, - [4183] = 4157, + [4176] = 4104, + [4177] = 4177, + [4178] = 4178, + [4179] = 4179, + [4180] = 4168, + [4181] = 4166, + [4182] = 4165, + [4183] = 4163, [4184] = 4184, - [4185] = 4114, - [4186] = 4080, - [4187] = 4144, - [4188] = 4146, - [4189] = 4152, - [4190] = 4145, - [4191] = 4150, - [4192] = 4192, - [4193] = 4138, - [4194] = 4133, + [4185] = 4185, + [4186] = 4154, + [4187] = 4112, + [4188] = 4152, + [4189] = 4189, + [4190] = 4148, + [4191] = 4191, + [4192] = 4105, + [4193] = 4159, + [4194] = 4137, [4195] = 4195, - [4196] = 4137, - [4197] = 4131, - [4198] = 4136, - [4199] = 4199, - [4200] = 4122, - [4201] = 4119, - [4202] = 4143, - [4203] = 43, - [4204] = 4110, - [4205] = 4205, - [4206] = 4136, - [4207] = 4137, - [4208] = 4103, - [4209] = 4138, - [4210] = 4134, - [4211] = 4114, - [4212] = 4132, - [4213] = 4150, - [4214] = 4134, - [4215] = 4113, - [4216] = 4152, - [4217] = 4132, - [4218] = 4130, - [4219] = 4157, - [4220] = 4079, - [4221] = 4221, - [4222] = 4159, - [4223] = 4221, - [4224] = 4068, - [4225] = 4066, - [4226] = 4120, - [4227] = 4115, - [4228] = 4228, + [4196] = 4179, + [4197] = 4197, + [4198] = 4140, + [4199] = 4112, + [4200] = 4200, + [4201] = 4201, + [4202] = 4202, + [4203] = 4080, + [4204] = 4204, + [4205] = 4189, + [4206] = 4135, + [4207] = 4207, + [4208] = 4132, + [4209] = 4209, + [4210] = 4210, + [4211] = 4211, + [4212] = 4212, + [4213] = 4213, + [4214] = 4214, + [4215] = 4215, + [4216] = 4216, + [4217] = 4217, + [4218] = 4218, + [4219] = 4219, + [4220] = 4144, + [4221] = 4143, + [4222] = 4121, + [4223] = 4118, + [4224] = 4122, + [4225] = 4225, + [4226] = 4226, + [4227] = 4227, + [4228] = 4115, [4229] = 4229, - [4230] = 4230, - [4231] = 1250, - [4232] = 4112, - [4233] = 4089, - [4234] = 4181, - [4235] = 4235, - [4236] = 4144, - [4237] = 4088, + [4230] = 4125, + [4231] = 4126, + [4232] = 4232, + [4233] = 4080, + [4234] = 4234, + [4235] = 4106, + [4236] = 4236, + [4237] = 4120, [4238] = 4238, - [4239] = 4101, - [4240] = 4133, - [4241] = 4241, + [4239] = 4239, + [4240] = 4240, + [4241] = 4131, [4242] = 4242, - [4243] = 4243, - [4244] = 4244, - [4245] = 4098, - [4246] = 4094, + [4243] = 4122, + [4244] = 4098, + [4245] = 4092, + [4246] = 4168, [4247] = 4247, - [4248] = 4074, - [4249] = 4071, - [4250] = 4110, - [4251] = 4128, - [4252] = 4095, - [4253] = 4131, - [4254] = 4064, - [4255] = 4255, - [4256] = 4062, - [4257] = 4128, - [4258] = 4258, - [4259] = 4061, + [4248] = 4248, + [4249] = 4249, + [4250] = 4125, + [4251] = 4087, + [4252] = 4252, + [4253] = 4085, + [4254] = 4239, + [4255] = 4126, + [4256] = 4240, + [4257] = 4257, + [4258] = 4142, + [4259] = 4252, [4260] = 4086, - [4261] = 1620, - [4262] = 4241, + [4261] = 4166, + [4262] = 4262, [4263] = 4263, - [4264] = 4122, + [4264] = 4165, [4265] = 4265, - [4266] = 4110, - [4267] = 4078, - [4268] = 4065, - [4269] = 4103, - [4270] = 4067, - [4271] = 4119, + [4266] = 4155, + [4267] = 4267, + [4268] = 4096, + [4269] = 4097, + [4270] = 4131, + [4271] = 4136, [4272] = 4272, - [4273] = 4072, - [4274] = 4130, - [4275] = 4072, - [4276] = 4067, - [4277] = 4065, + [4273] = 4273, + [4274] = 4089, + [4275] = 4275, + [4276] = 4163, + [4277] = 4197, [4278] = 4278, - [4279] = 4279, - [4280] = 4263, - [4281] = 4078, - [4282] = 4089, - [4283] = 4061, - [4284] = 4120, + [4279] = 4086, + [4280] = 4280, + [4281] = 4272, + [4282] = 4282, + [4283] = 4257, + [4284] = 4089, [4285] = 4285, - [4286] = 4088, - [4287] = 4287, - [4288] = 4088, - [4289] = 4086, - [4290] = 4089, - [4291] = 4064, + [4286] = 4286, + [4287] = 4273, + [4288] = 4085, + [4289] = 4156, + [4290] = 4087, + [4291] = 4291, [4292] = 4292, - [4293] = 4091, - [4294] = 4071, - [4295] = 4295, - [4296] = 4074, - [4297] = 4228, - [4298] = 4095, - [4299] = 1621, - [4300] = 4115, + [4293] = 4293, + [4294] = 4139, + [4295] = 4092, + [4296] = 4296, + [4297] = 4097, + [4298] = 4096, + [4299] = 4207, + [4300] = 4239, [4301] = 4098, - [4302] = 4172, - [4303] = 4303, - [4304] = 4101, - [4305] = 4305, - [4306] = 4063, - [4307] = 4307, - [4308] = 4308, - [4309] = 4062, - [4310] = 4310, - [4311] = 4311, - [4312] = 4312, - [4313] = 4069, - [4314] = 4070, - [4315] = 4112, - [4316] = 4316, - [4317] = 4060, + [4302] = 4267, + [4303] = 4291, + [4304] = 4154, + [4305] = 4265, + [4306] = 4152, + [4307] = 4286, + [4308] = 4278, + [4309] = 4106, + [4310] = 4275, + [4311] = 4275, + [4312] = 4142, + [4313] = 4278, + [4314] = 4273, + [4315] = 4148, + [4316] = 4286, + [4317] = 4291, [4318] = 4115, - [4319] = 4112, + [4319] = 4319, [4320] = 4320, - [4321] = 4321, + [4321] = 4118, [4322] = 4322, - [4323] = 4120, - [4324] = 4128, - [4325] = 4077, - [4326] = 4326, + [4323] = 4323, + [4324] = 4121, + [4325] = 4325, + [4326] = 4272, [4327] = 4327, - [4328] = 4130, - [4329] = 4062, - [4330] = 4103, - [4331] = 4221, - [4332] = 42, - [4333] = 4333, - [4334] = 4334, + [4328] = 4328, + [4329] = 4329, + [4330] = 4232, + [4331] = 4139, + [4332] = 4155, + [4333] = 4167, + [4334] = 4252, [4335] = 4132, - [4336] = 4336, - [4337] = 4134, - [4338] = 4059, - [4339] = 4339, + [4336] = 4171, + [4337] = 4156, + [4338] = 4135, + [4339] = 4267, [4340] = 4340, - [4341] = 4341, - [4342] = 4342, - [4343] = 4082, - [4344] = 4344, - [4345] = 4345, - [4346] = 4143, - [4347] = 4073, - [4348] = 4145, - [4349] = 4146, - [4350] = 4063, - [4351] = 4080, - [4352] = 4101, - [4353] = 4353, - [4354] = 4069, - [4355] = 4070, - [4356] = 4356, - [4357] = 4357, - [4358] = 4119, - [4359] = 4122, - [4360] = 4060, - [4361] = 4098, - [4362] = 4084, - [4363] = 4363, - [4364] = 4364, - [4365] = 4258, - [4366] = 4366, + [4341] = 4240, + [4342] = 4265, + [4343] = 4140, + [4344] = 19, + [4345] = 4195, + [4346] = 4232, + [4347] = 4195, + [4348] = 4160, + [4349] = 4349, + [4350] = 4350, + [4351] = 4148, + [4352] = 4352, + [4353] = 4213, + [4354] = 4185, + [4355] = 4152, + [4356] = 4101, + [4357] = 4154, + [4358] = 4213, + [4359] = 4184, + [4360] = 4185, + [4361] = 4101, + [4362] = 4143, + [4363] = 4140, + [4364] = 4144, + [4365] = 4167, + [4366] = 4163, [4367] = 4367, - [4368] = 4077, - [4369] = 4094, - [4370] = 4370, - [4371] = 4095, - [4372] = 4372, - [4373] = 4131, - [4374] = 4133, - [4375] = 4375, - [4376] = 4076, - [4377] = 4075, - [4378] = 4378, - [4379] = 4379, + [4368] = 4165, + [4369] = 4166, + [4370] = 4171, + [4371] = 4168, + [4372] = 4184, + [4373] = 4185, + [4374] = 4374, + [4375] = 4184, + [4376] = 4141, + [4377] = 4377, + [4378] = 4177, + [4379] = 4135, [4380] = 4380, [4381] = 4381, [4382] = 4382, - [4383] = 26, - [4384] = 4087, - [4385] = 4091, - [4386] = 4100, - [4387] = 4181, - [4388] = 4263, - [4389] = 4221, - [4390] = 4090, - [4391] = 4091, - [4392] = 4392, - [4393] = 4393, - [4394] = 4076, - [4395] = 4395, - [4396] = 4396, - [4397] = 4397, - [4398] = 4398, + [4383] = 4171, + [4384] = 4167, + [4385] = 4156, + [4386] = 4155, + [4387] = 4387, + [4388] = 4142, + [4389] = 4101, + [4390] = 4213, + [4391] = 4131, + [4392] = 4129, + [4393] = 4137, + [4394] = 4132, + [4395] = 4159, + [4396] = 4159, + [4397] = 4137, + [4398] = 4126, [4399] = 4399, - [4400] = 4181, - [4401] = 4401, + [4400] = 4171, + [4401] = 4125, [4402] = 4402, [4403] = 4122, - [4404] = 4119, - [4405] = 4082, - [4406] = 4090, - [4407] = 4094, - [4408] = 4086, - [4409] = 4409, - [4410] = 4410, - [4411] = 4073, - [4412] = 4412, + [4404] = 4184, + [4405] = 4185, + [4406] = 4195, + [4407] = 4232, + [4408] = 4257, + [4409] = 4112, + [4410] = 4167, + [4411] = 4411, + [4412] = 4232, [4413] = 4413, - [4414] = 4080, - [4415] = 4087, - [4416] = 4416, - [4417] = 4417, - [4418] = 4255, - [4419] = 4146, - [4420] = 4145, + [4414] = 4414, + [4415] = 4415, + [4416] = 4156, + [4417] = 4155, + [4418] = 4105, + [4419] = 4121, + [4420] = 4104, [4421] = 4421, - [4422] = 4084, - [4423] = 4143, - [4424] = 4424, - [4425] = 4184, - [4426] = 4195, - [4427] = 4427, - [4428] = 4428, + [4422] = 4422, + [4423] = 4144, + [4424] = 4143, + [4425] = 4425, + [4426] = 4426, + [4427] = 4142, + [4428] = 4079, [4429] = 4429, - [4430] = 4430, - [4431] = 4199, - [4432] = 4078, - [4433] = 4134, - [4434] = 4084, - [4435] = 4375, - [4436] = 4132, - [4437] = 4378, - [4438] = 4221, + [4430] = 4168, + [4431] = 4166, + [4432] = 4165, + [4433] = 4118, + [4434] = 4434, + [4435] = 4115, + [4436] = 4163, + [4437] = 4280, + [4438] = 4285, [4439] = 4439, - [4440] = 4440, - [4441] = 4441, - [4442] = 4073, - [4443] = 4443, + [4440] = 4101, + [4441] = 4213, + [4442] = 4265, + [4443] = 4131, [4444] = 4444, - [4445] = 4120, - [4446] = 4065, - [4447] = 4447, - [4448] = 4067, - [4449] = 4449, - [4450] = 4450, - [4451] = 4115, - [4452] = 4087, - [4453] = 4112, - [4454] = 4454, - [4455] = 4065, - [4456] = 4456, - [4457] = 4067, - [4458] = 4447, - [4459] = 4159, - [4460] = 4460, - [4461] = 4082, - [4462] = 4462, - [4463] = 4463, - [4464] = 4067, - [4465] = 4465, - [4466] = 4067, - [4467] = 4138, - [4468] = 4101, + [4445] = 4082, + [4446] = 4296, + [4447] = 4267, + [4448] = 4126, + [4449] = 4154, + [4450] = 4125, + [4451] = 4139, + [4452] = 4081, + [4453] = 46, + [4454] = 4152, + [4455] = 4122, + [4456] = 4291, + [4457] = 4286, + [4458] = 4195, + [4459] = 4080, + [4460] = 4278, + [4461] = 4112, + [4462] = 4275, + [4463] = 4084, + [4464] = 4464, + [4465] = 4148, + [4466] = 4085, + [4467] = 4105, + [4468] = 4087, [4469] = 4469, [4470] = 4470, - [4471] = 4471, - [4472] = 4472, + [4471] = 4117, + [4472] = 4104, [4473] = 4473, - [4474] = 4098, - [4475] = 4475, - [4476] = 4476, - [4477] = 4477, - [4478] = 4478, - [4479] = 4072, - [4480] = 4480, - [4481] = 4449, - [4482] = 4482, - [4483] = 4483, - [4484] = 4095, - [4485] = 4157, - [4486] = 4059, + [4474] = 4474, + [4475] = 4085, + [4476] = 4273, + [4477] = 4087, + [4478] = 4140, + [4479] = 4272, + [4480] = 4135, + [4481] = 4132, + [4482] = 4106, + [4483] = 31, + [4484] = 4087, + [4485] = 4079, + [4486] = 4087, [4487] = 4487, [4488] = 4488, [4489] = 4489, - [4490] = 4091, - [4491] = 4395, - [4492] = 4489, - [4493] = 4487, - [4494] = 4450, - [4495] = 4421, - [4496] = 4416, + [4490] = 4490, + [4491] = 35, + [4492] = 4492, + [4493] = 4493, + [4494] = 4494, + [4495] = 4495, + [4496] = 4496, [4497] = 4497, - [4498] = 4498, - [4499] = 4499, - [4500] = 4086, - [4501] = 4364, + [4498] = 4106, + [4499] = 4121, + [4500] = 4118, + [4501] = 4501, [4502] = 4502, - [4503] = 4345, - [4504] = 4344, - [4505] = 4424, - [4506] = 4295, - [4507] = 4094, - [4508] = 4265, - [4509] = 4078, - [4510] = 4510, - [4511] = 4142, - [4512] = 4072, - [4513] = 4077, + [4503] = 4503, + [4504] = 4115, + [4505] = 4505, + [4506] = 4252, + [4507] = 4507, + [4508] = 4508, + [4509] = 4509, + [4510] = 4473, + [4511] = 4511, + [4512] = 4512, + [4513] = 4513, [4514] = 4514, - [4515] = 4472, - [4516] = 4067, - [4517] = 4475, - [4518] = 4476, - [4519] = 4477, - [4520] = 4067, - [4521] = 4141, - [4522] = 4065, - [4523] = 4065, - [4524] = 4482, - [4525] = 4483, - [4526] = 4526, - [4527] = 4527, - [4528] = 4263, - [4529] = 4488, - [4530] = 4530, - [4531] = 4152, - [4532] = 4532, - [4533] = 4489, - [4534] = 4487, - [4535] = 4421, - [4536] = 4416, - [4537] = 4061, - [4538] = 4538, - [4539] = 4066, + [4515] = 4515, + [4516] = 4509, + [4517] = 4515, + [4518] = 4518, + [4519] = 4519, + [4520] = 4520, + [4521] = 4434, + [4522] = 4139, + [4523] = 4415, + [4524] = 4414, + [4525] = 4525, + [4526] = 4377, + [4527] = 4240, + [4528] = 4349, + [4529] = 4518, + [4530] = 4239, + [4531] = 4238, + [4532] = 4098, + [4533] = 4098, + [4534] = 4092, + [4535] = 4492, + [4536] = 4536, + [4537] = 4495, + [4538] = 4496, + [4539] = 4497, [4540] = 4540, - [4541] = 4064, - [4542] = 4345, - [4543] = 4344, - [4544] = 4060, - [4545] = 4295, - [4546] = 35, - [4547] = 4547, - [4548] = 4472, - [4549] = 4549, - [4550] = 4475, - [4551] = 4476, - [4552] = 4477, - [4553] = 4068, - [4554] = 4071, - [4555] = 4070, - [4556] = 4074, - [4557] = 4482, - [4558] = 4483, - [4559] = 4069, + [4541] = 4541, + [4542] = 4514, + [4543] = 4087, + [4544] = 4502, + [4545] = 4503, + [4546] = 4085, + [4547] = 4082, + [4548] = 4265, + [4549] = 4508, + [4550] = 4550, + [4551] = 4551, + [4552] = 4257, + [4553] = 4512, + [4554] = 4513, + [4555] = 4515, + [4556] = 4509, + [4557] = 4557, + [4558] = 4558, + [4559] = 4092, [4560] = 4560, - [4561] = 4150, - [4562] = 4488, - [4563] = 4138, - [4564] = 4564, - [4565] = 4565, - [4566] = 4489, - [4567] = 4487, - [4568] = 4421, - [4569] = 4416, - [4570] = 4079, - [4571] = 4571, - [4572] = 4063, - [4573] = 4152, - [4574] = 4574, - [4575] = 4345, - [4576] = 4344, - [4577] = 4295, - [4578] = 4062, - [4579] = 4152, - [4580] = 4472, + [4561] = 1191, + [4562] = 4415, + [4563] = 4414, + [4564] = 4081, + [4565] = 4377, + [4566] = 4566, + [4567] = 4086, + [4568] = 4492, + [4569] = 4569, + [4570] = 4495, + [4571] = 4496, + [4572] = 4497, + [4573] = 4267, + [4574] = 4513, + [4575] = 4512, + [4576] = 4576, + [4577] = 4502, + [4578] = 4503, + [4579] = 4089, + [4580] = 4580, [4581] = 4581, - [4582] = 4475, - [4583] = 4476, - [4584] = 4477, - [4585] = 4113, - [4586] = 4586, - [4587] = 4152, - [4588] = 4062, - [4589] = 4482, - [4590] = 4483, - [4591] = 4263, - [4592] = 4114, - [4593] = 4593, - [4594] = 4488, - [4595] = 4136, - [4596] = 4137, - [4597] = 4144, - [4598] = 4489, - [4599] = 4487, - [4600] = 4421, - [4601] = 4416, - [4602] = 4137, - [4603] = 4603, - [4604] = 4604, - [4605] = 4152, + [4582] = 4508, + [4583] = 4583, + [4584] = 4584, + [4585] = 4097, + [4586] = 4512, + [4587] = 4513, + [4588] = 4515, + [4589] = 4509, + [4590] = 4087, + [4591] = 4084, + [4592] = 4085, + [4593] = 4096, + [4594] = 4594, + [4595] = 4415, + [4596] = 4414, + [4597] = 4377, + [4598] = 4117, + [4599] = 4599, + [4600] = 4492, + [4601] = 4139, + [4602] = 4495, + [4603] = 4496, + [4604] = 4497, + [4605] = 4605, [4606] = 4606, - [4607] = 4345, - [4608] = 4344, - [4609] = 4295, - [4610] = 4150, - [4611] = 4475, - [4612] = 4138, - [4613] = 4138, - [4614] = 4475, - [4615] = 4136, - [4616] = 4616, - [4617] = 4079, - [4618] = 4618, - [4619] = 4150, - [4620] = 4620, - [4621] = 4621, - [4622] = 4130, - [4623] = 4623, - [4624] = 4624, - [4625] = 4625, - [4626] = 4061, - [4627] = 4627, - [4628] = 4628, - [4629] = 4498, - [4630] = 4480, - [4631] = 4478, - [4632] = 4469, - [4633] = 4128, - [4634] = 4307, + [4607] = 4139, + [4608] = 4156, + [4609] = 4502, + [4610] = 4503, + [4611] = 4257, + [4612] = 1633, + [4613] = 4613, + [4614] = 4508, + [4615] = 4615, + [4616] = 4156, + [4617] = 4617, + [4618] = 4512, + [4619] = 4513, + [4620] = 4515, + [4621] = 4509, + [4622] = 4195, + [4623] = 4291, + [4624] = 4286, + [4625] = 4139, + [4626] = 4626, + [4627] = 4415, + [4628] = 4414, + [4629] = 4377, + [4630] = 4630, + [4631] = 4495, + [4632] = 4291, + [4633] = 4286, + [4634] = 4495, [4635] = 4635, - [4636] = 4488, - [4637] = 4062, - [4638] = 4062, + [4636] = 4636, + [4637] = 4252, + [4638] = 4638, [4639] = 4639, - [4640] = 4640, - [4641] = 4144, - [4642] = 4088, - [4643] = 4064, - [4644] = 4089, + [4640] = 4252, + [4641] = 4641, + [4642] = 4642, + [4643] = 4643, + [4644] = 4644, [4645] = 4645, - [4646] = 4152, - [4647] = 4114, - [4648] = 4483, - [4649] = 4482, - [4650] = 4090, - [4651] = 4071, - [4652] = 4625, - [4653] = 4074, - [4654] = 4624, - [4655] = 4623, + [4646] = 4278, + [4647] = 4647, + [4648] = 4648, + [4649] = 4581, + [4650] = 4566, + [4651] = 4558, + [4652] = 4557, + [4653] = 4653, + [4654] = 4381, + [4655] = 4156, [4656] = 4656, - [4657] = 4150, - [4658] = 4113, - [4659] = 4477, - [4660] = 4476, - [4661] = 4623, - [4662] = 4624, - [4663] = 4625, - [4664] = 4138, - [4665] = 4103, - [4666] = 4110, - [4667] = 4480, - [4668] = 4478, - [4669] = 4469, - [4670] = 4475, - [4671] = 4079, - [4672] = 4079, - [4673] = 4131, - [4674] = 4133, - [4675] = 4623, - [4676] = 4624, - [4677] = 4625, - [4678] = 4678, - [4679] = 4144, - [4680] = 4181, - [4681] = 4480, - [4682] = 4478, - [4683] = 4469, - [4684] = 4079, + [4657] = 4657, + [4658] = 4275, + [4659] = 4659, + [4660] = 4660, + [4661] = 4661, + [4662] = 4086, + [4663] = 4508, + [4664] = 4195, + [4665] = 4665, + [4666] = 4139, + [4667] = 4667, + [4668] = 4291, + [4669] = 4089, + [4670] = 4670, + [4671] = 4286, + [4672] = 4273, + [4673] = 4503, + [4674] = 4502, + [4675] = 4675, + [4676] = 4097, + [4677] = 4252, + [4678] = 4645, + [4679] = 4096, + [4680] = 4644, + [4681] = 4643, + [4682] = 4644, + [4683] = 4645, + [4684] = 4643, [4685] = 4685, [4686] = 4686, - [4687] = 4687, - [4688] = 4688, - [4689] = 4623, - [4690] = 4624, - [4691] = 4625, - [4692] = 4062, - [4693] = 4068, + [4687] = 4566, + [4688] = 4558, + [4689] = 4557, + [4690] = 4272, + [4691] = 4691, + [4692] = 4497, + [4693] = 4496, [4694] = 4694, - [4695] = 4480, - [4696] = 4478, - [4697] = 4469, - [4698] = 4066, - [4699] = 4564, + [4695] = 4643, + [4696] = 4644, + [4697] = 4645, + [4698] = 4495, + [4699] = 4699, [4700] = 4700, - [4701] = 4144, - [4702] = 4656, - [4703] = 4473, - [4704] = 4604, - [4705] = 4593, - [4706] = 4472, - [4707] = 4707, - [4708] = 4152, - [4709] = 4392, - [4710] = 4470, - [4711] = 4150, - [4712] = 4159, - [4713] = 4157, - [4714] = 4714, - [4715] = 4715, - [4716] = 4716, - [4717] = 4717, - [4718] = 4718, + [4701] = 4566, + [4702] = 4558, + [4703] = 4557, + [4704] = 4704, + [4705] = 4705, + [4706] = 4706, + [4707] = 4252, + [4708] = 4708, + [4709] = 4643, + [4710] = 4644, + [4711] = 4645, + [4712] = 4712, + [4713] = 4713, + [4714] = 4156, + [4715] = 4566, + [4716] = 4558, + [4717] = 4557, + [4718] = 1635, + [4719] = 4240, + [4720] = 4239, + [4721] = 4599, + [4722] = 4685, + [4723] = 4723, + [4724] = 4656, + [4725] = 4195, + [4726] = 4493, + [4727] = 4641, + [4728] = 4492, + [4729] = 4139, + [4730] = 4291, + [4731] = 4464, + [4732] = 4490, + [4733] = 4286, + [4734] = 4734, + [4735] = 4735, + [4736] = 4736, + [4737] = 4737, + [4738] = 4738, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -8018,68 +8038,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(879); - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '&') ADVANCE(903); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '-') ADVANCE(1606); - if (lookahead == '.') ADVANCE(1592); - if (lookahead == '/') ADVANCE(897); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == '?') ADVANCE(1593); - if (lookahead == 'B') ADVANCE(957); - if (lookahead == 'L') ADVANCE(935); - if (lookahead == 'M') ADVANCE(929); - if (lookahead == 'N') ADVANCE(941); - if (lookahead == 'S') ADVANCE(927); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == 'b') ADVANCE(1078); - if (lookahead == 'l') ADVANCE(958); - if (lookahead == 'm') ADVANCE(959); - if (lookahead == 'n') ADVANCE(1081); - if (lookahead == 's') ADVANCE(1083); - if (lookahead == '{') ADVANCE(898); - if (lookahead == '}') ADVANCE(904); + if (eof) ADVANCE(885); + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '&') ADVANCE(909); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1620); + if (lookahead == '.') ADVANCE(1606); + if (lookahead == '/') ADVANCE(903); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == '?') ADVANCE(1607); + if (lookahead == 'B') ADVANCE(967); + if (lookahead == 'L') ADVANCE(944); + if (lookahead == 'M') ADVANCE(937); + if (lookahead == 'N') ADVANCE(950); + if (lookahead == 'S') ADVANCE(935); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == 'b') ADVANCE(1088); + if (lookahead == 'l') ADVANCE(968); + if (lookahead == 'm') ADVANCE(969); + if (lookahead == 'n') ADVANCE(1091); + if (lookahead == 's') ADVANCE(1094); + if (lookahead == '{') ADVANCE(904); + if (lookahead == '}') ADVANCE(910); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1020); + lookahead == 'a') ADVANCE(1030); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(960); + lookahead == 'c') ADVANCE(970); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(968); + lookahead == 'd') ADVANCE(978); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(961); + lookahead == 'e') ADVANCE(971); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1215); + lookahead == 'f') ADVANCE(1228); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1084); + lookahead == 'g') ADVANCE(1095); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1296); + lookahead == 'i') ADVANCE(1309); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1129); + lookahead == 'k') ADVANCE(1141); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1180); + lookahead == 'o') ADVANCE(1193); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(962); + lookahead == 'p') ADVANCE(972); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1539); + lookahead == 'q') ADVANCE(1553); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1035); + lookahead == 'r') ADVANCE(1045); if (lookahead == 'T' || - lookahead == 't') ADVANCE(975); + lookahead == 't') ADVANCE(985); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1313); + lookahead == 'u') ADVANCE(1326); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(978); + lookahead == 'v') ADVANCE(988); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1205); + lookahead == 'w') ADVANCE(1218); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8088,60 +8108,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); case 1: - if (lookahead == '\n') SKIP(26) + if (lookahead == '\n') SKIP(27) END_STATE(); case 2: - if (lookahead == '\n') SKIP(26) + if (lookahead == '\n') SKIP(27) if (lookahead == '\r') SKIP(1) END_STATE(); case 3: - if (lookahead == '\n') SKIP(36) + if (lookahead == '\n') SKIP(38) END_STATE(); case 4: - if (lookahead == '\n') SKIP(36) + if (lookahead == '\n') SKIP(38) if (lookahead == '\r') SKIP(3) END_STATE(); case 5: - if (lookahead == '\n') SKIP(37) + if (lookahead == '\n') SKIP(39) END_STATE(); case 6: - if (lookahead == '\n') SKIP(37) + if (lookahead == '\n') SKIP(39) if (lookahead == '\r') SKIP(5) END_STATE(); case 7: - if (lookahead == '\n') SKIP(38) + if (lookahead == '\n') SKIP(40) END_STATE(); case 8: - if (lookahead == '\n') SKIP(38) + if (lookahead == '\n') SKIP(40) if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '\n') SKIP(44) + if (lookahead == '\n') SKIP(47) END_STATE(); case 10: - if (lookahead == '\n') SKIP(44) + if (lookahead == '\n') SKIP(47) if (lookahead == '\r') SKIP(9) END_STATE(); case 11: - if (lookahead == '\n') SKIP(103) + if (lookahead == '\n') SKIP(109) END_STATE(); case 12: - if (lookahead == '\n') SKIP(103) + if (lookahead == '\n') SKIP(109) if (lookahead == '\r') SKIP(11) END_STATE(); case 13: - if (lookahead == '\n') SKIP(35) - if (lookahead == '\r') ADVANCE(1599); - if (lookahead != 0) ADVANCE(1599); + if (lookahead == '\n') SKIP(37) + if (lookahead == '\r') ADVANCE(1613); + if (lookahead != 0) ADVANCE(1613); END_STATE(); case 14: - if (lookahead == '\n') SKIP(33) - if (lookahead == '\r') ADVANCE(1599); - if (lookahead != 0) ADVANCE(1599); + if (lookahead == '\n') SKIP(35) + if (lookahead == '\r') ADVANCE(1613); + if (lookahead != 0) ADVANCE(1613); END_STATE(); case 15: if (lookahead == '\n') SKIP(21) @@ -8151,33 +8171,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(15) END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(47); + if (lookahead == '\n') ADVANCE(51); if (lookahead == '\r') ADVANCE(18); - if (lookahead == '*') ADVANCE(896); - if (lookahead != 0) ADVANCE(48); + if (lookahead == '*') ADVANCE(902); + if (lookahead != 0) ADVANCE(52); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(47); - if (lookahead == '*') ADVANCE(896); - if (lookahead != 0) ADVANCE(48); + if (lookahead == '\n') ADVANCE(51); + if (lookahead == '*') ADVANCE(902); + if (lookahead != 0) ADVANCE(52); END_STATE(); case 19: - if (lookahead == '\n') SKIP(104) + if (lookahead == '\n') SKIP(110) END_STATE(); case 20: - if (lookahead == '\n') SKIP(104) + if (lookahead == '\n') SKIP(110) if (lookahead == '\r') SKIP(19) - if (lookahead == '.') ADVANCE(144); + if (lookahead == '.') ADVANCE(150); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(92); END_STATE(); case 21: - if (lookahead == ' ') ADVANCE(1775); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '/') ADVANCE(46); + if (lookahead == ' ') ADVANCE(1789); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '/') ADVANCE(50); if (lookahead == '\\') SKIP(16) - if (lookahead == '{') ADVANCE(898); + if (lookahead == '{') ADVANCE(904); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8187,67 +8207,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(21) END_STATE(); case 22: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '&') ADVANCE(903); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '-') ADVANCE(1606); - if (lookahead == '.') ADVANCE(1592); - if (lookahead == '/') ADVANCE(897); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == '?') ADVANCE(1593); - if (lookahead == 'B') ADVANCE(957); - if (lookahead == 'L') ADVANCE(935); - if (lookahead == 'M') ADVANCE(929); - if (lookahead == 'N') ADVANCE(941); - if (lookahead == 'S') ADVANCE(927); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == 'b') ADVANCE(1078); - if (lookahead == 'l') ADVANCE(958); - if (lookahead == 'm') ADVANCE(959); - if (lookahead == 'n') ADVANCE(1081); - if (lookahead == 's') ADVANCE(1083); - if (lookahead == '{') ADVANCE(898); - if (lookahead == '}') ADVANCE(904); + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '&') ADVANCE(909); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1620); + if (lookahead == '.') ADVANCE(1606); + if (lookahead == '/') ADVANCE(903); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == '?') ADVANCE(1607); + if (lookahead == 'B') ADVANCE(967); + if (lookahead == 'L') ADVANCE(944); + if (lookahead == 'M') ADVANCE(937); + if (lookahead == 'N') ADVANCE(950); + if (lookahead == 'S') ADVANCE(935); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == 'b') ADVANCE(1088); + if (lookahead == 'l') ADVANCE(968); + if (lookahead == 'm') ADVANCE(969); + if (lookahead == 'n') ADVANCE(1091); + if (lookahead == 's') ADVANCE(1094); + if (lookahead == '{') ADVANCE(904); + if (lookahead == '}') ADVANCE(910); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1020); + lookahead == 'a') ADVANCE(1030); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(960); + lookahead == 'c') ADVANCE(970); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(968); + lookahead == 'd') ADVANCE(978); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(961); + lookahead == 'e') ADVANCE(971); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1215); + lookahead == 'f') ADVANCE(1228); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1084); + lookahead == 'g') ADVANCE(1095); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1296); + lookahead == 'i') ADVANCE(1309); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1129); + lookahead == 'k') ADVANCE(1141); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1180); + lookahead == 'o') ADVANCE(1193); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(962); + lookahead == 'p') ADVANCE(972); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1539); + lookahead == 'q') ADVANCE(1553); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1035); + lookahead == 'r') ADVANCE(1045); if (lookahead == 'T' || - lookahead == 't') ADVANCE(975); + lookahead == 't') ADVANCE(985); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1313); + lookahead == 'u') ADVANCE(1326); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(978); + lookahead == 'v') ADVANCE(988); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1205); + lookahead == 'w') ADVANCE(1218); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8256,23 +8276,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); case 23: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '&') ADVANCE(1630); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(46); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); - if (lookahead == '}') ADVANCE(904); + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '&') ADVANCE(1644); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(50); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == '}') ADVANCE(910); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8281,38 +8301,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); case 24: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '&') ADVANCE(1630); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(897); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == 'N') ADVANCE(947); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == 'n') ADVANCE(1117); - if (lookahead == '{') ADVANCE(898); - if (lookahead == '}') ADVANCE(904); + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '&') ADVANCE(1644); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == 'N') ADVANCE(956); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == 'n') ADVANCE(1129); + if (lookahead == '{') ADVANCE(904); + if (lookahead == '}') ADVANCE(910); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1089); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1395); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1420); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1130); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1090); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'm') ADVANCE(1004); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8321,36 +8341,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(24); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); case 25: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '&') ADVANCE(1630); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '/') ADVANCE(897); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); - if (lookahead == '}') ADVANCE(904); + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '&') ADVANCE(1644); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == '}') ADVANCE(910); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1089); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1395); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1420); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1130); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1090); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'm') ADVANCE(1004); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1117); + lookahead == 'n') ADVANCE(1129); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8359,102 +8379,139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(25) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); case 26: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(897); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == 'B') ADVANCE(142); - if (lookahead == 'L') ADVANCE(117); - if (lookahead == 'N') ADVANCE(124); - if (lookahead == 'S') ADVANCE(105); + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '&') ADVANCE(1644); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == '}') ADVANCE(910); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1089); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1395); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1420); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1130); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1004); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1128); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(26) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + END_STATE(); + case 27: + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == 'B') ADVANCE(148); + if (lookahead == 'L') ADVANCE(123); + if (lookahead == 'N') ADVANCE(130); + if (lookahead == 'S') ADVANCE(111); if (lookahead == '\\') SKIP(2) - if (lookahead == 'b') ADVANCE(329); - if (lookahead == 'l') ADVANCE(145); - if (lookahead == 'n') ADVANCE(332); - if (lookahead == 's') ADVANCE(337); - if (lookahead == '{') ADVANCE(898); - if (lookahead == '}') ADVANCE(904); + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'l') ADVANCE(151); + if (lookahead == 'n') ADVANCE(338); + if (lookahead == 's') ADVANCE(343); + if (lookahead == '{') ADVANCE(904); + if (lookahead == '}') ADVANCE(910); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(222); + lookahead == 'a') ADVANCE(228); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(146); + lookahead == 'c') ADVANCE(152); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(147); + lookahead == 'd') ADVANCE(153); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(148); + lookahead == 'e') ADVANCE(154); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(456); + lookahead == 'f') ADVANCE(462); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(341); + lookahead == 'g') ADVANCE(347); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(551); + lookahead == 'i') ADVANCE(557); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(352); + lookahead == 'k') ADVANCE(358); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(150); + lookahead == 'm') ADVANCE(156); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(419); + lookahead == 'o') ADVANCE(425); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(151); + lookahead == 'p') ADVANCE(157); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(244); + lookahead == 'r') ADVANCE(250); if (lookahead == 'T' || - lookahead == 't') ADVANCE(161); + lookahead == 't') ADVANCE(167); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(580); + lookahead == 'u') ADVANCE(586); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(619); + lookahead == 'v') ADVANCE(625); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(444); + lookahead == 'w') ADVANCE(450); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(26) + lookahead == 65279) SKIP(27) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); + lookahead == ' ') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); - case 27: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '-') ADVANCE(1606); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '?') ADVANCE(1593); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 28: + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '-') ADVANCE(1620); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '?') ADVANCE(1607); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1563); + lookahead == 'a') ADVANCE(1577); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1382); + lookahead == 'c') ADVANCE(1396); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1346); + lookahead == 'i') ADVANCE(1359); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1019); + lookahead == 'm') ADVANCE(1029); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); + lookahead == 'n') ADVANCE(1139); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1540); + lookahead == 'o') ADVANCE(1554); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1554); + lookahead == 's') ADVANCE(1568); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1388); + lookahead == 't') ADVANCE(1402); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8462,34 +8519,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(27) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(28) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 28: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '-') ADVANCE(1606); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '?') ADVANCE(1593); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 29: + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '-') ADVANCE(1620); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '?') ADVANCE(1607); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1576); + lookahead == 'e') ADVANCE(1590); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); + lookahead == 'i') ADVANCE(1361); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1126); + lookahead == 'n') ADVANCE(1138); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1181); + lookahead == 'o') ADVANCE(1194); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1214); + lookahead == 's') ADVANCE(1227); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1481); + lookahead == 'u') ADVANCE(1495); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1213); + lookahead == 'w') ADVANCE(1226); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8497,26 +8554,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(28) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(29) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 29: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '-') ADVANCE(1606); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '?') ADVANCE(1593); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 30: + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '-') ADVANCE(1620); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '?') ADVANCE(1607); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1346); + lookahead == 'i') ADVANCE(1359); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); + lookahead == 'n') ADVANCE(1139); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1540); + lookahead == 'o') ADVANCE(1554); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8524,126 +8581,168 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(29) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(30) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 30: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == '-') ADVANCE(1606); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(897); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == '?') ADVANCE(1593); - if (lookahead == 'N') ADVANCE(946); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == 'n') ADVANCE(1082); - if (lookahead == '{') ADVANCE(898); + case 31: + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == '-') ADVANCE(1620); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == '?') ADVANCE(1607); + if (lookahead == 'N') ADVANCE(955); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == 'n') ADVANCE(1093); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1089); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1395); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1420); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1130); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); + lookahead == 'i') ADVANCE(1361); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1090); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'm') ADVANCE(1004); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(30) + lookahead == 65279) SKIP(31) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == ' ') ADVANCE(31); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 31: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == '-') ADVANCE(1606); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(897); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == '?') ADVANCE(1593); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 32: + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == '-') ADVANCE(1620); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == '?') ADVANCE(1607); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1089); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1395); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1420); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1130); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); + lookahead == 'i') ADVANCE(1361); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1090); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'm') ADVANCE(1004); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1082); + lookahead == 'n') ADVANCE(1092); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(31) + lookahead == 65279) SKIP(32) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(31); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == ' ') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 32: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == '-') ADVANCE(1606); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(46); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '?') ADVANCE(1593); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 33: + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == '-') ADVANCE(1620); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == '?') ADVANCE(1607); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1089); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1395); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1420); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1130); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); + lookahead == 'i') ADVANCE(1361); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1004); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1127); + lookahead == 'n') ADVANCE(1093); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(32) + lookahead == 65279) SKIP(33) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == ' ') ADVANCE(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 33: - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '/') ADVANCE(1596); + case 34: + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '-') ADVANCE(1620); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(50); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '?') ADVANCE(1607); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1361); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1139); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(34) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(34); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + END_STATE(); + case 35: + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '/') ADVANCE(1610); if (lookahead == '\\') ADVANCE(14); - if (lookahead == '{') ADVANCE(900); + if (lookahead == '{') ADVANCE(906); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8651,14 +8750,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1597); - if (lookahead != 0) ADVANCE(1598); + lookahead == 65279) ADVANCE(1611); + if (lookahead != 0) ADVANCE(1612); END_STATE(); - case 34: - if (lookahead == '&') ADVANCE(903); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 36: + if (lookahead == '&') ADVANCE(909); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8666,15 +8765,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(34) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(36) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 35: - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '/') ADVANCE(1601); + case 37: + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '/') ADVANCE(1615); if (lookahead == '\\') ADVANCE(13); - if (lookahead == '{') ADVANCE(901); + if (lookahead == '{') ADVANCE(907); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8682,210 +8781,210 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1602); - if (lookahead != 0) ADVANCE(1603); + lookahead == 65279) ADVANCE(1616); + if (lookahead != 0) ADVANCE(1617); END_STATE(); - case 36: - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(897); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == 'B') ADVANCE(143); - if (lookahead == 'M') ADVANCE(111); - if (lookahead == 'N') ADVANCE(129); + case 38: + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == 'B') ADVANCE(149); + if (lookahead == 'M') ADVANCE(117); + if (lookahead == 'N') ADVANCE(135); if (lookahead == '\\') SKIP(4) - if (lookahead == 'b') ADVANCE(330); - if (lookahead == 'm') ADVANCE(149); - if (lookahead == 'n') ADVANCE(333); - if (lookahead == '{') ADVANCE(898); + if (lookahead == 'b') ADVANCE(336); + if (lookahead == 'm') ADVANCE(155); + if (lookahead == 'n') ADVANCE(339); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(591); + lookahead == 'a') ADVANCE(597); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(622); + lookahead == 'c') ADVANCE(628); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(365); + lookahead == 'd') ADVANCE(371); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(241); + lookahead == 'e') ADVANCE(247); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(459); + lookahead == 'f') ADVANCE(465); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(341); + lookahead == 'g') ADVANCE(347); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(583); + lookahead == 'i') ADVANCE(589); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(352); + lookahead == 'k') ADVANCE(358); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(153); + lookahead == 'l') ADVANCE(159); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(418); + lookahead == 'o') ADVANCE(424); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(206); + lookahead == 'p') ADVANCE(212); if (lookahead == 'S' || - lookahead == 's') ADVANCE(618); + lookahead == 's') ADVANCE(624); if (lookahead == 'T' || - lookahead == 't') ADVANCE(451); + lookahead == 't') ADVANCE(457); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(587); + lookahead == 'u') ADVANCE(593); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(449); + lookahead == 'w') ADVANCE(455); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(36) + lookahead == 65279) SKIP(38) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(36); + lookahead == ' ') ADVANCE(38); END_STATE(); - case 37: - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(897); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == 'L') ADVANCE(118); - if (lookahead == 'S') ADVANCE(106); + case 39: + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == 'L') ADVANCE(124); + if (lookahead == 'S') ADVANCE(112); if (lookahead == '\\') SKIP(6) - if (lookahead == 'l') ADVANCE(195); - if (lookahead == 's') ADVANCE(338); - if (lookahead == '{') ADVANCE(898); + if (lookahead == 'l') ADVANCE(201); + if (lookahead == 's') ADVANCE(344); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(223); + lookahead == 'a') ADVANCE(229); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(331); + lookahead == 'b') ADVANCE(337); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(208); + lookahead == 'c') ADVANCE(214); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(194); + lookahead == 'd') ADVANCE(200); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(578); + lookahead == 'e') ADVANCE(584); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(498); + lookahead == 'f') ADVANCE(504); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(299); + lookahead == 'g') ADVANCE(305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(552); + lookahead == 'i') ADVANCE(558); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(154); + lookahead == 'm') ADVANCE(160); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(334); + lookahead == 'n') ADVANCE(340); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(418); + lookahead == 'o') ADVANCE(424); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(692); + lookahead == 'p') ADVANCE(698); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(245); + lookahead == 'r') ADVANCE(251); if (lookahead == 'T' || - lookahead == 't') ADVANCE(649); + lookahead == 't') ADVANCE(655); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(741); + lookahead == 'u') ADVANCE(747); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(446); + lookahead == 'w') ADVANCE(452); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(37) + lookahead == 65279) SKIP(39) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(37); + lookahead == ' ') ADVANCE(39); END_STATE(); - case 38: - if (lookahead == '(') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(897); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == 'N') ADVANCE(130); - if (lookahead == 'S') ADVANCE(107); + case 40: + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == 'N') ADVANCE(136); + if (lookahead == 'S') ADVANCE(113); if (lookahead == '\\') SKIP(8) - if (lookahead == 'n') ADVANCE(335); - if (lookahead == 's') ADVANCE(443); - if (lookahead == '{') ADVANCE(898); + if (lookahead == 'n') ADVANCE(341); + if (lookahead == 's') ADVANCE(449); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(331); + lookahead == 'b') ADVANCE(337); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(209); + lookahead == 'c') ADVANCE(215); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(615); + lookahead == 'd') ADVANCE(621); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(674); + lookahead == 'e') ADVANCE(680); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(501); + lookahead == 'f') ADVANCE(507); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(341); + lookahead == 'g') ADVANCE(347); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(298); + lookahead == 'l') ADVANCE(304); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(190); + lookahead == 'm') ADVANCE(196); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(569); + lookahead == 'o') ADVANCE(575); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(841); + lookahead == 'q') ADVANCE(847); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(246); + lookahead == 'r') ADVANCE(252); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(760); + lookahead == 'u') ADVANCE(766); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(38) + lookahead == 65279) SKIP(40) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(38); + lookahead == ' ') ADVANCE(40); END_STATE(); - case 39: - if (lookahead == '(') ADVANCE(1604); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '/') ADVANCE(897); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 41: + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1089); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1395); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); + lookahead == 'd') ADVANCE(1368); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1420); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1452); + lookahead == 'f') ADVANCE(1466); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1130); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1090); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'm') ADVANCE(1004); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1117); + lookahead == 'n') ADVANCE(1129); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8893,20 +8992,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(39) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(41) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 40: - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '/') ADVANCE(46); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 42: + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '/') ADVANCE(50); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1418); + lookahead == 'b') ADVANCE(1432); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1312); + lookahead == 'o') ADVANCE(1325); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8914,40 +9013,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(40) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(42) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 41: - if (lookahead == '(') ADVANCE(1604); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 43: + if (lookahead == '(') ADVANCE(1618); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1245); + lookahead == 'f') ADVANCE(1258); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1352); + lookahead == 'i') ADVANCE(1365); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(41) + lookahead == 65279) SKIP(43) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == ' ') ADVANCE(43); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 42: - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 44: + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1011); + lookahead == 'd') ADVANCE(1021); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); + lookahead == 'i') ADVANCE(1361); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1540); + lookahead == 'o') ADVANCE(1554); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8955,38 +9054,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(42) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(44) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 43: - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '/') ADVANCE(897); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == 'N') ADVANCE(947); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == 'n') ADVANCE(1117); - if (lookahead == '{') ADVANCE(898); + case 45: + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == 'N') ADVANCE(956); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == 'n') ADVANCE(1129); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1079); + lookahead == 'b') ADVANCE(1089); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1381); + lookahead == 'c') ADVANCE(1395); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); + lookahead == 'd') ADVANCE(1368); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1406); + lookahead == 'e') ADVANCE(1420); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1452); + lookahead == 'f') ADVANCE(1466); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1118); + lookahead == 'g') ADVANCE(1130); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1080); + lookahead == 'l') ADVANCE(1090); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(994); + lookahead == 'm') ADVANCE(1004); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8994,44 +9093,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(43) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(45) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 44: - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '.') ADVANCE(1592); - if (lookahead == '/') ADVANCE(897); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == 'N') ADVANCE(131); + case 46: + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1089); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1395); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1368); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1420); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1466); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1130); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1004); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1128); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(46) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + END_STATE(); + case 47: + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '.') ADVANCE(1606); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == 'N') ADVANCE(137); if (lookahead == '\\') SKIP(10) - if (lookahead == 'n') ADVANCE(336); - if (lookahead == '{') ADVANCE(898); + if (lookahead == 'n') ADVANCE(342); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(328); + lookahead == 'b') ADVANCE(334); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(212); + lookahead == 'c') ADVANCE(218); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(340); + lookahead == 'd') ADVANCE(346); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(579); + lookahead == 'e') ADVANCE(585); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(833); + lookahead == 'f') ADVANCE(839); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(299); + lookahead == 'g') ADVANCE(305); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(601); + lookahead == 'i') ADVANCE(607); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(298); + lookahead == 'l') ADVANCE(304); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(191); + lookahead == 'm') ADVANCE(197); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(697); + lookahead == 'p') ADVANCE(703); if (lookahead == 'S' || - lookahead == 's') ADVANCE(395); + lookahead == 's') ADVANCE(401); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9039,25 +9177,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(44) + lookahead == 65279) SKIP(47) END_STATE(); - case 45: - if (lookahead == '*') ADVANCE(891); - if (lookahead == '.') ADVANCE(144); - if (lookahead == '/') ADVANCE(883); + case 48: + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == 'N') ADVANCE(958); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == 'n') ADVANCE(1128); + if (lookahead == '{') ADVANCE(904); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1089); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1395); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1420); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1130); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1090); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1004); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(48) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(48); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + END_STATE(); + case 49: + if (lookahead == '*') ADVANCE(897); + if (lookahead == '.') ADVANCE(150); + if (lookahead == '/') ADVANCE(889); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(92); END_STATE(); - case 46: - if (lookahead == '*') ADVANCE(891); - if (lookahead == '/') ADVANCE(881); + case 50: + if (lookahead == '*') ADVANCE(897); + if (lookahead == '/') ADVANCE(887); END_STATE(); - case 47: - if (lookahead == '*') ADVANCE(896); - if (lookahead == '/') ADVANCE(49); + case 51: + if (lookahead == '*') ADVANCE(902); + if (lookahead == '/') ADVANCE(53); if (lookahead == '\\') ADVANCE(17); - if (lookahead == '{') ADVANCE(899); + if (lookahead == '{') ADVANCE(905); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9065,26 +9238,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(47); - if (lookahead != 0) ADVANCE(48); + lookahead == 65279) ADVANCE(51); + if (lookahead != 0) ADVANCE(52); END_STATE(); - case 48: - if (lookahead == '*') ADVANCE(896); - if (lookahead != 0) ADVANCE(48); + case 52: + if (lookahead == '*') ADVANCE(902); + if (lookahead != 0) ADVANCE(52); END_STATE(); - case 49: - if (lookahead == '*') ADVANCE(892); - if (lookahead == '/') ADVANCE(882); - if (lookahead != 0) ADVANCE(48); + case 53: + if (lookahead == '*') ADVANCE(898); + if (lookahead == '/') ADVANCE(888); + if (lookahead != 0) ADVANCE(52); END_STATE(); - case 50: - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '/') ADVANCE(46); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 54: + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '/') ADVANCE(50); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1432); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1384); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1312); + lookahead == 'o') ADVANCE(1325); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9092,18 +9269,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(50) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(54) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 51: - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1452); + case 55: + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '/') ADVANCE(50); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1325); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9111,187 +9287,227 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(51) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); - END_STATE(); - case 52: - if (lookahead == '-') ADVANCE(110); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(76); - END_STATE(); - case 53: - if (lookahead == '-') ADVANCE(160); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(76); - END_STATE(); - case 54: - if (lookahead == '-') ADVANCE(471); - END_STATE(); - case 55: - if (lookahead == '-') ADVANCE(711); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(381); + lookahead == 65279) SKIP(55) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); case 56: - if (lookahead == '-') ADVANCE(112); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1368); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1466); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(56) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); case 57: - if (lookahead == '-') ADVANCE(254); + if (lookahead == '-') ADVANCE(116); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(81); END_STATE(); case 58: - if (lookahead == '-') ADVANCE(391); + if (lookahead == '-') ADVANCE(166); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(81); END_STATE(); case 59: - if (lookahead == '-') ADVANCE(201); + if (lookahead == '-') ADVANCE(477); END_STATE(); case 60: - if (lookahead == '-') ADVANCE(114); + if (lookahead == '-') ADVANCE(717); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(387); END_STATE(); case 61: - if (lookahead == '-') ADVANCE(392); + if (lookahead == '-') ADVANCE(118); END_STATE(); case 62: - if (lookahead == '-') ADVANCE(113); + if (lookahead == '-') ADVANCE(260); END_STATE(); case 63: - if (lookahead == '-') ADVANCE(255); + if (lookahead == '-') ADVANCE(397); END_STATE(); case 64: - if (lookahead == '-') ADVANCE(283); + if (lookahead == '-') ADVANCE(207); END_STATE(); case 65: - if (lookahead == '-') ADVANCE(423); + if (lookahead == '-') ADVANCE(120); END_STATE(); case 66: - if (lookahead == '-') ADVANCE(527); + if (lookahead == '-') ADVANCE(398); END_STATE(); case 67: - if (lookahead == '-') ADVANCE(663); + if (lookahead == '-') ADVANCE(119); END_STATE(); case 68: - if (lookahead == '-') ADVANCE(531); + if (lookahead == '-') ADVANCE(261); END_STATE(); case 69: - if (lookahead == '-') ADVANCE(164); + if (lookahead == '-') ADVANCE(289); END_STATE(); case 70: - if (lookahead == '-') ADVANCE(824); + if (lookahead == '-') ADVANCE(429); END_STATE(); case 71: - if (lookahead == '-') ADVANCE(824); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(76); + if (lookahead == '-') ADVANCE(533); END_STATE(); case 72: - if (lookahead == '-') ADVANCE(748); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(381); + if (lookahead == '-') ADVANCE(669); END_STATE(); case 73: - if (lookahead == '-') ADVANCE(499); + if (lookahead == '-') ADVANCE(537); END_STATE(); case 74: - if (lookahead == '-') ADVANCE(528); + if (lookahead == '-') ADVANCE(170); END_STATE(); case 75: - if (lookahead == '-') ADVANCE(749); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1728); + if (lookahead == '-') ADVANCE(830); END_STATE(); case 76: - if (lookahead == '-') ADVANCE(759); + if (lookahead == '-') ADVANCE(830); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(81); END_STATE(); case 77: - if (lookahead == '-') ADVANCE(473); + if (lookahead == '-') ADVANCE(754); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(387); END_STATE(); case 78: - if (lookahead == '-') ADVANCE(558); + if (lookahead == '-') ADVANCE(505); END_STATE(); case 79: - if (lookahead == '-') ADVANCE(643); + if (lookahead == '-') ADVANCE(534); END_STATE(); case 80: - if (lookahead == '-') ADVANCE(820); + if (lookahead == '-') ADVANCE(755); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1743); END_STATE(); case 81: - if (lookahead == '-') ADVANCE(710); + if (lookahead == '-') ADVANCE(765); END_STATE(); case 82: - if (lookahead == '-') ADVANCE(470); + if (lookahead == '-') ADVANCE(479); END_STATE(); case 83: - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(46); - if (lookahead == 'N') ADVANCE(948); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + if (lookahead == '-') ADVANCE(564); + END_STATE(); + case 84: + if (lookahead == '-') ADVANCE(649); + END_STATE(); + case 85: + if (lookahead == '-') ADVANCE(826); + END_STATE(); + case 86: + if (lookahead == '-') ADVANCE(716); + END_STATE(); + case 87: + if (lookahead == '-') ADVANCE(476); + END_STATE(); + case 88: + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(50); + if (lookahead == 'N') ADVANCE(957); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(83) + lookahead == 65279) SKIP(88) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(83); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == ' ') ADVANCE(88); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 84: - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 89: + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1459); + lookahead == 'a') ADVANCE(1473); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1245); + lookahead == 'f') ADVANCE(1258); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1352); + lookahead == 'i') ADVANCE(1365); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(84) + lookahead == 65279) SKIP(89) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(84); - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == ' ') ADVANCE(89); + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 85: - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 90: + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1258); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1365); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1384); + if (lookahead == '\f' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(90) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(90); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + END_STATE(); + case 91: + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1560); + lookahead == 'q') ADVANCE(1574); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(85) + lookahead == 65279) SKIP(91) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(85); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == ' ') ADVANCE(91); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 86: - if (lookahead == '.') ADVANCE(144); + case 92: + if (lookahead == '.') ADVANCE(150); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(92); END_STATE(); - case 87: - if (lookahead == '/') ADVANCE(46); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 93: + if (lookahead == '/') ADVANCE(50); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1312); + lookahead == 'o') ADVANCE(1325); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1518); + lookahead == 's') ADVANCE(1532); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1419); + lookahead == 't') ADVANCE(1433); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1207); + lookahead == 'w') ADVANCE(1220); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9299,18 +9515,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(87) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(93) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 88: - if (lookahead == '/') ADVANCE(46); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 94: + if (lookahead == '/') ADVANCE(50); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1312); + lookahead == 'o') ADVANCE(1325); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1207); + lookahead == 'w') ADVANCE(1220); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9318,27 +9534,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(88) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(94) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 89: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 95: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1021); + lookahead == 'a') ADVANCE(1031); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1280); + lookahead == 'c') ADVANCE(1293); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1247); + lookahead == 'f') ADVANCE(1260); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1565); + lookahead == 'o') ADVANCE(1579); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1420); + lookahead == 'p') ADVANCE(1434); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1526); + lookahead == 's') ADVANCE(1540); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1356); + lookahead == 'v') ADVANCE(1369); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9346,25 +9562,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(89) - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(95) + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 90: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 96: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1021); + lookahead == 'a') ADVANCE(1031); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1280); + lookahead == 'c') ADVANCE(1293); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1247); + lookahead == 'f') ADVANCE(1260); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1565); + lookahead == 'o') ADVANCE(1579); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1526); + lookahead == 's') ADVANCE(1540); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1356); + lookahead == 'v') ADVANCE(1369); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9372,31 +9588,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(90) - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(96) + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 91: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 97: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(966); + lookahead == 'c') ADVANCE(976); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1131); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1268); + lookahead == 'e') ADVANCE(1281); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1242); + lookahead == 'f') ADVANCE(1255); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1335); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1324); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1438); + lookahead == 'p') ADVANCE(1452); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1134); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1340); + lookahead == 'u') ADVANCE(1353); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9404,31 +9620,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(91) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(97) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 92: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 98: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(966); + lookahead == 'c') ADVANCE(976); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1131); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1310); + lookahead == 'e') ADVANCE(1323); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1242); + lookahead == 'f') ADVANCE(1255); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1335); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1324); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1438); + lookahead == 'p') ADVANCE(1452); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1134); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1340); + lookahead == 'u') ADVANCE(1353); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9436,27 +9652,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(92) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(98) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 93: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 99: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1006); + lookahead == 'c') ADVANCE(1016); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1131); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1359); + lookahead == 'f') ADVANCE(1372); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1335); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1324); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1134); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1341); + lookahead == 'u') ADVANCE(1354); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9464,17 +9680,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(93) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(99) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 94: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 100: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1280); + lookahead == 'c') ADVANCE(1293); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1356); + lookahead == 'v') ADVANCE(1369); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9482,15 +9698,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(94) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(100) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 95: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 101: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1280); + lookahead == 'c') ADVANCE(1293); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9498,17 +9714,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(95) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(101) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 96: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 102: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1355); + lookahead == 'd') ADVANCE(1368); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1244); + lookahead == 'f') ADVANCE(1257); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9516,15 +9732,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(96) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(102) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 97: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 103: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1011); + lookahead == 'd') ADVANCE(1021); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9532,15 +9748,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(97) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(103) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 98: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 104: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1452); + lookahead == 'f') ADVANCE(1466); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9548,19 +9764,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(98) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(104) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 99: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 105: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1236); + lookahead == 'f') ADVANCE(1249); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1004); + lookahead == 'l') ADVANCE(1014); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1134); + lookahead == 'n') ADVANCE(1146); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9568,17 +9784,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(99) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(105) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 100: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 106: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1236); + lookahead == 'f') ADVANCE(1249); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1004); + lookahead == 'l') ADVANCE(1014); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9586,15 +9802,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(100) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(106) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 101: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 107: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1420); + lookahead == 'p') ADVANCE(1434); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9602,15 +9818,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(101) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(107) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 102: - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 108: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1163); + lookahead == 't') ADVANCE(1176); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9618,43 +9834,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(102) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(108) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 103: - if (lookahead == '/') ADVANCE(46); + case 109: + if (lookahead == '/') ADVANCE(50); if (lookahead == '\\') SKIP(12) - if (lookahead == '{') ADVANCE(898); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(221); + lookahead == 'a') ADVANCE(227); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(846); + lookahead == 'b') ADVANCE(852); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(207); + lookahead == 'd') ADVANCE(213); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(847); + lookahead == 'e') ADVANCE(853); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(396); + lookahead == 'g') ADVANCE(402); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(585); + lookahead == 'i') ADVANCE(591); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(385); + lookahead == 'l') ADVANCE(391); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(349); + lookahead == 'n') ADVANCE(355); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(834); + lookahead == 'o') ADVANCE(840); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(698); + lookahead == 'p') ADVANCE(704); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(844); + lookahead == 'q') ADVANCE(850); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(397); + lookahead == 'r') ADVANCE(403); if (lookahead == 'S' || - lookahead == 's') ADVANCE(339); + lookahead == 's') ADVANCE(345); if (lookahead == 'T' || - lookahead == 't') ADVANCE(374); + lookahead == 't') ADVANCE(380); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(189); + lookahead == 'v') ADVANCE(195); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9662,12 +9878,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(103) + lookahead == 65279) SKIP(109) END_STATE(); - case 104: - if (lookahead == '/') ADVANCE(45); + case 110: + if (lookahead == '/') ADVANCE(49); if (lookahead == '\\') ADVANCE(20); - if (lookahead == '{') ADVANCE(898); + if (lookahead == '{') ADVANCE(904); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9675,2430 +9891,2406 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(104) + lookahead == 65279) SKIP(110) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= '|')) ADVANCE(86); + ('A' <= lookahead && lookahead <= '|')) ADVANCE(92); END_STATE(); - case 105: - if (lookahead == 'C') ADVANCE(133); + case 111: + if (lookahead == 'C') ADVANCE(139); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(693); + lookahead == 'e') ADVANCE(699); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(171); + lookahead == 'h') ADVANCE(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(431); + lookahead == 'i') ADVANCE(437); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(825); + lookahead == 'o') ADVANCE(831); if (lookahead == 'T' || - lookahead == 't') ADVANCE(624); + lookahead == 't') ADVANCE(630); END_STATE(); - case 106: - if (lookahead == 'C') ADVANCE(133); + case 112: + if (lookahead == 'C') ADVANCE(139); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(693); + lookahead == 'e') ADVANCE(699); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(171); + lookahead == 'h') ADVANCE(177); if (lookahead == 'T' || - lookahead == 't') ADVANCE(623); + lookahead == 't') ADVANCE(629); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(230); + lookahead == 'u') ADVANCE(236); END_STATE(); - case 107: - if (lookahead == 'C') ADVANCE(133); + case 113: + if (lookahead == 'C') ADVANCE(139); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(171); + lookahead == 'h') ADVANCE(177); if (lookahead == 'T' || - lookahead == 't') ADVANCE(636); + lookahead == 't') ADVANCE(642); END_STATE(); - case 108: - if (lookahead == 'D') ADVANCE(1693); + case 114: + if (lookahead == 'D') ADVANCE(1708); END_STATE(); - case 109: - if (lookahead == 'E') ADVANCE(1655); - if (lookahead == 'e') ADVANCE(1655); + case 115: + if (lookahead == 'E') ADVANCE(1669); + if (lookahead == 'e') ADVANCE(1669); END_STATE(); - case 110: - if (lookahead == 'E') ADVANCE(135); - if (lookahead == 'e') ADVANCE(268); + case 116: + if (lookahead == 'E') ADVANCE(141); + if (lookahead == 'e') ADVANCE(274); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(667); + lookahead == 'a') ADVANCE(673); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(634); + lookahead == 'c') ADVANCE(640); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(628); + lookahead == 'l') ADVANCE(634); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(169); + lookahead == 'm') ADVANCE(175); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(593); + lookahead == 'u') ADVANCE(599); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(172); + lookahead == 'w') ADVANCE(178); END_STATE(); - case 111: - if (lookahead == 'E') ADVANCE(141); + case 117: + if (lookahead == 'E') ADVANCE(147); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(654); + lookahead == 'a') ADVANCE(660); END_STATE(); - case 112: - if (lookahead == 'E') ADVANCE(140); - if (lookahead == 'e') ADVANCE(267); + case 118: + if (lookahead == 'E') ADVANCE(146); + if (lookahead == 'e') ADVANCE(273); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(634); + lookahead == 'c') ADVANCE(640); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(169); + lookahead == 'm') ADVANCE(175); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(593); + lookahead == 'u') ADVANCE(599); END_STATE(); - case 113: - if (lookahead == 'E') ADVANCE(139); + case 119: + if (lookahead == 'E') ADVANCE(145); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(593); + lookahead == 'u') ADVANCE(599); END_STATE(); - case 114: - if (lookahead == 'E') ADVANCE(134); - if (lookahead == 'e') ADVANCE(725); + case 120: + if (lookahead == 'E') ADVANCE(140); + if (lookahead == 'e') ADVANCE(731); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(628); + lookahead == 'l') ADVANCE(634); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(172); + lookahead == 'w') ADVANCE(178); END_STATE(); - case 115: - if (lookahead == 'G') ADVANCE(1660); + case 121: + if (lookahead == 'G') ADVANCE(1674); END_STATE(); - case 116: - if (lookahead == 'H') ADVANCE(126); + case 122: + if (lookahead == 'H') ADVANCE(132); END_STATE(); - case 117: - if (lookahead == 'I') ADVANCE(120); - if (lookahead == 'i') ADVANCE(507); + case 123: + if (lookahead == 'I') ADVANCE(126); + if (lookahead == 'i') ADVANCE(513); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(229); + lookahead == 'a') ADVANCE(235); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); + lookahead == 'e') ADVANCE(1634); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(224); + lookahead == 'o') ADVANCE(230); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1619); + lookahead == 't') ADVANCE(1633); END_STATE(); - case 118: - if (lookahead == 'I') ADVANCE(120); - if (lookahead == 'i') ADVANCE(507); + case 124: + if (lookahead == 'I') ADVANCE(126); + if (lookahead == 'i') ADVANCE(513); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(227); + lookahead == 'a') ADVANCE(233); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); + lookahead == 'e') ADVANCE(1634); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1619); - END_STATE(); - case 119: - if (lookahead == 'I') ADVANCE(123); - END_STATE(); - case 120: - if (lookahead == 'K') ADVANCE(109); - if (lookahead == 'k') ADVANCE(300); - END_STATE(); - case 121: - if (lookahead == 'L') ADVANCE(119); - END_STATE(); - case 122: - if (lookahead == 'L') ADVANCE(121); - END_STATE(); - case 123: - if (lookahead == 'N') ADVANCE(115); - END_STATE(); - case 124: - if (lookahead == 'O') ADVANCE(52); - if (lookahead == 'o') ADVANCE(53); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(553); + lookahead == 't') ADVANCE(1633); END_STATE(); case 125: - if (lookahead == 'O') ADVANCE(122); + if (lookahead == 'I') ADVANCE(129); END_STATE(); case 126: - if (lookahead == 'O') ADVANCE(108); + if (lookahead == 'K') ADVANCE(115); + if (lookahead == 'k') ADVANCE(306); END_STATE(); case 127: - if (lookahead == 'O') ADVANCE(137); + if (lookahead == 'L') ADVANCE(125); END_STATE(); case 128: - if (lookahead == 'O') ADVANCE(132); - if (lookahead == 'o') ADVANCE(680); + if (lookahead == 'L') ADVANCE(127); END_STATE(); case 129: - if (lookahead == 'O') ADVANCE(56); - if (lookahead == 'o') ADVANCE(57); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(553); + if (lookahead == 'N') ADVANCE(121); END_STATE(); case 130: - if (lookahead == 'O') ADVANCE(60); - if (lookahead == 'o') ADVANCE(61); + if (lookahead == 'O') ADVANCE(57); + if (lookahead == 'o') ADVANCE(58); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); + lookahead == 'e') ADVANCE(1635); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(559); END_STATE(); case 131: - if (lookahead == 'O') ADVANCE(62); - if (lookahead == 'o') ADVANCE(70); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); + if (lookahead == 'O') ADVANCE(128); END_STATE(); case 132: - if (lookahead == 'R') ADVANCE(1754); - if (lookahead == 'r') ADVANCE(1754); + if (lookahead == 'O') ADVANCE(114); END_STATE(); case 133: - if (lookahead == 'R') ADVANCE(125); + if (lookahead == 'O') ADVANCE(143); END_STATE(); case 134: - if (lookahead == 'R') ADVANCE(136); - if (lookahead == 'r') ADVANCE(719); + if (lookahead == 'O') ADVANCE(138); + if (lookahead == 'o') ADVANCE(686); END_STATE(); case 135: - if (lookahead == 'R') ADVANCE(136); - if (lookahead == 'r') ADVANCE(719); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(447); + if (lookahead == 'O') ADVANCE(61); + if (lookahead == 'o') ADVANCE(62); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1635); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(559); END_STATE(); case 136: - if (lookahead == 'R') ADVANCE(128); - if (lookahead == 'r') ADVANCE(646); + if (lookahead == 'O') ADVANCE(65); + if (lookahead == 'o') ADVANCE(66); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1635); END_STATE(); case 137: - if (lookahead == 'R') ADVANCE(1704); + if (lookahead == 'O') ADVANCE(67); + if (lookahead == 'o') ADVANCE(75); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1635); END_STATE(); case 138: - if (lookahead == 'R') ADVANCE(127); + if (lookahead == 'R') ADVANCE(1683); + if (lookahead == 'r') ADVANCE(1683); END_STATE(); case 139: - if (lookahead == 'R') ADVANCE(138); + if (lookahead == 'R') ADVANCE(131); END_STATE(); case 140: - if (lookahead == 'R') ADVANCE(138); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(447); + if (lookahead == 'R') ADVANCE(142); + if (lookahead == 'r') ADVANCE(725); END_STATE(); case 141: - if (lookahead == 'T') ADVANCE(116); + if (lookahead == 'R') ADVANCE(142); + if (lookahead == 'r') ADVANCE(725); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(453); END_STATE(); case 142: - if (lookahead == 'Y') ADVANCE(1744); + if (lookahead == 'R') ADVANCE(134); + if (lookahead == 'r') ADVANCE(652); + END_STATE(); + case 143: + if (lookahead == 'R') ADVANCE(1719); + END_STATE(); + case 144: + if (lookahead == 'R') ADVANCE(133); + END_STATE(); + case 145: + if (lookahead == 'R') ADVANCE(144); + END_STATE(); + case 146: + if (lookahead == 'R') ADVANCE(144); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(453); + END_STATE(); + case 147: + if (lookahead == 'T') ADVANCE(122); + END_STATE(); + case 148: + if (lookahead == 'Y') ADVANCE(1759); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(432); + lookahead == 'e') ADVANCE(438); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(581); + lookahead == 'i') ADVANCE(587); END_STATE(); - case 143: - if (lookahead == 'Y') ADVANCE(1744); + case 149: + if (lookahead == 'Y') ADVANCE(1759); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(432); + lookahead == 'e') ADVANCE(438); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(608); + lookahead == 'i') ADVANCE(614); END_STATE(); - case 144: - if (lookahead == 'i') ADVANCE(880); + case 150: + if (lookahead == 'i') ADVANCE(886); END_STATE(); - case 145: + case 151: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(229); + lookahead == 'a') ADVANCE(235); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); + lookahead == 'e') ADVANCE(1634); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(507); + lookahead == 'i') ADVANCE(513); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(224); + lookahead == 'o') ADVANCE(230); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1619); + lookahead == 't') ADVANCE(1633); END_STATE(); - case 146: + case 152: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(266); + lookahead == 'a') ADVANCE(272); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(159); + lookahead == 'l') ADVANCE(165); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(514); + lookahead == 'o') ADVANCE(520); END_STATE(); - case 147: + case 153: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(785); + lookahead == 'a') ADVANCE(791); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(253); + lookahead == 'e') ADVANCE(259); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1745); + lookahead == 'o') ADVANCE(1760); END_STATE(); - case 148: + case 154: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(249); + lookahead == 'a') ADVANCE(255); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(445); + lookahead == 'c') ADVANCE(451); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(746); + lookahead == 'l') ADVANCE(752); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); + lookahead == 'n') ADVANCE(280); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1623); + lookahead == 'q') ADVANCE(1637); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(694); + lookahead == 'r') ADVANCE(700); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(353); + lookahead == 'v') ADVANCE(359); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(243); + lookahead == 'x') ADVANCE(249); END_STATE(); - case 149: + case 155: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(654); + lookahead == 'a') ADVANCE(660); END_STATE(); - case 150: + case 156: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(654); + lookahead == 'a') ADVANCE(660); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(805); + lookahead == 'e') ADVANCE(811); END_STATE(); - case 151: + case 157: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(434); + lookahead == 'a') ADVANCE(440); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(720); + lookahead == 'o') ADVANCE(726); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(457); + lookahead == 'r') ADVANCE(463); END_STATE(); - case 152: + case 158: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(55); + lookahead == 'a') ADVANCE(60); END_STATE(); - case 153: + case 159: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(228); + lookahead == 'a') ADVANCE(234); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); + lookahead == 'e') ADVANCE(1634); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(224); + lookahead == 'o') ADVANCE(230); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1619); + lookahead == 't') ADVANCE(1633); END_STATE(); - case 154: + case 160: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(808); + lookahead == 'a') ADVANCE(814); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(805); + lookahead == 'e') ADVANCE(811); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(607); + lookahead == 'i') ADVANCE(613); END_STATE(); - case 155: + case 161: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(234); + lookahead == 'a') ADVANCE(240); END_STATE(); - case 156: + case 162: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(72); + lookahead == 'a') ADVANCE(77); END_STATE(); - case 157: + case 163: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(232); + lookahead == 'a') ADVANCE(238); END_STATE(); - case 158: + case 164: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(556); + lookahead == 'a') ADVANCE(562); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(544); + lookahead == 'o') ADVANCE(550); END_STATE(); - case 159: + case 165: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(744); + lookahead == 'a') ADVANCE(750); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(750); + lookahead == 'o') ADVANCE(756); END_STATE(); - case 160: + case 166: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(667); + lookahead == 'a') ADVANCE(673); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(634); + lookahead == 'c') ADVANCE(640); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(268); + lookahead == 'e') ADVANCE(274); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(628); + lookahead == 'l') ADVANCE(634); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(169); + lookahead == 'm') ADVANCE(175); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(593); + lookahead == 'u') ADVANCE(599); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(172); + lookahead == 'w') ADVANCE(178); END_STATE(); - case 161: + case 167: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(690); + lookahead == 'a') ADVANCE(696); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(356); + lookahead == 'h') ADVANCE(362); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1730); + lookahead == 'o') ADVANCE(1745); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(165); - END_STATE(); - case 162: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(509); - END_STATE(); - case 163: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(860); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(613); - END_STATE(); - case 164: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(429); - END_STATE(); - case 165: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(589); - END_STATE(); - case 166: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(503); - END_STATE(); - case 167: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(524); + lookahead == 'r') ADVANCE(171); END_STATE(); case 168: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(550); + lookahead == 'a') ADVANCE(515); END_STATE(); case 169: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(655); + lookahead == 'a') ADVANCE(866); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(619); END_STATE(); case 170: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(259); + lookahead == 'a') ADVANCE(435); END_STATE(); case 171: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(701); + lookahead == 'a') ADVANCE(595); END_STATE(); case 172: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(474); + lookahead == 'a') ADVANCE(509); END_STATE(); case 173: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(788); + lookahead == 'a') ADVANCE(530); END_STATE(); case 174: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(526); + lookahead == 'a') ADVANCE(556); END_STATE(); case 175: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(806); + lookahead == 'a') ADVANCE(661); END_STATE(); case 176: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(684); + lookahead == 'a') ADVANCE(265); END_STATE(); case 177: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(684); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1680); + lookahead == 'a') ADVANCE(707); END_STATE(); case 178: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(516); + lookahead == 'a') ADVANCE(480); END_STATE(); case 179: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(801); + lookahead == 'a') ADVANCE(794); END_STATE(); case 180: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(779); + lookahead == 'a') ADVANCE(532); END_STATE(); case 181: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(549); + lookahead == 'a') ADVANCE(812); END_STATE(); case 182: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(532); + lookahead == 'a') ADVANCE(690); END_STATE(); case 183: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(81); + lookahead == 'a') ADVANCE(690); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1695); END_STATE(); case 184: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(517); + lookahead == 'a') ADVANCE(522); END_STATE(); case 185: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(689); + lookahead == 'a') ADVANCE(807); END_STATE(); case 186: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(511); + lookahead == 'a') ADVANCE(785); END_STATE(); case 187: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(510); + lookahead == 'a') ADVANCE(555); END_STATE(); case 188: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(787); + lookahead == 'a') ADVANCE(538); END_STATE(); case 189: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(685); + lookahead == 'a') ADVANCE(86); END_STATE(); case 190: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(807); + lookahead == 'a') ADVANCE(523); END_STATE(); case 191: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(807); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(805); + lookahead == 'a') ADVANCE(695); END_STATE(); case 192: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(771); + lookahead == 'a') ADVANCE(517); END_STATE(); case 193: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(797); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(387); + lookahead == 'a') ADVANCE(516); END_STATE(); case 194: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(799); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(253); + lookahead == 'a') ADVANCE(793); END_STATE(); case 195: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(227); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(507); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1619); + lookahead == 'a') ADVANCE(691); END_STATE(); case 196: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(557); + lookahead == 'a') ADVANCE(813); END_STATE(); case 197: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(261); + lookahead == 'a') ADVANCE(813); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(811); END_STATE(); case 198: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(271); + lookahead == 'a') ADVANCE(777); END_STATE(); case 199: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(802); + lookahead == 'a') ADVANCE(803); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(393); END_STATE(); case 200: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(665); + lookahead == 'a') ADVANCE(805); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(259); END_STATE(); case 201: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(852); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(632); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(163); + lookahead == 'a') ADVANCE(233); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1634); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(513); if (lookahead == 'T' || - lookahead == 't') ADVANCE(653); + lookahead == 't') ADVANCE(1633); END_STATE(); case 202: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(437); + lookahead == 'a') ADVANCE(563); END_STATE(); case 203: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(477); + lookahead == 'a') ADVANCE(267); END_STATE(); case 204: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(599); + lookahead == 'a') ADVANCE(277); END_STATE(); case 205: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(848); + lookahead == 'a') ADVANCE(808); END_STATE(); case 206: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(433); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(720); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(635); + lookahead == 'a') ADVANCE(671); END_STATE(); case 207: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(800); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(252); + lookahead == 'a') ADVANCE(858); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(638); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(169); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(659); END_STATE(); case 208: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(265); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(521); + lookahead == 'a') ADVANCE(443); END_STATE(); case 209: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(265); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(611); + lookahead == 'a') ADVANCE(483); END_STATE(); case 210: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(438); + lookahead == 'a') ADVANCE(605); END_STATE(); case 211: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(439); + lookahead == 'a') ADVANCE(854); END_STATE(); case 212: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(754); + lookahead == 'a') ADVANCE(439); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(584); + lookahead == 'o') ADVANCE(726); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(641); END_STATE(); case 213: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(717); + lookahead == 'a') ADVANCE(806); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(258); END_STATE(); case 214: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(235); + lookahead == 'a') ADVANCE(271); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(527); END_STATE(); case 215: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(489); + lookahead == 'a') ADVANCE(271); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(617); END_STATE(); case 216: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(236); + lookahead == 'a') ADVANCE(444); END_STATE(); case 217: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(818); + lookahead == 'a') ADVANCE(445); END_STATE(); case 218: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); + lookahead == 'a') ADVANCE(760); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(590); END_STATE(); case 219: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(819); + lookahead == 'a') ADVANCE(723); END_STATE(); case 220: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(543); + lookahead == 'a') ADVANCE(241); END_STATE(); case 221: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(742); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(495); END_STATE(); case 222: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(742); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(273); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(669); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1654); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(242); END_STATE(); case 223: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(742); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(406); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(824); END_STATE(); case 224: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(64); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(243); END_STATE(); case 225: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(822); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(825); END_STATE(); case 226: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(822); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(617); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(675); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(549); END_STATE(); case 227: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(354); + lookahead == 'b') ADVANCE(748); END_STATE(); case 228: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(354); + lookahead == 'b') ADVANCE(748); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(282); + lookahead == 'n') ADVANCE(279); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(675); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1668); END_STATE(); case 229: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(354); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(282); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(763); + lookahead == 'b') ADVANCE(748); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(412); END_STATE(); case 230: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(59); + lookahead == 'b') ADVANCE(69); END_STATE(); case 231: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(525); + lookahead == 'b') ADVANCE(828); END_STATE(); case 232: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(370); + lookahead == 'b') ADVANCE(828); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(623); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(681); END_STATE(); case 233: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(529); + lookahead == 'b') ADVANCE(360); END_STATE(); case 234: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(534); + lookahead == 'b') ADVANCE(360); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(288); END_STATE(); case 235: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(536); + lookahead == 'b') ADVANCE(360); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(288); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(769); END_STATE(); case 236: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(537); + lookahead == 'b') ADVANCE(64); END_STATE(); case 237: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(538); + lookahead == 'b') ADVANCE(531); END_STATE(); case 238: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(187); + lookahead == 'b') ADVANCE(376); END_STATE(); case 239: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1642); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(535); END_STATE(); case 240: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1645); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(540); END_STATE(); case 241: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(445); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(746); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1623); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(353); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(814); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(542); END_STATE(); case 242: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(358); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(543); END_STATE(); case 243: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(358); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(399); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(544); END_STATE(); case 244: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(625); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(193); END_STATE(); case 245: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(625); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(424); + lookahead == 'c') ADVANCE(1656); END_STATE(); case 246: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(625); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(666); + lookahead == 'c') ADVANCE(1659); END_STATE(); case 247: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(504); + lookahead == 'c') ADVANCE(451); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(752); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1637); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(359); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(820); END_STATE(); case 248: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(505); + lookahead == 'c') ADVANCE(364); END_STATE(); case 249: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(440); + lookahead == 'c') ADVANCE(364); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(405); END_STATE(); case 250: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(506); + lookahead == 'c') ADVANCE(631); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(431); END_STATE(); case 251: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(441); + lookahead == 'c') ADVANCE(631); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(430); END_STATE(); case 252: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(482); + lookahead == 'c') ADVANCE(631); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(672); END_STATE(); case 253: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(482); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1649); + lookahead == 'c') ADVANCE(510); END_STATE(); case 254: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(634); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(267); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(169); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(593); + lookahead == 'c') ADVANCE(511); END_STATE(); case 255: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(630); + lookahead == 'c') ADVANCE(446); END_STATE(); case 256: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(200); + lookahead == 'c') ADVANCE(512); END_STATE(); case 257: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(518); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(399); + lookahead == 'c') ADVANCE(447); END_STATE(); case 258: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(308); + lookahead == 'c') ADVANCE(488); END_STATE(); case 259: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(776); + lookahead == 'c') ADVANCE(488); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1663); END_STATE(); case 260: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(809); + lookahead == 'c') ADVANCE(640); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(273); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(175); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(599); END_STATE(); case 261: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(327); + lookahead == 'c') ADVANCE(636); END_STATE(); case 262: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(366); + lookahead == 'c') ADVANCE(206); END_STATE(); case 263: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(324); + lookahead == 'c') ADVANCE(524); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(405); END_STATE(); case 264: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(379); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(410); + lookahead == 'c') ADVANCE(314); END_STATE(); case 265: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(448); + lookahead == 'c') ADVANCE(782); END_STATE(); case 266: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(448); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(251); + lookahead == 'c') ADVANCE(815); END_STATE(); case 267: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(447); + lookahead == 'c') ADVANCE(333); END_STATE(); case 268: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(447); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(719); + lookahead == 'c') ADVANCE(372); END_STATE(); case 269: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(450); + lookahead == 'c') ADVANCE(330); END_STATE(); case 270: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(804); + lookahead == 'c') ADVANCE(385); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(416); END_STATE(); case 271: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(816); + lookahead == 'c') ADVANCE(454); END_STATE(); case 272: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(821); + lookahead == 'c') ADVANCE(454); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(257); END_STATE(); case 273: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1762); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(856); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(453); END_STATE(); case 274: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1591); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(453); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(725); END_STATE(); case 275: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1631); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(456); END_STATE(); case 276: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1777); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(810); END_STATE(); case 277: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1692); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(822); END_STATE(); case 278: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1641); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(827); END_STATE(); case 279: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + lookahead == 'd') ADVANCE(1776); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(862); END_STATE(); case 280: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1644); + lookahead == 'd') ADVANCE(1605); END_STATE(); case 281: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1717); + lookahead == 'd') ADVANCE(1645); END_STATE(); case 282: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(743); + lookahead == 'd') ADVANCE(1791); END_STATE(); case 283: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(476); + lookahead == 'd') ADVANCE(1707); END_STATE(); case 284: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(73); + lookahead == 'd') ADVANCE(1655); END_STATE(); case 285: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(346); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(369); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(815); + lookahead == 'd') ADVANCE(1741); END_STATE(); case 286: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(346); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(369); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(815); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(373); + lookahead == 'd') ADVANCE(1658); END_STATE(); case 287: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(346); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(815); + lookahead == 'd') ADVANCE(1732); END_STATE(); case 288: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(621); + lookahead == 'd') ADVANCE(749); END_STATE(); case 289: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(737); + lookahead == 'd') ADVANCE(482); END_STATE(); case 290: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(414); + lookahead == 'd') ADVANCE(78); END_STATE(); case 291: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(740); + lookahead == 'd') ADVANCE(352); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(375); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(821); END_STATE(); case 292: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(315); + lookahead == 'd') ADVANCE(352); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(375); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(821); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(379); END_STATE(); case 293: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(351); + lookahead == 'd') ADVANCE(352); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(821); END_STATE(); case 294: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(355); + lookahead == 'd') ADVANCE(627); END_STATE(); case 295: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(436); + lookahead == 'd') ADVANCE(743); END_STATE(); case 296: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(535); + lookahead == 'd') ADVANCE(420); END_STATE(); case 297: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(843); + lookahead == 'd') ADVANCE(746); END_STATE(); case 298: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1619); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(321); END_STATE(); case 299: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(357); END_STATE(); case 300: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1655); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(361); END_STATE(); case 301: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1746); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(442); END_STATE(); case 302: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1670); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(541); END_STATE(); case 303: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1659); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(849); END_STATE(); case 304: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1710); + lookahead == 'e') ADVANCE(1634); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1633); END_STATE(); case 305: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1610); + lookahead == 'e') ADVANCE(1640); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1638); END_STATE(); case 306: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1749); + lookahead == 'e') ADVANCE(1669); END_STATE(); case 307: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1672); + lookahead == 'e') ADVANCE(1761); END_STATE(); case 308: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1721); + lookahead == 'e') ADVANCE(1685); END_STATE(); case 309: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1648); + lookahead == 'e') ADVANCE(1673); END_STATE(); case 310: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1779); + lookahead == 'e') ADVANCE(1725); END_STATE(); case 311: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1765); + lookahead == 'e') ADVANCE(1624); END_STATE(); case 312: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1723); + lookahead == 'e') ADVANCE(1764); END_STATE(); case 313: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1643); + lookahead == 'e') ADVANCE(1687); END_STATE(); case 314: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1782); + lookahead == 'e') ADVANCE(1736); END_STATE(); case 315: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1684); + lookahead == 'e') ADVANCE(1662); END_STATE(); case 316: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1651); + lookahead == 'e') ADVANCE(1793); END_STATE(); case 317: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1724); + lookahead == 'e') ADVANCE(1779); END_STATE(); case 318: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1690); + lookahead == 'e') ADVANCE(1738); END_STATE(); case 319: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1748); + lookahead == 'e') ADVANCE(1657); END_STATE(); case 320: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1729); + lookahead == 'e') ADVANCE(1796); END_STATE(); case 321: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1674); + lookahead == 'e') ADVANCE(1699); END_STATE(); case 322: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1658); + lookahead == 'e') ADVANCE(1665); END_STATE(); case 323: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1770); + lookahead == 'e') ADVANCE(1739); END_STATE(); case 324: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1783); + lookahead == 'e') ADVANCE(1705); END_STATE(); case 325: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1646); + lookahead == 'e') ADVANCE(1763); END_STATE(); case 326: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1709); + lookahead == 'e') ADVANCE(1744); END_STATE(); case 327: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1682); + lookahead == 'e') ADVANCE(1689); END_STATE(); case 328: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(432); + lookahead == 'e') ADVANCE(1672); END_STATE(); case 329: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(432); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(581); + lookahead == 'e') ADVANCE(1784); END_STATE(); case 330: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(432); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(608); + lookahead == 'e') ADVANCE(1797); END_STATE(); case 331: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(432); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(383); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1757); + lookahead == 'e') ADVANCE(1660); END_STATE(); case 332: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(53); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(553); + lookahead == 'e') ADVANCE(1724); END_STATE(); case 333: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(57); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(553); + lookahead == 'e') ADVANCE(1697); END_STATE(); case 334: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(58); + lookahead == 'e') ADVANCE(438); END_STATE(); case 335: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(61); + lookahead == 'e') ADVANCE(438); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(587); END_STATE(); case 336: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(70); + lookahead == 'e') ADVANCE(438); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(614); END_STATE(); case 337: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(693); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(171); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(431); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(825); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(624); + lookahead == 'e') ADVANCE(438); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(389); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1771); END_STATE(); case 338: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(693); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(171); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(623); + lookahead == 'e') ADVANCE(1635); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(58); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(230); + lookahead == 'u') ADVANCE(559); END_STATE(); case 339: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(693); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(213); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(193); + lookahead == 'e') ADVANCE(1635); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(62); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(559); END_STATE(); case 340: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(253); + lookahead == 'e') ADVANCE(1635); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(63); END_STATE(); case 341: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + lookahead == 'e') ADVANCE(1635); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(66); END_STATE(); case 342: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(522); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(162); + lookahead == 'e') ADVANCE(1635); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(75); END_STATE(); case 343: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(522); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(162); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(745); + lookahead == 'e') ADVANCE(699); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(177); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(437); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(831); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(630); END_STATE(); case 344: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(522); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(182); + lookahead == 'e') ADVANCE(699); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(177); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(629); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(236); END_STATE(); case 345: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(571); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(533); + lookahead == 'e') ADVANCE(699); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(219); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(199); END_STATE(); case 346: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(859); + lookahead == 'e') ADVANCE(259); END_STATE(); case 347: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(75); + lookahead == 'e') ADVANCE(1639); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1638); END_STATE(); case 348: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1647); + lookahead == 'e') ADVANCE(528); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(168); END_STATE(); case 349: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(853); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(71); + lookahead == 'e') ADVANCE(528); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(168); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(751); END_STATE(); case 350: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1734); + lookahead == 'e') ADVANCE(528); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(188); END_STATE(); case 351: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(857); + lookahead == 'e') ADVANCE(577); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(539); END_STATE(); case 352: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(401); + lookahead == 'e') ADVANCE(865); END_STATE(); case 353: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(590); + lookahead == 'e') ADVANCE(80); END_STATE(); case 354: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(508); + lookahead == 'e') ADVANCE(1661); END_STATE(); case 355: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(858); + lookahead == 'e') ADVANCE(859); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(76); END_STATE(); case 356: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(570); + lookahead == 'e') ADVANCE(1749); END_STATE(); case 357: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(54); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(586); + lookahead == 'e') ADVANCE(863); END_STATE(); case 358: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(661); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(826); + lookahead == 'e') ADVANCE(407); END_STATE(); case 359: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(567); + lookahead == 'e') ADVANCE(596); END_STATE(); case 360: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(560); + lookahead == 'e') ADVANCE(514); END_STATE(); case 361: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(704); + lookahead == 'e') ADVANCE(864); END_STATE(); case 362: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); + lookahead == 'e') ADVANCE(576); END_STATE(); case 363: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(168); + lookahead == 'e') ADVANCE(59); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(592); END_STATE(); case 364: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(732); + lookahead == 'e') ADVANCE(667); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(832); END_STATE(); case 365: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(252); + lookahead == 'e') ADVANCE(573); END_STATE(); case 366: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(79); + lookahead == 'e') ADVANCE(566); END_STATE(); case 367: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(542); + lookahead == 'e') ADVANCE(710); END_STATE(); case 368: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(281); + lookahead == 'e') ADVANCE(71); END_STATE(); case 369: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(721); + lookahead == 'e') ADVANCE(174); END_STATE(); case 370: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(512); + lookahead == 'e') ADVANCE(738); END_STATE(); case 371: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(609); + lookahead == 'e') ADVANCE(258); END_STATE(); case 372: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(734); + lookahead == 'e') ADVANCE(84); END_STATE(); case 373: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(688); + lookahead == 'e') ADVANCE(548); END_STATE(); case 374: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(562); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(709); + lookahead == 'e') ADVANCE(287); END_STATE(); case 375: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(772); + lookahead == 'e') ADVANCE(727); END_STATE(); case 376: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(280); + lookahead == 'e') ADVANCE(518); END_STATE(); case 377: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(687); + lookahead == 'e') ADVANCE(615); END_STATE(); case 378: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(736); + lookahead == 'e') ADVANCE(740); END_STATE(); case 379: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(297); + lookahead == 'e') ADVANCE(694); END_STATE(); case 380: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(278); + lookahead == 'e') ADVANCE(568); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(715); END_STATE(); case 381: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(775); + lookahead == 'e') ADVANCE(778); END_STATE(); case 382: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(723); + lookahead == 'e') ADVANCE(286); END_STATE(); case 383: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(166); + lookahead == 'e') ADVANCE(693); END_STATE(); case 384: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(812); + lookahead == 'e') ADVANCE(742); END_STATE(); case 385: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); + lookahead == 'e') ADVANCE(303); END_STATE(); case 386: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(729); + lookahead == 'e') ADVANCE(284); END_STATE(); case 387: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(181); + lookahead == 'e') ADVANCE(781); END_STATE(); case 388: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(681); + lookahead == 'e') ADVANCE(729); END_STATE(); case 389: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(682); + lookahead == 'e') ADVANCE(172); END_STATE(); case 390: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(794); + lookahead == 'e') ADVANCE(818); END_STATE(); case 391: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(725); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(628); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(593); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(172); + lookahead == 'e') ADVANCE(211); END_STATE(); case 392: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(725); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(628); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(172); + lookahead == 'e') ADVANCE(735); END_STATE(); case 393: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(699); + lookahead == 'e') ADVANCE(187); END_STATE(); case 394: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(678); + lookahead == 'e') ADVANCE(687); END_STATE(); case 395: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(761); + lookahead == 'e') ADVANCE(688); END_STATE(); case 396: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(762); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(629); + lookahead == 'e') ADVANCE(800); END_STATE(); case 397: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(784); + lookahead == 'e') ADVANCE(731); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(634); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(599); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(178); END_STATE(); case 398: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(539); + lookahead == 'e') ADVANCE(731); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(634); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(178); END_STATE(); case 399: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(598); + lookahead == 'e') ADVANCE(705); END_STATE(); case 400: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(755); + lookahead == 'e') ADVANCE(684); END_STATE(); case 401: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(659); + lookahead == 'e') ADVANCE(767); END_STATE(); case 402: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(705); + lookahead == 'e') ADVANCE(768); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(635); END_STATE(); case 403: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(712); + lookahead == 'e') ADVANCE(790); END_STATE(); case 404: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(594); + lookahead == 'e') ADVANCE(545); END_STATE(); case 405: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(74); + lookahead == 'e') ADVANCE(604); END_STATE(); case 406: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(727); + lookahead == 'e') ADVANCE(761); END_STATE(); case 407: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(603); + lookahead == 'e') ADVANCE(665); END_STATE(); case 408: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(707); + lookahead == 'e') ADVANCE(711); END_STATE(); case 409: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(708); + lookahead == 'e') ADVANCE(718); END_STATE(); case 410: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(270); + lookahead == 'e') ADVANCE(600); END_STATE(); case 411: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(715); + lookahead == 'e') ADVANCE(79); END_STATE(); case 412: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(706); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(533); + lookahead == 'e') ADVANCE(733); END_STATE(); case 413: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(192); + lookahead == 'e') ADVANCE(609); END_STATE(); case 414: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(77); + lookahead == 'e') ADVANCE(713); END_STATE(); case 415: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(540); + lookahead == 'e') ADVANCE(714); END_STATE(); case 416: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(82); + lookahead == 'e') ADVANCE(276); END_STATE(); case 417: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(728); + lookahead == 'e') ADVANCE(721); END_STATE(); case 418: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1761); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1731); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(712); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(539); END_STATE(); case 419: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1761); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1731); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(454); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(361); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(198); END_STATE(); case 420: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(426); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(82); END_STATE(); case 421: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(652); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(546); END_STATE(); case 422: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(197); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(87); END_STATE(); case 423: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(480); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(734); END_STATE(); case 424: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(382); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(173); + lookahead == 'f') ADVANCE(1775); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1746); END_STATE(); case 425: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(382); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(173); + lookahead == 'f') ADVANCE(1775); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1746); if (lookahead == 'T' || - lookahead == 't') ADVANCE(831); + lookahead == 't') ADVANCE(460); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(367); END_STATE(); case 426: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(411); + lookahead == 'f') ADVANCE(432); END_STATE(); case 427: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(394); + lookahead == 'f') ADVANCE(658); END_STATE(); case 428: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(427); + lookahead == 'f') ADVANCE(203); END_STATE(); case 429: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(813); + lookahead == 'f') ADVANCE(486); END_STATE(); case 430: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1696); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(388); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(179); END_STATE(); case 431: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(606); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(388); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(179); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(837); END_STATE(); case 432: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(486); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(417); END_STATE(); case 433: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(347); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(400); END_STATE(); case 434: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(347); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(196); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(433); END_STATE(); case 435: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(375); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(819); END_STATE(); case 436: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(390); + lookahead == 'g') ADVANCE(1711); END_STATE(); case 437: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(378); + lookahead == 'g') ADVANCE(612); END_STATE(); case 438: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(311); + lookahead == 'g') ADVANCE(492); END_STATE(); case 439: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(323); + lookahead == 'g') ADVANCE(353); END_STATE(); case 440: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1758); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(353); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(202); END_STATE(); case 441: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1763); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(381); END_STATE(); case 442: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1699); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(396); END_STATE(); case 443: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(171); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(636); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(384); END_STATE(); case 444: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(345); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(696); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(317); END_STATE(); case 445: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(616); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(329); END_STATE(); case 446: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(412); + lookahead == 'h') ADVANCE(1772); END_STATE(); case 447: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(620); + lookahead == 'h') ADVANCE(1777); END_STATE(); case 448: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(303); + lookahead == 'h') ADVANCE(1714); END_STATE(); case 449: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(483); + lookahead == 'h') ADVANCE(177); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(642); END_STATE(); case 450: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(364); + lookahead == 'h') ADVANCE(351); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(702); END_STATE(); case 451: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(356); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1730); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(165); + lookahead == 'h') ADVANCE(622); END_STATE(); case 452: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(637); + lookahead == 'h') ADVANCE(418); END_STATE(); case 453: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(204); + lookahead == 'h') ADVANCE(626); END_STATE(); case 454: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(377); + lookahead == 'h') ADVANCE(309); END_STATE(); case 455: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(403); + lookahead == 'h') ADVANCE(489); END_STATE(); case 456: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(343); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(686); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(158); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(370); END_STATE(); case 457: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(559); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(362); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(672); + lookahead == 'o') ADVANCE(1745); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(171); END_STATE(); case 458: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(871); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(643); END_STATE(); case 459: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(344); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(686); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(210); END_STATE(); case 460: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(850); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(673); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(383); END_STATE(); case 461: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(850); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(264); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(409); END_STATE(); case 462: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(850); + lookahead == 'i') ADVANCE(349); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(803); + lookahead == 'o') ADVANCE(692); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(164); END_STATE(); case 463: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(872); + lookahead == 'i') ADVANCE(565); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(678); END_STATE(); case 464: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(275); + lookahead == 'i') ADVANCE(877); END_STATE(); case 465: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(815); + lookahead == 'i') ADVANCE(350); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(692); END_STATE(); case 466: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(815); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(835); + lookahead == 'i') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(679); END_STATE(); case 467: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(554); + lookahead == 'i') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(270); END_STATE(); case 468: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(240); + lookahead == 'i') ADVANCE(856); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(809); END_STATE(); case 469: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(295); + lookahead == 'i') ADVANCE(878); END_STATE(); case 470: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(610); + lookahead == 'i') ADVANCE(281); END_STATE(); case 471: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(610); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(469); + lookahead == 'i') ADVANCE(821); END_STATE(); case 472: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(239); + lookahead == 'i') ADVANCE(821); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(841); END_STATE(); case 473: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(588); + lookahead == 'i') ADVANCE(560); END_STATE(); case 474: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(773); + lookahead == 'i') ADVANCE(246); END_STATE(); case 475: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(793); + lookahead == 'i') ADVANCE(301); END_STATE(); case 476: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(679); + lookahead == 'i') ADVANCE(616); END_STATE(); case 477: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(777); + lookahead == 'i') ADVANCE(616); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(475); END_STATE(); case 478: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(764); + lookahead == 'i') ADVANCE(245); END_STATE(); case 479: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(372); + lookahead == 'i') ADVANCE(594); END_STATE(); case 480: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(398); + lookahead == 'i') ADVANCE(779); END_STATE(); case 481: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(849); + lookahead == 'i') ADVANCE(799); END_STATE(); case 482: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(563); + lookahead == 'i') ADVANCE(685); END_STATE(); case 483: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(533); + lookahead == 'i') ADVANCE(783); END_STATE(); case 484: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(292); + lookahead == 'i') ADVANCE(770); END_STATE(); case 485: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(167); + lookahead == 'i') ADVANCE(378); END_STATE(); case 486: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(592); + lookahead == 'i') ADVANCE(404); END_STATE(); case 487: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(640); + lookahead == 'i') ADVANCE(855); END_STATE(); case 488: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(561); + lookahead == 'i') ADVANCE(569); END_STATE(); case 489: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(596); + lookahead == 'i') ADVANCE(539); END_STATE(); case 490: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(642); + lookahead == 'i') ADVANCE(298); END_STATE(); case 491: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(564); + lookahead == 'i') ADVANCE(173); END_STATE(); case 492: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(752); + lookahead == 'i') ADVANCE(598); END_STATE(); case 493: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(178); + lookahead == 'i') ADVANCE(646); END_STATE(); case 494: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(566); + lookahead == 'i') ADVANCE(567); END_STATE(); case 495: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(644); + lookahead == 'i') ADVANCE(602); END_STATE(); case 496: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(645); + lookahead == 'i') ADVANCE(648); END_STATE(); case 497: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(648); + lookahead == 'i') ADVANCE(570); END_STATE(); case 498: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(342); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(686); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(627); + lookahead == 'i') ADVANCE(758); END_STATE(); case 499: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(612); + lookahead == 'i') ADVANCE(184); END_STATE(); case 500: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(873); + lookahead == 'i') ADVANCE(572); END_STATE(); case 501: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(415); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(676); + lookahead == 'i') ADVANCE(650); END_STATE(); case 502: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(220); + lookahead == 'i') ADVANCE(651); END_STATE(); case 503: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1756); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(654); END_STATE(); case 504: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1750); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(348); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(692); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(633); END_STATE(); case 505: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1751); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(618); END_STATE(); case 506: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1752); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(879); END_STATE(); case 507: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(300); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(421); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(682); END_STATE(); case 508: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1635); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(226); END_STATE(); case 509: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1691); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1770); END_STATE(); case 510: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1640); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1765); END_STATE(); case 511: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1774); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1766); END_STATE(); case 512: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1636); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1767); END_STATE(); case 513: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1703); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(306); END_STATE(); case 514: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(541); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(758); + lookahead == 'l') ADVANCE(1649); END_STATE(); case 515: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(541); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(790); + lookahead == 'l') ADVANCE(1706); END_STATE(); case 516: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1633); + lookahead == 'l') ADVANCE(1654); END_STATE(); case 517: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1769); + lookahead == 'l') ADVANCE(1788); END_STATE(); case 518: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(826); + lookahead == 'l') ADVANCE(1650); END_STATE(); case 519: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(869); + lookahead == 'l') ADVANCE(1718); END_STATE(); case 520: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(866); + lookahead == 'l') ADVANCE(547); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(764); END_STATE(); case 521: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(823); + lookahead == 'l') ADVANCE(547); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(757); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(604); + lookahead == 'n') ADVANCE(796); END_STATE(); case 522: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(276); + lookahead == 'l') ADVANCE(1647); END_STATE(); case 523: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(867); + lookahead == 'l') ADVANCE(1783); END_STATE(); case 524: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(458); + lookahead == 'l') ADVANCE(832); END_STATE(); case 525: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(870); + lookahead == 'l') ADVANCE(875); END_STATE(); case 526: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(738); + lookahead == 'l') ADVANCE(872); END_STATE(); case 527: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(631); + lookahead == 'l') ADVANCE(829); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(763); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(610); END_STATE(); case 528: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(633); + lookahead == 'l') ADVANCE(282); END_STATE(); case 529: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(468); + lookahead == 'l') ADVANCE(873); END_STATE(); case 530: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(359); + lookahead == 'l') ADVANCE(464); END_STATE(); case 531: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(157); + lookahead == 'l') ADVANCE(876); END_STATE(); case 532: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(523); + lookahead == 'l') ADVANCE(744); END_STATE(); case 533: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(307); + lookahead == 'l') ADVANCE(637); END_STATE(); case 534: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(325); + lookahead == 'l') ADVANCE(639); END_STATE(); case 535: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(326); + lookahead == 'l') ADVANCE(474); END_STATE(); case 536: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(348); + lookahead == 'l') ADVANCE(365); END_STATE(); case 537: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(316); + lookahead == 'l') ADVANCE(163); END_STATE(); case 538: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(322); + lookahead == 'l') ADVANCE(529); END_STATE(); case 539: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(289); + lookahead == 'l') ADVANCE(313); END_STATE(); case 540: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(291); + lookahead == 'l') ADVANCE(331); END_STATE(); case 541: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(179); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(555); + lookahead == 'l') ADVANCE(332); END_STATE(); case 542: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(217); + lookahead == 'l') ADVANCE(354); END_STATE(); case 543: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(500); + lookahead == 'l') ADVANCE(322); END_STATE(); case 544: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1697); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(328); END_STATE(); case 545: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1767); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(295); END_STATE(); case 546: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1768); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(297); END_STATE(); case 547: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1772); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(185); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(561); END_STATE(); case 548: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1773); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(223); END_STATE(); case 549: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1706); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(506); END_STATE(); case 550: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1707); + lookahead == 'm') ADVANCE(1712); END_STATE(); case 551: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(657); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(286); + lookahead == 'm') ADVANCE(1781); END_STATE(); case 552: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(657); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(285); + lookahead == 'm') ADVANCE(1782); END_STATE(); case 553: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(63); + lookahead == 'm') ADVANCE(1786); END_STATE(); case 554: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(827); + lookahead == 'm') ADVANCE(1787); END_STATE(); case 555: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(595); + lookahead == 'm') ADVANCE(1721); END_STATE(); case 556: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(305); + lookahead == 'm') ADVANCE(1722); END_STATE(); case 557: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(384); + lookahead == 'm') ADVANCE(663); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(292); END_STATE(); case 558: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(400); + lookahead == 'm') ADVANCE(663); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(291); END_STATE(); case 559: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(185); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(199); + lookahead == 'm') ADVANCE(68); END_STATE(); case 560: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(231); + lookahead == 'm') ADVANCE(833); END_STATE(); case 561: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(828); + lookahead == 'm') ADVANCE(601); END_STATE(); case 562: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(664); + lookahead == 'm') ADVANCE(311); END_STATE(); case 563: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(174); + lookahead == 'm') ADVANCE(390); END_STATE(); case 564: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(829); + lookahead == 'm') ADVANCE(406); END_STATE(); case 565: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(180); + lookahead == 'm') ADVANCE(191); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(205); END_STATE(); case 566: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(830); + lookahead == 'm') ADVANCE(237); END_STATE(); case 567: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(407); + lookahead == 'm') ADVANCE(834); END_STATE(); case 568: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(219); + lookahead == 'm') ADVANCE(670); END_STATE(); case 569: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1731); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(180); END_STATE(); case 570: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1669); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(835); END_STATE(); case 571: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1747); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(306); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(186); END_STATE(); case 572: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1676); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(836); END_STATE(); case 573: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1678); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(413); END_STATE(); case 574: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1743); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(225); END_STATE(); case 575: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1694); + lookahead == 'n') ADVANCE(1746); END_STATE(); case 576: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1662); + lookahead == 'n') ADVANCE(1684); END_STATE(); case 577: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1675); + lookahead == 'n') ADVANCE(1762); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(312); END_STATE(); case 578: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1623); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(353); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(257); + lookahead == 'n') ADVANCE(1691); END_STATE(); case 579: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(274); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1623); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(814); + lookahead == 'n') ADVANCE(1693); END_STATE(); case 580: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(226); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(357); + lookahead == 'n') ADVANCE(1758); END_STATE(); case 581: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(177); + lookahead == 'n') ADVANCE(1709); END_STATE(); case 582: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(851); + lookahead == 'n') ADVANCE(1676); END_STATE(); case 583: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(287); + lookahead == 'n') ADVANCE(1690); END_STATE(); case 584: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(757); + lookahead == 'n') ADVANCE(280); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1637); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(359); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(263); END_STATE(); case 585: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(466); + lookahead == 'n') ADVANCE(280); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1637); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(820); END_STATE(); case 586: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(430); + lookahead == 'n') ADVANCE(232); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(363); END_STATE(); case 587: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(225); + lookahead == 'n') ADVANCE(183); END_STATE(); case 588: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(421); + lookahead == 'n') ADVANCE(857); END_STATE(); case 589: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(756); + lookahead == 'n') ADVANCE(293); END_STATE(); case 590: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(766); + lookahead == 'n') ADVANCE(763); END_STATE(); case 591: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(868); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(669); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(753); + lookahead == 'n') ADVANCE(472); END_STATE(); case 592: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(731); + lookahead == 'n') ADVANCE(436); END_STATE(); case 593: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(288); + lookahead == 'n') ADVANCE(231); END_STATE(); case 594: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(279); + lookahead == 'n') ADVANCE(427); END_STATE(); case 595: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(68); + lookahead == 'n') ADVANCE(762); END_STATE(); case 596: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(733); + lookahead == 'n') ADVANCE(772); END_STATE(); case 597: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(65); + lookahead == 'n') ADVANCE(874); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(675); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(759); END_STATE(); case 598: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(769); + lookahead == 'n') ADVANCE(737); END_STATE(); case 599: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(296); + lookahead == 'n') ADVANCE(294); END_STATE(); case 600: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(520); + lookahead == 'n') ADVANCE(285); END_STATE(); case 601: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(465); + lookahead == 'n') ADVANCE(73); END_STATE(); case 602: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(309); + lookahead == 'n') ADVANCE(739); END_STATE(); case 603: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(795); + lookahead == 'n') ADVANCE(70); END_STATE(); case 604: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(765); + lookahead == 'n') ADVANCE(775); END_STATE(); case 605: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(778); + lookahead == 'n') ADVANCE(302); END_STATE(); case 606: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(175); + lookahead == 'n') ADVANCE(526); END_STATE(); case 607: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(488); + lookahead == 'n') ADVANCE(471); END_STATE(); case 608: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(176); + lookahead == 'n') ADVANCE(315); END_STATE(); case 609: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(262); + lookahead == 'n') ADVANCE(801); END_STATE(); case 610: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(293); + lookahead == 'n') ADVANCE(771); END_STATE(); case 611: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(789); + lookahead == 'n') ADVANCE(784); END_STATE(); case 612: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(294); + lookahead == 'n') ADVANCE(181); END_STATE(); case 613: if (lookahead == 'N' || @@ -12106,1187 +12298,1211 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 614: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(272); + lookahead == 'n') ADVANCE(182); END_STATE(); case 615: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1745); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(268); END_STATE(); case 616: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1713); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(299); END_STATE(); case 617: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1733); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(795); END_STATE(); case 618: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(825); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(623); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(300); END_STATE(); case 619: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(464); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(500); END_STATE(); case 620: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1714); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(278); END_STATE(); case 621: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1638); + lookahead == 'o') ADVANCE(1760); END_STATE(); case 622: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(515); + lookahead == 'o') ADVANCE(1728); END_STATE(); case 623: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(658); + lookahead == 'o') ADVANCE(1748); END_STATE(); case 624: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(658); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(363); + lookahead == 'o') ADVANCE(831); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(629); END_STATE(); case 625: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(290); + lookahead == 'o') ADVANCE(470); END_STATE(); case 626: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(854); + lookahead == 'o') ADVANCE(1729); END_STATE(); case 627: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(544); + lookahead == 'o') ADVANCE(1652); END_STATE(); case 628: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(247); + lookahead == 'o') ADVANCE(521); END_STATE(); case 629: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(238); + lookahead == 'o') ADVANCE(664); END_STATE(); case 630: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(662); + lookahead == 'o') ADVANCE(664); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(369); END_STATE(); case 631: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(248); + lookahead == 'o') ADVANCE(296); END_STATE(); case 632: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(842); + lookahead == 'o') ADVANCE(860); END_STATE(); case 633: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(250); + lookahead == 'o') ADVANCE(550); END_STATE(); case 634: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(582); + lookahead == 'o') ADVANCE(253); END_STATE(); case 635: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(671); + lookahead == 'o') ADVANCE(244); END_STATE(); case 636: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(656); + lookahead == 'o') ADVANCE(668); END_STATE(); case 637: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(277); + lookahead == 'o') ADVANCE(254); END_STATE(); case 638: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(677); + lookahead == 'o') ADVANCE(848); END_STATE(); case 639: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(513); + lookahead == 'o') ADVANCE(256); END_STATE(); case 640: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(597); + lookahead == 'o') ADVANCE(588); END_STATE(); case 641: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(639); + lookahead == 'o') ADVANCE(677); END_STATE(); case 642: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(574); + lookahead == 'o') ADVANCE(662); END_STATE(); case 643: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(600); + lookahead == 'o') ADVANCE(283); END_STATE(); case 644: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(575); + lookahead == 'o') ADVANCE(683); END_STATE(); case 645: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(576); + lookahead == 'o') ADVANCE(519); END_STATE(); case 646: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(680); + lookahead == 'o') ADVANCE(603); END_STATE(); case 647: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(683); + lookahead == 'o') ADVANCE(645); END_STATE(); case 648: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(573); + lookahead == 'o') ADVANCE(580); END_STATE(); case 649: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(810); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(165); + lookahead == 'o') ADVANCE(606); END_STATE(); case 650: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(845); + lookahead == 'o') ADVANCE(581); END_STATE(); case 651: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(838); + lookahead == 'o') ADVANCE(582); END_STATE(); case 652: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(726); + lookahead == 'o') ADVANCE(686); END_STATE(); case 653: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(811); + lookahead == 'o') ADVANCE(689); END_STATE(); case 654: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1715); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(579); END_STATE(); case 655: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1716); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(816); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(171); END_STATE(); case 656: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1739); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(851); END_STATE(); case 657: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(530); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(844); END_STATE(); case 658: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(69); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(732); END_STATE(); case 659: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(78); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(817); END_STATE(); case 660: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(519); + lookahead == 'p') ADVANCE(1730); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(275); END_STATE(); case 661: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(768); + lookahead == 'p') ADVANCE(1731); END_STATE(); case 662: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(479); + lookahead == 'p') ADVANCE(1754); END_STATE(); case 663: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(641); + lookahead == 'p') ADVANCE(536); END_STATE(); case 664: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(80); + lookahead == 'p') ADVANCE(74); END_STATE(); case 665: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(317); + lookahead == 'p') ADVANCE(83); END_STATE(); case 666: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(413); + lookahead == 'p') ADVANCE(525); END_STATE(); case 667: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(660); + lookahead == 'p') ADVANCE(774); END_STATE(); case 668: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(836); + lookahead == 'p') ADVANCE(485); END_STATE(); case 669: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(404); + lookahead == 'p') ADVANCE(647); END_STATE(); case 670: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(837); + lookahead == 'p') ADVANCE(85); END_STATE(); case 671: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(188); + lookahead == 'p') ADVANCE(323); END_STATE(); case 672: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(408); + lookahead == 'p') ADVANCE(419); END_STATE(); case 673: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(408); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(410); + lookahead == 'p') ADVANCE(666); END_STATE(); case 674: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1623); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(694); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(242); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(842); END_STATE(); case 675: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(832); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(410); END_STATE(); case 676: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1657); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(843); END_STATE(); case 677: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1732); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(194); END_STATE(); case 678: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1656); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(414); END_STATE(); case 679: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1711); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(414); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(416); END_STATE(); case 680: + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1637); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1754); + lookahead == 'r') ADVANCE(700); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(248); END_STATE(); case 681: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1677); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(838); END_STATE(); case 682: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1742); + lookahead == 'r') ADVANCE(1671); END_STATE(); case 683: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1700); + lookahead == 'r') ADVANCE(1747); END_STATE(); case 684: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(863); + lookahead == 'r') ADVANCE(1670); END_STATE(); case 685: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1653); + lookahead == 'r') ADVANCE(1726); END_STATE(); case 686: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(565); + lookahead == 'r') ADVANCE(1683); END_STATE(); case 687: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(855); + lookahead == 'r') ADVANCE(1692); END_STATE(); case 688: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(422); + lookahead == 'r') ADVANCE(1757); END_STATE(); case 689: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(864); + lookahead == 'r') ADVANCE(1715); END_STATE(); case 690: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(435); + lookahead == 'r') ADVANCE(869); END_STATE(); case 691: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(258); + lookahead == 'r') ADVANCE(1667); END_STATE(); case 692: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(462); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(233); + lookahead == 'r') ADVANCE(571); END_STATE(); case 693: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(485); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1687); + lookahead == 'r') ADVANCE(861); END_STATE(); case 694: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(638); + lookahead == 'r') ADVANCE(428); END_STATE(); case 695: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(839); + lookahead == 'r') ADVANCE(870); END_STATE(); case 696: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(284); + lookahead == 'r') ADVANCE(441); END_STATE(); case 697: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(461); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(233); + lookahead == 'r') ADVANCE(264); END_STATE(); case 698: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(460); + lookahead == 'r') ADVANCE(468); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(233); + lookahead == 'u') ADVANCE(239); END_STATE(); case 699: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(861); + lookahead == 'r') ADVANCE(491); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1702); END_STATE(); case 700: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(862); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(713); + lookahead == 'r') ADVANCE(644); END_STATE(); case 701: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(362); + lookahead == 'r') ADVANCE(845); END_STATE(); case 702: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(572); + lookahead == 'r') ADVANCE(290); END_STATE(); case 703: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(170); + lookahead == 'r') ADVANCE(467); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(239); END_STATE(); case 704: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(718); + lookahead == 'r') ADVANCE(466); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(239); END_STATE(); case 705: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(774); + lookahead == 'r') ADVANCE(867); END_STATE(); case 706: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(306); + lookahead == 'r') ADVANCE(868); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(719); END_STATE(); case 707: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(786); + lookahead == 'r') ADVANCE(368); END_STATE(); case 708: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(780); + lookahead == 'r') ADVANCE(578); END_STATE(); case 709: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(626); + lookahead == 'r') ADVANCE(176); END_STATE(); case 710: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(367); + lookahead == 'r') ADVANCE(724); END_STATE(); case 711: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(367); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(651); + lookahead == 'r') ADVANCE(780); END_STATE(); case 712: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(314); + lookahead == 'r') ADVANCE(312); END_STATE(); case 713: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(577); + lookahead == 'r') ADVANCE(792); END_STATE(); case 714: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(318); + lookahead == 'r') ADVANCE(786); END_STATE(); case 715: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(368); + lookahead == 'r') ADVANCE(632); END_STATE(); case 716: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(321); + lookahead == 'r') ADVANCE(373); END_STATE(); case 717: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(380); + lookahead == 'r') ADVANCE(373); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(657); END_STATE(); case 718: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(484); + lookahead == 'r') ADVANCE(320); END_STATE(); case 719: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(646); + lookahead == 'r') ADVANCE(583); END_STATE(); case 720: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(796); + lookahead == 'r') ADVANCE(324); END_STATE(); case 721: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(475); + lookahead == 'r') ADVANCE(374); END_STATE(); case 722: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(203); + lookahead == 'r') ADVANCE(327); END_STATE(); case 723: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(371); + lookahead == 'r') ADVANCE(386); END_STATE(); case 724: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(263); + lookahead == 'r') ADVANCE(490); END_STATE(); case 725: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(719); + lookahead == 'r') ADVANCE(652); END_STATE(); case 726: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(568); + lookahead == 'r') ADVANCE(802); END_STATE(); case 727: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(210); + lookahead == 'r') ADVANCE(481); END_STATE(); case 728: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(211); + lookahead == 'r') ADVANCE(209); END_STATE(); case 729: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(502); + lookahead == 'r') ADVANCE(377); END_STATE(); case 730: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1632); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(269); END_STATE(); case 731: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1627); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(725); END_STATE(); case 732: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1628); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(574); END_STATE(); case 733: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1629); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(216); END_STATE(); case 734: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1722); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(217); END_STATE(); case 735: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1702); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(508); END_STATE(); case 736: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1727); + lookahead == 's') ADVANCE(1646); END_STATE(); case 737: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1695); + lookahead == 's') ADVANCE(1641); END_STATE(); case 738: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1637); + lookahead == 's') ADVANCE(1642); END_STATE(); case 739: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1701); + lookahead == 's') ADVANCE(1643); END_STATE(); case 740: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1664); + lookahead == 's') ADVANCE(1737); END_STATE(); case 741: if (lookahead == 'S' || - lookahead == 's') ADVANCE(357); + lookahead == 's') ADVANCE(1717); END_STATE(); case 742: if (lookahead == 'S' || - lookahead == 's') ADVANCE(791); + lookahead == 's') ADVANCE(1742); END_STATE(); case 743: if (lookahead == 'S' || - lookahead == 's') ADVANCE(256); + lookahead == 's') ADVANCE(1710); END_STATE(); case 744: if (lookahead == 'S' || - lookahead == 's') ADVANCE(730); + lookahead == 's') ADVANCE(1651); END_STATE(); case 745: if (lookahead == 'S' || - lookahead == 's') ADVANCE(767); + lookahead == 's') ADVANCE(1716); END_STATE(); case 746: if (lookahead == 'S' || - lookahead == 's') ADVANCE(302); + lookahead == 's') ADVANCE(1678); END_STATE(); case 747: if (lookahead == 'S' || - lookahead == 's') ADVANCE(481); + lookahead == 's') ADVANCE(363); END_STATE(); case 748: if (lookahead == 'S' || - lookahead == 's') ADVANCE(651); + lookahead == 's') ADVANCE(797); END_STATE(); case 749: if (lookahead == 'S' || - lookahead == 's') ADVANCE(463); + lookahead == 's') ADVANCE(262); END_STATE(); case 750: if (lookahead == 'S' || - lookahead == 's') ADVANCE(304); + lookahead == 's') ADVANCE(736); END_STATE(); case 751: if (lookahead == 'S' || - lookahead == 's') ADVANCE(202); + lookahead == 's') ADVANCE(773); END_STATE(); case 752: if (lookahead == 'S' || - lookahead == 's') ADVANCE(319); + lookahead == 's') ADVANCE(308); END_STATE(); case 753: if (lookahead == 'S' || - lookahead == 's') ADVANCE(360); + lookahead == 's') ADVANCE(487); END_STATE(); case 754: if (lookahead == 'S' || - lookahead == 's') ADVANCE(301); + lookahead == 's') ADVANCE(657); END_STATE(); case 755: if (lookahead == 'S' || - lookahead == 's') ADVANCE(751); + lookahead == 's') ADVANCE(469); END_STATE(); case 756: if (lookahead == 'S' || - lookahead == 's') ADVANCE(198); + lookahead == 's') ADVANCE(310); END_STATE(); case 757: if (lookahead == 'S' || - lookahead == 's') ADVANCE(798); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(215); + lookahead == 's') ADVANCE(208); END_STATE(); case 758: if (lookahead == 'S' || - lookahead == 's') ADVANCE(798); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(215); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(402); + lookahead == 's') ADVANCE(325); END_STATE(); case 759: if (lookahead == 'S' || - lookahead == 's') ADVANCE(386); + lookahead == 's') ADVANCE(366); END_STATE(); case 760: if (lookahead == 'S' || - lookahead == 's') ADVANCE(416); + lookahead == 's') ADVANCE(307); END_STATE(); case 761: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1687); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(757); END_STATE(); case 762: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1686); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(204); END_STATE(); case 763: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(804); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1760); + lookahead == 't') ADVANCE(221); END_STATE(); case 764: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(804); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1741); + lookahead == 't') ADVANCE(221); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(408); END_STATE(); case 765: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1766); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(392); END_STATE(); case 766: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1689); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(422); END_STATE(); case 767: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1759); + lookahead == 't') ADVANCE(1702); END_STATE(); case 768: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1665); + lookahead == 't') ADVANCE(1701); END_STATE(); case 769: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + lookahead == 't') ADVANCE(1774); END_STATE(); case 770: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1667); + lookahead == 't') ADVANCE(1756); END_STATE(); case 771: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1673); + lookahead == 't') ADVANCE(1780); END_STATE(); case 772: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1720); + lookahead == 't') ADVANCE(1704); END_STATE(); case 773: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1753); + lookahead == 't') ADVANCE(1773); END_STATE(); case 774: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1719); + lookahead == 't') ADVANCE(1679); END_STATE(); case 775: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1679); + lookahead == 't') ADVANCE(1700); END_STATE(); case 776: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1683); + lookahead == 't') ADVANCE(1681); END_STATE(); case 777: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1725); + lookahead == 't') ADVANCE(1688); END_STATE(); case 778: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1771); + lookahead == 't') ADVANCE(1735); END_STATE(); case 779: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1634); + lookahead == 't') ADVANCE(1768); END_STATE(); case 780: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1718); + lookahead == 't') ADVANCE(1734); END_STATE(); case 781: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1668); + lookahead == 't') ADVANCE(1694); END_STATE(); case 782: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1735); + lookahead == 't') ADVANCE(1698); END_STATE(); case 783: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1609); + lookahead == 't') ADVANCE(1740); END_STATE(); case 784: if (lookahead == 'T' || - lookahead == 't') ADVANCE(700); + lookahead == 't') ADVANCE(1785); END_STATE(); case 785: if (lookahead == 'T' || - lookahead == 't') ADVANCE(152); + lookahead == 't') ADVANCE(1648); END_STATE(); case 786: if (lookahead == 'T' || - lookahead == 't') ADVANCE(865); + lookahead == 't') ADVANCE(1733); END_STATE(); case 787: if (lookahead == 'T' || - lookahead == 't') ADVANCE(442); + lookahead == 't') ADVANCE(1682); END_STATE(); case 788: if (lookahead == 'T' || - lookahead == 't') ADVANCE(487); + lookahead == 't') ADVANCE(1750); END_STATE(); case 789: if (lookahead == 'T' || - lookahead == 't') ADVANCE(215); + lookahead == 't') ADVANCE(1623); END_STATE(); case 790: if (lookahead == 'T' || - lookahead == 't') ADVANCE(215); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(402); + lookahead == 't') ADVANCE(706); END_STATE(); case 791: if (lookahead == 'T' || - lookahead == 't') ADVANCE(703); + lookahead == 't') ADVANCE(158); END_STATE(); case 792: if (lookahead == 'T' || - lookahead == 't') ADVANCE(668); + lookahead == 't') ADVANCE(871); END_STATE(); case 793: if (lookahead == 'T' || - lookahead == 't') ADVANCE(739); + lookahead == 't') ADVANCE(448); END_STATE(); case 794: if (lookahead == 'T' || - lookahead == 't') ADVANCE(67); + lookahead == 't') ADVANCE(493); END_STATE(); case 795: if (lookahead == 'T' || - lookahead == 't') ADVANCE(735); + lookahead == 't') ADVANCE(221); END_STATE(); case 796: if (lookahead == 'T' || - lookahead == 't') ADVANCE(722); + lookahead == 't') ADVANCE(221); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(408); END_STATE(); case 797: if (lookahead == 'T' || - lookahead == 't') ADVANCE(472); + lookahead == 't') ADVANCE(709); END_STATE(); case 798: if (lookahead == 'T' || - lookahead == 't') ADVANCE(695); + lookahead == 't') ADVANCE(674); END_STATE(); case 799: if (lookahead == 'T' || - lookahead == 't') ADVANCE(183); + lookahead == 't') ADVANCE(745); END_STATE(); case 800: if (lookahead == 'T' || - lookahead == 't') ADVANCE(156); + lookahead == 't') ADVANCE(72); END_STATE(); case 801: if (lookahead == 'T' || - lookahead == 't') ADVANCE(312); + lookahead == 't') ADVANCE(741); END_STATE(); case 802: if (lookahead == 'T' || - lookahead == 't') ADVANCE(313); + lookahead == 't') ADVANCE(728); END_STATE(); case 803: if (lookahead == 'T' || - lookahead == 't') ADVANCE(410); + lookahead == 't') ADVANCE(478); END_STATE(); case 804: if (lookahead == 'T' || - lookahead == 't') ADVANCE(376); + lookahead == 't') ADVANCE(701); END_STATE(); case 805: if (lookahead == 'T' || - lookahead == 't') ADVANCE(452); + lookahead == 't') ADVANCE(189); END_STATE(); case 806: if (lookahead == 'T' || - lookahead == 't') ADVANCE(840); + lookahead == 't') ADVANCE(162); END_STATE(); case 807: if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); + lookahead == 't') ADVANCE(318); END_STATE(); case 808: if (lookahead == 'T' || - lookahead == 't') ADVANCE(269); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(467); + lookahead == 't') ADVANCE(319); END_STATE(); case 809: if (lookahead == 'T' || - lookahead == 't') ADVANCE(647); + lookahead == 't') ADVANCE(416); END_STATE(); case 810: if (lookahead == 'T' || - lookahead == 't') ADVANCE(184); + lookahead == 't') ADVANCE(382); END_STATE(); case 811: if (lookahead == 'T' || - lookahead == 't') ADVANCE(186); + lookahead == 't') ADVANCE(458); END_STATE(); case 812: if (lookahead == 'T' || - lookahead == 't') ADVANCE(388); + lookahead == 't') ADVANCE(846); END_STATE(); case 813: if (lookahead == 'T' || - lookahead == 't') ADVANCE(389); + lookahead == 't') ADVANCE(275); END_STATE(); case 814: if (lookahead == 'T' || - lookahead == 't') ADVANCE(399); + lookahead == 't') ADVANCE(275); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(473); END_STATE(); case 815: if (lookahead == 'T' || - lookahead == 't') ADVANCE(493); + lookahead == 't') ADVANCE(653); END_STATE(); case 816: if (lookahead == 'T' || - lookahead == 't') ADVANCE(490); + lookahead == 't') ADVANCE(190); END_STATE(); case 817: if (lookahead == 'T' || - lookahead == 't') ADVANCE(670); + lookahead == 't') ADVANCE(192); END_STATE(); case 818: if (lookahead == 'T' || - lookahead == 't') ADVANCE(495); + lookahead == 't') ADVANCE(394); END_STATE(); case 819: if (lookahead == 'T' || - lookahead == 't') ADVANCE(496); + lookahead == 't') ADVANCE(395); END_STATE(); case 820: if (lookahead == 'T' || - lookahead == 't') ADVANCE(218); + lookahead == 't') ADVANCE(405); END_STATE(); case 821: if (lookahead == 'T' || - lookahead == 't') ADVANCE(497); + lookahead == 't') ADVANCE(499); END_STATE(); case 822: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(420); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(496); END_STATE(); case 823: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(555); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(676); END_STATE(); case 824: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(593); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(501); END_STATE(); case 825: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(691); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(502); END_STATE(); case 826: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(747); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(224); END_STATE(); case 827: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(545); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(503); END_STATE(); case 828: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(546); + lookahead == 'u') ADVANCE(426); END_STATE(); case 829: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(547); + lookahead == 'u') ADVANCE(561); END_STATE(); case 830: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(548); + lookahead == 'u') ADVANCE(599); END_STATE(); case 831: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(702); + lookahead == 'u') ADVANCE(697); END_STATE(); case 832: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(310); + lookahead == 'u') ADVANCE(753); END_STATE(); case 833: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(614); + lookahead == 'u') ADVANCE(551); END_STATE(); case 834: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(792); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(361); + lookahead == 'u') ADVANCE(552); END_STATE(); case 835: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(783); + lookahead == 'u') ADVANCE(553); END_STATE(); case 836: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(770); + lookahead == 'u') ADVANCE(554); END_STATE(); case 837: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(781); + lookahead == 'u') ADVANCE(708); END_STATE(); case 838: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(724); + lookahead == 'u') ADVANCE(316); END_STATE(); case 839: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(260); + lookahead == 'u') ADVANCE(620); END_STATE(); case 840: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(714); + lookahead == 'u') ADVANCE(798); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(367); END_STATE(); case 841: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(478); + lookahead == 'u') ADVANCE(789); END_STATE(); case 842: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(605); + lookahead == 'u') ADVANCE(776); END_STATE(); case 843: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(716); + lookahead == 'u') ADVANCE(787); END_STATE(); case 844: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(393); + lookahead == 'u') ADVANCE(730); END_STATE(); case 845: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(817); + lookahead == 'u') ADVANCE(266); END_STATE(); case 846: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(428); + lookahead == 'u') ADVANCE(720); END_STATE(); case 847: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(353); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(814); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(484); END_STATE(); case 848: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(350); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(611); END_STATE(); case 849: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(405); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(722); END_STATE(); case 850: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(199); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(399); END_STATE(); case 851: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(409); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(823); END_STATE(); case 852: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(417); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(434); END_STATE(); case 853: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1639); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(359); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(782); + lookahead == 'x') ADVANCE(820); END_STATE(); case 854: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1738); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(356); END_STATE(); case 855: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(492); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(411); END_STATE(); case 856: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(455); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(205); END_STATE(); case 857: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1755); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(415); END_STATE(); case 858: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1780); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(423); END_STATE(); case 859: + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1653); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1781); + lookahead == 'x') ADVANCE(788); END_STATE(); case 860: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(491); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1753); END_STATE(); case 861: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1663); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(498); END_STATE(); case 862: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1736); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(461); END_STATE(); case 863: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1712); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1769); END_STATE(); case 864: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1778); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1794); END_STATE(); case 865: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1688); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1795); END_STATE(); case 866: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1776); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(497); END_STATE(); case 867: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1764); + lookahead == 'y') ADVANCE(1677); END_STATE(); case 868: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(856); + lookahead == 'y') ADVANCE(1751); END_STATE(); case 869: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1737); + lookahead == 'y') ADVANCE(1727); END_STATE(); case 870: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1698); + lookahead == 'y') ADVANCE(1792); END_STATE(); case 871: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(155); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1703); END_STATE(); case 872: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(320); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1790); END_STATE(); case 873: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(214); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1778); END_STATE(); case 874: - if (eof) ADVANCE(879); - if (lookahead == '\n') SKIP(876) + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(862); END_STATE(); case 875: - if (eof) ADVANCE(879); - if (lookahead == '\n') SKIP(876) - if (lookahead == '\r') SKIP(874) + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1752); END_STATE(); case 876: - if (eof) ADVANCE(879); - if (lookahead == '"') ADVANCE(1595); - if (lookahead == '\'') ADVANCE(1600); - if (lookahead == '(') ADVANCE(1604); - if (lookahead == ')') ADVANCE(1605); - if (lookahead == '*') ADVANCE(1589); - if (lookahead == '+') ADVANCE(1611); - if (lookahead == ',') ADVANCE(1666); - if (lookahead == '-') ADVANCE(1612); - if (lookahead == '.') ADVANCE(1590); - if (lookahead == '/') ADVANCE(897); - if (lookahead == ':') ADVANCE(1671); - if (lookahead == '<') ADVANCE(1613); - if (lookahead == '=') ADVANCE(1616); - if (lookahead == '>') ADVANCE(1617); - if (lookahead == 'B') ADVANCE(142); - if (lookahead == 'L') ADVANCE(117); - if (lookahead == 'N') ADVANCE(124); - if (lookahead == 'S') ADVANCE(105); - if (lookahead == '\\') SKIP(875) - if (lookahead == 'b') ADVANCE(329); - if (lookahead == 'l') ADVANCE(145); - if (lookahead == 'n') ADVANCE(332); - if (lookahead == 's') ADVANCE(337); - if (lookahead == '{') ADVANCE(898); - if (lookahead == '}') ADVANCE(904); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1713); + END_STATE(); + case 877: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(161); + END_STATE(); + case 878: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(326); + END_STATE(); + case 879: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(220); + END_STATE(); + case 880: + if (eof) ADVANCE(885); + if (lookahead == '\n') SKIP(882) + END_STATE(); + case 881: + if (eof) ADVANCE(885); + if (lookahead == '\n') SKIP(882) + if (lookahead == '\r') SKIP(880) + END_STATE(); + case 882: + if (eof) ADVANCE(885); + if (lookahead == '"') ADVANCE(1609); + if (lookahead == '\'') ADVANCE(1614); + if (lookahead == '(') ADVANCE(1618); + if (lookahead == ')') ADVANCE(1619); + if (lookahead == '*') ADVANCE(1603); + if (lookahead == '+') ADVANCE(1625); + if (lookahead == ',') ADVANCE(1680); + if (lookahead == '-') ADVANCE(1626); + if (lookahead == '.') ADVANCE(1604); + if (lookahead == '/') ADVANCE(903); + if (lookahead == ':') ADVANCE(1686); + if (lookahead == '<') ADVANCE(1627); + if (lookahead == '=') ADVANCE(1630); + if (lookahead == '>') ADVANCE(1631); + if (lookahead == 'B') ADVANCE(148); + if (lookahead == 'L') ADVANCE(123); + if (lookahead == 'N') ADVANCE(130); + if (lookahead == 'S') ADVANCE(111); + if (lookahead == '\\') SKIP(881) + if (lookahead == 'b') ADVANCE(335); + if (lookahead == 'l') ADVANCE(151); + if (lookahead == 'n') ADVANCE(338); + if (lookahead == 's') ADVANCE(343); + if (lookahead == '{') ADVANCE(904); + if (lookahead == '}') ADVANCE(910); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(222); + lookahead == 'a') ADVANCE(228); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(146); + lookahead == 'c') ADVANCE(152); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(147); + lookahead == 'd') ADVANCE(153); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(148); + lookahead == 'e') ADVANCE(154); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(456); + lookahead == 'f') ADVANCE(462); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(341); + lookahead == 'g') ADVANCE(347); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(551); + lookahead == 'i') ADVANCE(557); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(352); + lookahead == 'k') ADVANCE(358); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(150); + lookahead == 'm') ADVANCE(156); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(419); + lookahead == 'o') ADVANCE(425); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(151); + lookahead == 'p') ADVANCE(157); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(244); + lookahead == 'r') ADVANCE(250); if (lookahead == 'T' || - lookahead == 't') ADVANCE(161); + lookahead == 't') ADVANCE(167); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(580); + lookahead == 'u') ADVANCE(586); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(619); + lookahead == 'v') ADVANCE(625); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(444); + lookahead == 'w') ADVANCE(450); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(876) + lookahead == 65279) SKIP(882) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); + lookahead == ' ') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); - case 877: - if (eof) ADVANCE(879); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 883: + if (eof) ADVANCE(885); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(966); + lookahead == 'c') ADVANCE(976); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1131); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1269); + lookahead == 'e') ADVANCE(1282); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1242); + lookahead == 'f') ADVANCE(1255); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1335); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1324); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1438); + lookahead == 'p') ADVANCE(1452); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1134); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1340); + lookahead == 'u') ADVANCE(1353); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13294,30 +13510,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(877) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(883) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 878: - if (eof) ADVANCE(879); - if (lookahead == '/') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1588); - if (lookahead == '{') ADVANCE(898); + case 884: + if (eof) ADVANCE(885); + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1602); + if (lookahead == '{') ADVANCE(904); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(966); + lookahead == 'c') ADVANCE(976); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1119); + lookahead == 'd') ADVANCE(1131); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1242); + lookahead == 'f') ADVANCE(1255); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1335); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1311); + lookahead == 'o') ADVANCE(1324); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1438); + lookahead == 'p') ADVANCE(1452); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1122); + lookahead == 'r') ADVANCE(1134); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1340); + lookahead == 'u') ADVANCE(1353); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13325,6565 +13541,6639 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(878) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1588); + lookahead == 65279) SKIP(884) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); END_STATE(); - case 879: + case 885: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 880: + case 886: ACCEPT_TOKEN(sym_file_name); END_STATE(); - case 881: + case 887: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 882: + case 888: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '*') ADVANCE(896); - if (lookahead != 0) ADVANCE(48); + if (lookahead == '*') ADVANCE(902); + if (lookahead != 0) ADVANCE(52); END_STATE(); - case 883: + case 889: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '.') ADVANCE(144); + if (lookahead == '.') ADVANCE(150); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(86); + lookahead == '|') ADVANCE(92); END_STATE(); - case 884: + case 890: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1598); + lookahead != '\\') ADVANCE(1612); END_STATE(); - case 885: + case 891: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1603); + lookahead != '\\') ADVANCE(1617); END_STATE(); - case 886: + case 892: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(890); + lookahead != '\n') ADVANCE(896); END_STATE(); - case 887: + case 893: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\r') ADVANCE(890); + if (lookahead == '\r') ADVANCE(896); if (lookahead != 0 && - lookahead != '\n') ADVANCE(890); + lookahead != '\n') ADVANCE(896); END_STATE(); - case 888: + case 894: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '*') ADVANCE(895); - if (lookahead == '/') ADVANCE(886); + if (lookahead == '*') ADVANCE(901); + if (lookahead == '/') ADVANCE(892); if (lookahead != 0 && - lookahead != '\n') ADVANCE(890); + lookahead != '\n') ADVANCE(896); END_STATE(); - case 889: + case 895: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '/') ADVANCE(888); - if (lookahead == '\\') ADVANCE(887); - if (lookahead == '{') ADVANCE(902); + if (lookahead == '/') ADVANCE(894); + if (lookahead == '\\') ADVANCE(893); + if (lookahead == '{') ADVANCE(908); if (lookahead == '\t' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(889); + lookahead == 65279) ADVANCE(895); if (lookahead != 0 && - lookahead != '\n') ADVANCE(890); + lookahead != '\n') ADVANCE(896); END_STATE(); - case 890: + case 896: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(890); + lookahead != '\n') ADVANCE(896); END_STATE(); - case 891: + case 897: ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); - case 892: + case 898: ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '*') ADVANCE(896); + if (lookahead == '*') ADVANCE(902); if (lookahead != 0 && - lookahead != '/') ADVANCE(48); + lookahead != '/') ADVANCE(52); END_STATE(); - case 893: + case 899: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1598); + lookahead != '\\') ADVANCE(1612); END_STATE(); - case 894: + case 900: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1603); + lookahead != '\\') ADVANCE(1617); END_STATE(); - case 895: + case 901: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(890); + lookahead != '\n') ADVANCE(896); END_STATE(); - case 896: + case 902: ACCEPT_TOKEN(aux_sym_comment_token2); - if (lookahead == '*') ADVANCE(896); + if (lookahead == '*') ADVANCE(902); if (lookahead != 0 && - lookahead != '/') ADVANCE(48); + lookahead != '/') ADVANCE(52); END_STATE(); - case 897: + case 903: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(891); - if (lookahead == '/') ADVANCE(881); + if (lookahead == '*') ADVANCE(897); + if (lookahead == '/') ADVANCE(887); END_STATE(); - case 898: + case 904: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 899: + case 905: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(896); - if (lookahead != 0) ADVANCE(48); + if (lookahead == '*') ADVANCE(902); + if (lookahead != 0) ADVANCE(52); END_STATE(); - case 900: + case 906: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1598); + lookahead != '\\') ADVANCE(1612); END_STATE(); - case 901: + case 907: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1603); + lookahead != '\\') ADVANCE(1617); END_STATE(); - case 902: + case 908: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && - lookahead != '\n') ADVANCE(890); - END_STATE(); - case 903: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 904: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 905: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(931); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); - END_STATE(); - case 906: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1151); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); - END_STATE(); - case 907: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(964); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); - END_STATE(); - case 908: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1229); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead != '\n') ADVANCE(896); END_STATE(); case 909: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1443); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1156); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 910: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(932); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 911: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1041); + if (lookahead == '-') ADVANCE(939); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 912: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1185); + if (lookahead == '-') ADVANCE(1163); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 913: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1067); + if (lookahead == '-') ADVANCE(974); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 914: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1275); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1641); + if (lookahead == '-') ADVANCE(1242); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1275); + if (lookahead == '-') ADVANCE(1457); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1397); + if (lookahead == '-') ADVANCE(941); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1279); + if (lookahead == '-') ADVANCE(940); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(973); + if (lookahead == '-') ADVANCE(1051); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1538); + if (lookahead == '-') ADVANCE(1198); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1276); + if (lookahead == '-') ADVANCE(1077); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 921: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1477); + if (lookahead == '-') ADVANCE(1288); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1728); + lookahead == 'd') ADVANCE(1655); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 922: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1252); + if (lookahead == '-') ADVANCE(1288); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 923: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1232); + if (lookahead == '-') ADVANCE(1411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 924: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1302); + if (lookahead == '-') ADVANCE(1292); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 925: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1375); + if (lookahead == '-') ADVANCE(983); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 926: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1230); + if (lookahead == '-') ADVANCE(1552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 927: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(949); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1427); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(983); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1194); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1544); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(976); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1025); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1289); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 928: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(1692); - if (lookahead == 'd') ADVANCE(1692); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1491); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1743); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 929: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(956); - if (lookahead == 'e') ADVANCE(1524); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1389); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1353); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + if (lookahead == '-') ADVANCE(1265); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 930: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1655); - if (lookahead == 'e') ADVANCE(1655); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1245); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 931: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(954); - if (lookahead == 'e') ADVANCE(1457); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1363); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(984); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1315); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 932: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(955); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1389); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 933: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(1661); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1164); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 934: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(943); - if (lookahead == 'h') ADVANCE(1366); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1243); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 935: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(937); - if (lookahead == 'i') ADVANCE(1259); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1026); + if (lookahead == 'C') ADVANCE(959); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); + lookahead == 'e') ADVANCE(1441); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(993); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1207); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1023); + lookahead == 'o') ADVANCE(1558); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1619); + lookahead == 't') ADVANCE(986); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1035); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 936: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(940); + if (lookahead == 'D') ADVANCE(1707); + if (lookahead == 'd') ADVANCE(1707); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K') ADVANCE(930); - if (lookahead == 'k') ADVANCE(1088); + if (lookahead == 'E') ADVANCE(966); + if (lookahead == 'e') ADVANCE(1538); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1403); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1366); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(936); + if (lookahead == 'E') ADVANCE(1669); + if (lookahead == 'e') ADVANCE(1669); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(938); + if (lookahead == 'E') ADVANCE(964); + if (lookahead == 'e') ADVANCE(1471); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1376); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(994); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(933); + if (lookahead == 'E') ADVANCE(964); + if (lookahead == 'e') ADVANCE(1471); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(905); - if (lookahead == 'o') ADVANCE(906); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1622); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1297); + if (lookahead == 'E') ADVANCE(965); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(939); + if (lookahead == 'G') ADVANCE(1675); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(928); - if (lookahead == 'o') ADVANCE(1061); + if (lookahead == 'H') ADVANCE(952); + if (lookahead == 'h') ADVANCE(1379); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(951); + if (lookahead == 'I') ADVANCE(946); + if (lookahead == 'i') ADVANCE(1272); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1036); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1634); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1033); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1633); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(950); - if (lookahead == 'o') ADVANCE(1414); + if (lookahead == 'I') ADVANCE(949); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(910); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1622); + if (lookahead == 'K') ADVANCE(938); + if (lookahead == 'k') ADVANCE(1099); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 947: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(910); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); + if (lookahead == 'L') ADVANCE(945); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 948: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(910); + if (lookahead == 'L') ADVANCE(947); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 949: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(942); + if (lookahead == 'N') ADVANCE(942); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 950: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1754); - if (lookahead == 'r') ADVANCE(1754); + if (lookahead == 'O') ADVANCE(911); + if (lookahead == 'o') ADVANCE(912); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1636); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1310); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 951: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1705); + if (lookahead == 'O') ADVANCE(948); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 952: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(944); + if (lookahead == 'O') ADVANCE(936); + if (lookahead == 'o') ADVANCE(1071); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 953: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(945); - if (lookahead == 'r') ADVANCE(1378); + if (lookahead == 'O') ADVANCE(961); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 954: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(953); - if (lookahead == 'r') ADVANCE(1450); + if (lookahead == 'O') ADVANCE(960); + if (lookahead == 'o') ADVANCE(1428); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 955: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(952); + if (lookahead == 'O') ADVANCE(916); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1636); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 956: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(934); - if (lookahead == 't') ADVANCE(1210); + if (lookahead == 'O') ADVANCE(916); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1635); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 957: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y') ADVANCE(1757); - if (lookahead == 'y') ADVANCE(1757); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1193); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1314); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1123); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1183); + if (lookahead == 'O') ADVANCE(916); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 958: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1026); + if (lookahead == 'O') ADVANCE(917); + if (lookahead == 'o') ADVANCE(933); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1259); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1023); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1619); + lookahead == 'e') ADVANCE(1635); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 959: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1389); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1524); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1353); + if (lookahead == 'R') ADVANCE(951); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 960: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1052); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(971); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1260); + if (lookahead == 'R') ADVANCE(1683); + if (lookahead == 'r') ADVANCE(1683); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 961: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1037); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1204); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1474); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1058); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1623); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1426); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1168); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1032); + if (lookahead == 'R') ADVANCE(1720); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 962: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1195); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1451); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1216); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1024); + if (lookahead == 'R') ADVANCE(953); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 963: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(909); + if (lookahead == 'R') ADVANCE(954); + if (lookahead == 'r') ADVANCE(1392); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 964: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1567); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1365); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(965); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1383); + if (lookahead == 'R') ADVANCE(963); + if (lookahead == 'r') ADVANCE(1464); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 965: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1578); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1354); + if (lookahead == 'R') ADVANCE(962); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 966: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1472); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(972); + if (lookahead == 'T') ADVANCE(943); + if (lookahead == 't') ADVANCE(1223); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 967: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1255); + if (lookahead == 'Y') ADVANCE(1771); + if (lookahead == 'y') ADVANCE(1771); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1206); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1327); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1135); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1196); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 968: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1506); + lookahead == 'a') ADVANCE(1036); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1182); + lookahead == 'e') ADVANCE(1634); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1272); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1745); + lookahead == 'o') ADVANCE(1033); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1633); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 969: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1300); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1290); + lookahead == 'a') ADVANCE(1403); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1538); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1366); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 970: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1300); + lookahead == 'a') ADVANCE(1062); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(981); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1273); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 971: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1469); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1478); + lookahead == 'a') ADVANCE(1047); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1217); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1488); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1068); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1637); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1440); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1181); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1042); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 972: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1469); + lookahead == 'a') ADVANCE(1208); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1465); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1229); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1034); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 973: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1191); + lookahead == 'a') ADVANCE(915); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 974: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1027); + lookahead == 'a') ADVANCE(1581); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1378); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(975); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1397); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 975: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1422); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1304); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1131); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1730); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(982); + lookahead == 'a') ADVANCE(1592); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1367); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 976: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1509); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1390); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1141); + lookahead == 'a') ADVANCE(1486); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(982); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 977: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1509); + lookahead == 'a') ADVANCE(1268); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 978: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1409); + lookahead == 'a') ADVANCE(1520); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1195); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1220); + lookahead == 'o') ADVANCE(1760); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 979: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1262); + lookahead == 'a') ADVANCE(1313); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1303); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 980: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1263); + lookahead == 'a') ADVANCE(1313); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 981: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1291); + lookahead == 'a') ADVANCE(1483); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1492); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 982: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1328); + lookahead == 'a') ADVANCE(1483); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 983: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1432); + lookahead == 'a') ADVANCE(1204); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 984: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1233); + lookahead == 'a') ADVANCE(1037); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 985: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1264); + lookahead == 'a') ADVANCE(1436); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1317); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1143); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1745); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(992); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 986: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1525); + lookahead == 'a') ADVANCE(1523); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1404); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1153); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 987: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1520); + lookahead == 'a') ADVANCE(1523); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 988: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1424); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1680); + lookahead == 'a') ADVANCE(1423); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1233); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 989: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1278); + lookahead == 'a') ADVANCE(1275); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 990: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1494); + lookahead == 'a') ADVANCE(1276); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 991: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1267); + lookahead == 'a') ADVANCE(1304); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 992: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1339); + lookahead == 'a') ADVANCE(1341); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 993: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1428); + lookahead == 'a') ADVANCE(1446); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 994: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1523); + lookahead == 'a') ADVANCE(1246); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 995: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1508); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1441); + lookahead == 'a') ADVANCE(1277); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 996: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1399); + lookahead == 'a') ADVANCE(1539); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 997: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1029); + lookahead == 'a') ADVANCE(1534); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 998: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1231); + lookahead == 'a') ADVANCE(1438); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1695); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 999: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1301); + lookahead == 'a') ADVANCE(1291); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1000: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1197); + lookahead == 'a') ADVANCE(1508); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1001: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1274); + lookahead == 'a') ADVANCE(1280); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1002: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1235); + lookahead == 'a') ADVANCE(1352); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1003: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1521); + lookahead == 'a') ADVANCE(1442); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1004: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1468); + lookahead == 'a') ADVANCE(1537); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1005: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1047); + lookahead == 'a') ADVANCE(1522); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1455); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1006: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1473); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(972); + lookahead == 'a') ADVANCE(1413); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1007: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1199); + lookahead == 'a') ADVANCE(1039); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1008: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1479); + lookahead == 'a') ADVANCE(1244); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1009: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1200); + lookahead == 'a') ADVANCE(1314); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1010: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1051); + lookahead == 'a') ADVANCE(1210); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1011: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1519); + lookahead == 'a') ADVANCE(1287); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1012: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1454); + lookahead == 'a') ADVANCE(1248); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1013: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1030); + lookahead == 'a') ADVANCE(1535); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1014: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1533); + lookahead == 'a') ADVANCE(1482); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1015: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1031); + lookahead == 'a') ADVANCE(1057); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1016: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1536); + lookahead == 'a') ADVANCE(1487); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(982); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1017: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1537); + lookahead == 'a') ADVANCE(1212); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1018: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1056); + lookahead == 'a') ADVANCE(1493); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1019: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1575); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1353); + lookahead == 'a') ADVANCE(1213); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1020: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1471); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1057); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1400); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1654); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1136); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1061); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1021: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1471); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1533); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1022: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1562); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1358); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1407); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1468); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1023: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(913); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1040); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1024: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1287); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1547); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1025: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(907); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1041); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1026: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1128); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1065); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1486); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1550); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1027: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1145); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1551); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1028: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(980); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1066); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1029: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1282); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1589); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1366); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); END_STATE(); case 1030: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1283); + lookahead == 'b') ADVANCE(1485); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1067); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1414); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1668); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1148); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1031: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1284); + lookahead == 'b') ADVANCE(1485); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1032: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1133); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1172); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1576); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1371); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1421); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1033: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1642); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(920); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1034: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1645); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1300); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1035: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1362); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1186); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(913); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1036: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1256); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1140); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1075); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1500); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1037: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1201); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1157); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1038: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1257); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(990); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1039: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1202); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1295); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1040: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1258); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1296); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1041: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1364); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1297); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1042: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1139); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(995); + lookahead == 'c') ADVANCE(1145); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1165); + lookahead == 't') ADVANCE(1185); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1043: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1139); + lookahead == 'c') ADVANCE(1656); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1044: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(996); + lookahead == 'c') ADVANCE(1659); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1045: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1270); + lookahead == 'c') ADVANCE(1375); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1199); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1046: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1097); + lookahead == 'c') ADVANCE(1269); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1047: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1499); + lookahead == 'c') ADVANCE(1214); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1048: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1528); + lookahead == 'c') ADVANCE(1270); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1049: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1148); + lookahead == 'c') ADVANCE(1215); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1050: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1113); + lookahead == 'c') ADVANCE(1271); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1051: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1116); + lookahead == 'c') ADVANCE(1377); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1052: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1206); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1089); + lookahead == 'c') ADVANCE(1151); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1005); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1039); + lookahead == 't') ADVANCE(1178); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1053: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1511); + lookahead == 'c') ADVANCE(1151); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1054: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1208); + lookahead == 'c') ADVANCE(1006); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1055: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1522); + lookahead == 'c') ADVANCE(1283); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1056: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1535); + lookahead == 'c') ADVANCE(1108); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1057: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1762); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1571); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1513); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1058: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1591); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1542); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1059: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1631); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1160); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1060: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1777); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1124); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1061: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1692); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1127); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1062: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1726); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1219); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1100); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1049); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1063: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1644); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1525); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1064: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1717); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1221); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1065: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1470); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1536); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1066: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1358); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1549); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1067: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1234); + lookahead == 'd') ADVANCE(1776); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1585); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1068: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(922); + lookahead == 'd') ADVANCE(1605); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1069: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1467); + lookahead == 'd') ADVANCE(1645); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1070: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1177); + lookahead == 'd') ADVANCE(1791); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1071: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1104); + lookahead == 'd') ADVANCE(1707); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1072: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1121); + lookahead == 'd') ADVANCE(1741); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1073: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1124); + lookahead == 'd') ADVANCE(1658); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1074: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1130); + lookahead == 'd') ADVANCE(1732); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1075: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1198); + lookahead == 'd') ADVANCE(1484); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1076: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1285); + lookahead == 'd') ADVANCE(1371); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1077: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1559); + lookahead == 'd') ADVANCE(1247); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1078: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1193); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1314); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1123); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1183); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1757); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(929); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1079: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1193); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1481); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1080: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1619); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1190); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1081: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1622); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(906); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1297); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1115); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1082: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1622); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1133); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1083: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1427); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(983); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1194); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1544); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(976); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1025); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1136); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1084: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1626); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1361); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1142); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1085: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1272); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(979); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1475); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1211); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1086: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1272); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1298); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1087: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1316); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1281); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1573); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1088: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1655); + lookahead == 'e') ADVANCE(1206); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1327); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1135); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1196); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1771); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1089: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1746); + lookahead == 'e') ADVANCE(1206); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1090: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1670); + lookahead == 'e') ADVANCE(1634); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1633); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1091: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(921); + lookahead == 'e') ADVANCE(1636); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(912); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1310); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1092: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1659); + lookahead == 'e') ADVANCE(1636); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(933); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1093: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1710); + lookahead == 'e') ADVANCE(1636); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1094: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1610); + lookahead == 'e') ADVANCE(1441); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(993); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1207); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1558); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(986); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1035); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1095: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1749); + lookahead == 'e') ADVANCE(1640); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1374); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1638); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1096: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1672); + lookahead == 'e') ADVANCE(1285); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(989); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1489); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1097: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1721); + lookahead == 'e') ADVANCE(1285); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1098: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1648); + lookahead == 'e') ADVANCE(1329); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1294); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1099: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1779); + lookahead == 'e') ADVANCE(1669); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1100: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1765); + lookahead == 'e') ADVANCE(1761); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1101: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1723); + lookahead == 'e') ADVANCE(1685); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1102: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1643); + lookahead == 'e') ADVANCE(928); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1103: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1782); + lookahead == 'e') ADVANCE(1673); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1104: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1684); + lookahead == 'e') ADVANCE(1725); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1105: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1651); + lookahead == 'e') ADVANCE(1624); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1106: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1724); + lookahead == 'e') ADVANCE(1764); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1107: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1690); + lookahead == 'e') ADVANCE(1687); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1108: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1748); + lookahead == 'e') ADVANCE(1736); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1109: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1729); + lookahead == 'e') ADVANCE(1662); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1110: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1674); + lookahead == 'e') ADVANCE(1793); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1111: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1658); + lookahead == 'e') ADVANCE(1779); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1112: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1770); + lookahead == 'e') ADVANCE(1738); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1113: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1783); + lookahead == 'e') ADVANCE(1657); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1114: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1646); + lookahead == 'e') ADVANCE(1796); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1115: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1709); + lookahead == 'e') ADVANCE(1699); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1116: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1682); + lookahead == 'e') ADVANCE(1665); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1117: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1621); + lookahead == 'e') ADVANCE(1739); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1118: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1624); + lookahead == 'e') ADVANCE(1705); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1119: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1182); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1745); + lookahead == 'e') ADVANCE(1763); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1120: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(914); + lookahead == 'e') ADVANCE(1744); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1121: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1572); + lookahead == 'e') ADVANCE(1689); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1122: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1403); + lookahead == 'e') ADVANCE(1672); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1123: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(967); + lookahead == 'e') ADVANCE(1784); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1124: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1573); + lookahead == 'e') ADVANCE(1797); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1125: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1393); + lookahead == 'e') ADVANCE(1660); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1126: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1568); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(906); + lookahead == 'e') ADVANCE(1724); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1127: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1568); + lookahead == 'e') ADVANCE(1697); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1128: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1261); + lookahead == 'e') ADVANCE(1635); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(933); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1129: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1125); + lookahead == 'e') ADVANCE(1635); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1130: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1574); + lookahead == 'e') ADVANCE(1639); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1638); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1131: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1315); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1360); + lookahead == 'e') ADVANCE(1195); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1760); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1132: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(908); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1325); + lookahead == 'e') ADVANCE(921); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1133: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1395); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1543); + lookahead == 'e') ADVANCE(1586); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1134: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1577); + lookahead == 'e') ADVANCE(1417); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1135: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1462); + lookahead == 'e') ADVANCE(977); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1136: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1434); + lookahead == 'e') ADVANCE(1587); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1137: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1289); + lookahead == 'e') ADVANCE(1407); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1138: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1332); + lookahead == 'e') ADVANCE(1582); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(912); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1139: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1077); + lookahead == 'e') ADVANCE(1582); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1140: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1437); + lookahead == 'e') ADVANCE(1274); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1141: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(981); + lookahead == 'e') ADVANCE(1137); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1142: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1464); + lookahead == 'e') ADVANCE(1588); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1143: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1410); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1487); + lookahead == 'e') ADVANCE(1328); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1373); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1144: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1410); + lookahead == 'e') ADVANCE(914); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1338); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1145: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1265); + lookahead == 'e') ADVANCE(1409); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1557); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1146: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(920); + lookahead == 'e') ADVANCE(1591); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1147: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1063); + lookahead == 'e') ADVANCE(1476); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1148: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(925); + lookahead == 'e') ADVANCE(1448); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1149: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1466); + lookahead == 'e') ADVANCE(1302); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1150: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1064); + lookahead == 'e') ADVANCE(1345); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1151: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1457); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1363); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(984); + lookahead == 'e') ADVANCE(1087); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1152: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1423); + lookahead == 'e') ADVANCE(1451); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1153: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1345); + lookahead == 'e') ADVANCE(991); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1154: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1495); + lookahead == 'e') ADVANCE(1478); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1155: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1455); + lookahead == 'e') ADVANCE(1424); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1501); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1156: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1498); + lookahead == 'e') ADVANCE(1424); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1157: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1412); + lookahead == 'e') ADVANCE(1278); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1158: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1531); + lookahead == 'e') ADVANCE(927); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1159: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1415); + lookahead == 'e') ADVANCE(1073); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1160: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1416); + lookahead == 'e') ADVANCE(932); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1161: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1514); + lookahead == 'e') ADVANCE(1480); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1162: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1430); + lookahead == 'e') ADVANCE(1074); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1163: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1304); + lookahead == 'e') ADVANCE(1471); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1376); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(994); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1164: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1286); + lookahead == 'e') ADVANCE(1471); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1165: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1055); + lookahead == 'e') ADVANCE(1437); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1166: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1482); + lookahead == 'e') ADVANCE(1358); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1167: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1439); + lookahead == 'e') ADVANCE(1509); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1168: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1331); + lookahead == 'e') ADVANCE(1469); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1169: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1444); + lookahead == 'e') ADVANCE(1512); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1170: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(915); + lookahead == 'e') ADVANCE(1426); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1171: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1308); + lookahead == 'e') ADVANCE(1545); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1172: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1338); + lookahead == 'e') ADVANCE(1429); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1173: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(990); + lookahead == 'e') ADVANCE(1430); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1174: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1344); + lookahead == 'e') ADVANCE(1528); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1175: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1447); + lookahead == 'e') ADVANCE(1444); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1176: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1440); + lookahead == 'e') ADVANCE(1317); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1177: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(923); + lookahead == 'e') ADVANCE(1299); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1178: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(926); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1325); + lookahead == 'e') ADVANCE(1065); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1179: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1458); + lookahead == 'e') ADVANCE(1496); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1180: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1761); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1731); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1211); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1507); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1140); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1453); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1181: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1761); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1344); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1182: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1650); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1458); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1183: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1188); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(922); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1184: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1010); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1321); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1185: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1238); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1351); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1186: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1155); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1014); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1173); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1421); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1000); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1187: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1380); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1357); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1188: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1157); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1461); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1189: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1175); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1454); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1190: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1189); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(930); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1191: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1532); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(934); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1338); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1192: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1696); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1472); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1193: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1225); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1775); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1746); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1224); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1521); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1152); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1194: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1334); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1775); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1195: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1091); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(999); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1664); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1196: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1154); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1201); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1197: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1100); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1020); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1198: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1161); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1251); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1199: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1112); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1168); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1024); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1186); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1435); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1200: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1149); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1394); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1201: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1758); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1170); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1202: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1763); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1188); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1203: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1699); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1202); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1204: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1357); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1546); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1205: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1087); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1429); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1711); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1206: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1092); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1238); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1207: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1240); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1347); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1208: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1135); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1102); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1009); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1209: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(992); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1167); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1210: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1366); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1111); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1211: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1152); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1174); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1212: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1169); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1123); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1213: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1176); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1161); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1214: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1012); + lookahead == 'h') ADVANCE(1772); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1215: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1085); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(969); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1324); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1777); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1216: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1303); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1042); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1714); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1217: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1587); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1370); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1218: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1566); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1098); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1515); + lookahead == 'o') ADVANCE(1443); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1219: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1586); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1103); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1220: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1059); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1253); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1221: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1298); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1147); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1222: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1033); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1002); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1223: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1325); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1379); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1224: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1034); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1165); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1225: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1329); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1182); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1226: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1001); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1189); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1227: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1075); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1022); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1228: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1372); + lookahead == 'i') ADVANCE(1096); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1422); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(979); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1337); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1229: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1347); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1227); + lookahead == 'i') ADVANCE(1316); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1052); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1230: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1347); + lookahead == 'i') ADVANCE(1601); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1231: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1335); + lookahead == 'i') ADVANCE(1580); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1529); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1232: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1326); + lookahead == 'i') ADVANCE(1600); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1233: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1496); + lookahead == 'i') ADVANCE(1069); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1234: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1413); + lookahead == 'i') ADVANCE(1311); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1235: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1500); + lookahead == 'i') ADVANCE(1043); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1236: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1448); + lookahead == 'i') ADVANCE(1338); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1237: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1142); + lookahead == 'i') ADVANCE(1044); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1238: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1164); + lookahead == 'i') ADVANCE(1342); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1239: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1564); + lookahead == 'i') ADVANCE(1011); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1240: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1281); + lookahead == 'i') ADVANCE(1085); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1241: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1071); + lookahead == 'i') ADVANCE(1386); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1242: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1351); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1324); + lookahead == 'i') ADVANCE(1360); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1240); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1243: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1373); + lookahead == 'i') ADVANCE(1360); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1244: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1086); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(970); + lookahead == 'i') ADVANCE(1348); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1245: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1086); + lookahead == 'i') ADVANCE(1339); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1246: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1480); + lookahead == 'i') ADVANCE(1510); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1247: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1327); + lookahead == 'i') ADVANCE(1427); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1248: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1374); + lookahead == 'i') ADVANCE(1514); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1249: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1376); + lookahead == 'i') ADVANCE(1462); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1250: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1377); + lookahead == 'i') ADVANCE(1154); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1251: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1305); + lookahead == 'i') ADVANCE(1177); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1252: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1350); + lookahead == 'i') ADVANCE(1578); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1253: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1306); + lookahead == 'i') ADVANCE(1294); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1254: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1307); + lookahead == 'i') ADVANCE(1081); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1255: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1756); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1364); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1422); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1337); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1256: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1750); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1387); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1257: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1751); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1097); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(980); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1258: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1752); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1097); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1259: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1088); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1494); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1260: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1288); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1484); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1330); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1340); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1261: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1635); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1388); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1262: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1691); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1390); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1263: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1640); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1391); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1264: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1774); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1318); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1265: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1636); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1363); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1266: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1703); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1319); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1267: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1769); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1320); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1268: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1474); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1058); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1770); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1269: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1474); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1765); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1543); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1766); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1584); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1767); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1272: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1060); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1099); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1273: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1585); + lookahead == 'l') ADVANCE(1301); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1498); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1343); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1274: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1217); + lookahead == 'l') ADVANCE(1649); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1275: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1367); + lookahead == 'l') ADVANCE(1706); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1276: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1368); + lookahead == 'l') ADVANCE(1654); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1277: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1171); + lookahead == 'l') ADVANCE(1788); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1278: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1273); + lookahead == 'l') ADVANCE(1650); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1279: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(974); + lookahead == 'l') ADVANCE(1718); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1280: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(972); + lookahead == 'l') ADVANCE(1783); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1281: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1096); + lookahead == 'l') ADVANCE(1488); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1068); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1282: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1105); + lookahead == 'l') ADVANCE(1488); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1283: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1111); + lookahead == 'l') ADVANCE(1557); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1284: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1114); + lookahead == 'l') ADVANCE(1598); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1285: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1115); + lookahead == 'l') ADVANCE(1070); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1286: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1069); + lookahead == 'l') ADVANCE(1599); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1287: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1224); + lookahead == 'l') ADVANCE(1230); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1288: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(987); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1299); + lookahead == 'l') ADVANCE(1380); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1289: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1016); + lookahead == 'l') ADVANCE(1381); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1290: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1697); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1184); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1291: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1708); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1286); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1292: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1767); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(984); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1293: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1768); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(982); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1294: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1772); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1107); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1295: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1773); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1116); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1296: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1391); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1122); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1297: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(911); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1125); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1542); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1126); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1333); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1079); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1094); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1237); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1158); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(997); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1312); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1166); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1026); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1303: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(993); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1003); + lookahead == 'm') ADVANCE(1712); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1304: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1394); + lookahead == 'm') ADVANCE(1723); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1305: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1545); + lookahead == 'm') ADVANCE(1781); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1306: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1546); + lookahead == 'm') ADVANCE(1782); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1307: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1547); + lookahead == 'm') ADVANCE(1786); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1308: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1174); + lookahead == 'm') ADVANCE(1787); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1309: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1017); + lookahead == 'm') ADVANCE(1405); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1058); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(918); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1731); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1507); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1556); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1731); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1346); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1022); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1132); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1105); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(988); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1171); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1315: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1669); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1179); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1316: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1747); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1095); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1003); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1013); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1317: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1676); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1408); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1318: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1678); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1559); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1319: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1743); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1560); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1320: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1694); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1561); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1321: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1662); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1187); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1322: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1401); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1027); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1323: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1675); + lookahead == 'n') ADVANCE(1068); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1324: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1053); + lookahead == 'n') ADVANCE(1746); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1325: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1192); + lookahead == 'n') ADVANCE(1746); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1326: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1187); + lookahead == 'n') ADVANCE(1032); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1144); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1327: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(979); + lookahead == 'n') ADVANCE(998); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1328: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1483); + lookahead == 'n') ADVANCE(1684); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1329: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1461); + lookahead == 'n') ADVANCE(1762); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1106); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1330: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1488); + lookahead == 'n') ADVANCE(1691); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1331: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1489); + lookahead == 'n') ADVANCE(1693); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1332: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1062); + lookahead == 'n') ADVANCE(1758); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1333: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(917); + lookahead == 'n') ADVANCE(1709); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1334: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(986); + lookahead == 'n') ADVANCE(1676); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1335: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1463); + lookahead == 'n') ADVANCE(1415); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1336: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(912); + lookahead == 'n') ADVANCE(1690); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1337: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1271); + lookahead == 'n') ADVANCE(1063); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1338: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1492); + lookahead == 'n') ADVANCE(1205); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1339: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1076); + lookahead == 'n') ADVANCE(1200); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1340: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1066); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1223); + lookahead == 'n') ADVANCE(989); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1341: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1066); + lookahead == 'n') ADVANCE(1497); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1342: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1098); + lookahead == 'n') ADVANCE(1475); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1501); + lookahead == 'n') ADVANCE(1502); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1344: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1512); + lookahead == 'n') ADVANCE(1503); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1345: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1049); + lookahead == 'n') ADVANCE(1072); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1346: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1404); + lookahead == 'n') ADVANCE(924); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1347: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1072); + lookahead == 'n') ADVANCE(996); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1348: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1402); + lookahead == 'n') ADVANCE(1477); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1349: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1513); + lookahead == 'n') ADVANCE(919); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1350: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1073); + lookahead == 'n') ADVANCE(1284); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1351: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); + lookahead == 'n') ADVANCE(1506); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1352: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1074); + lookahead == 'n') ADVANCE(1086); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1353: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1251); + lookahead == 'n') ADVANCE(1076); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1236); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1354: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1254); + lookahead == 'n') ADVANCE(1076); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1745); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1109); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1220); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1515); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1713); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1526); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1733); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1059); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1418); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1569); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1082); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1028); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1416); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1070); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1527); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1036); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1083); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1396); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(999); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1558); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1084); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1061); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1264); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1038); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1267); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1040); + lookahead == 'o') ADVANCE(1760); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1266); + lookahead == 'o') ADVANCE(1233); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1411); + lookahead == 'o') ADVANCE(1728); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1369); + lookahead == 'o') ADVANCE(1748); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1318); + lookahead == 'o') ADVANCE(1422); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1336); + lookahead == 'o') ADVANCE(1583); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1374: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1319); + lookahead == 'o') ADVANCE(1038); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1375: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1337); + lookahead == 'o') ADVANCE(1080); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1376: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1320); + lookahead == 'o') ADVANCE(1046); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1377: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1321); + lookahead == 'o') ADVANCE(1410); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1378: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1414); + lookahead == 'o') ADVANCE(1572); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1379: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1417); + lookahead == 'o') ADVANCE(1071); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1380: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1433); + lookahead == 'o') ADVANCE(1048); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1381: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1349); + lookahead == 'o') ADVANCE(1050); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1382: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1541); + lookahead == 'o') ADVANCE(1279); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1383: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1529); + lookahead == 'o') ADVANCE(1425); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1384: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1398); + lookahead == 'o') ADVANCE(933); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1385: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1043); + lookahead == 'o') ADVANCE(1382); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1386: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1555); + lookahead == 'o') ADVANCE(1331); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1387: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1561); + lookahead == 'o') ADVANCE(1349); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1388: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1530); + lookahead == 'o') ADVANCE(1332); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1715); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1054); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1221); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1350); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1740); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1333); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1277); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1334); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1548); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1428); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(924); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1431); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(919); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1447); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1491); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1362); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1396: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1237); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1555); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1397: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1371); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1543); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1398: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(918); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1412); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1399: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1106); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1053); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1400: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1138); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1569); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1401: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1550); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1162); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1575); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1402: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1550); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1544); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1403: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1173); + lookahead == 'p') ADVANCE(1730); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1552); + lookahead == 't') ADVANCE(1064); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1234); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1404: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1551); + lookahead == 'p') ADVANCE(1755); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1405: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1553); + lookahead == 'p') ADVANCE(1290); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1406: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1623); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1562); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1407: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1549); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(931); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1408: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1657); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(926); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1409: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1652); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1505); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1410: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1579); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1250); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1411: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1732); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1385); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1412: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1656); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(925); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1413: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1711); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1117); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1414: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1754); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1150); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1415: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1677); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1564); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1175); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1416: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1742); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1564); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1417: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1700); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1186); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1566); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1418: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1123); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1757); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1565); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1419: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(982); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1567); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1218); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1024); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1637); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1580); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1435); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1563); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1422: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1196); + lookahead == 'r') ADVANCE(1671); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1423: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1570); + lookahead == 'r') ADVANCE(1666); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1424: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1581); + lookahead == 'r') ADVANCE(1593); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1425: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1046); + lookahead == 'r') ADVANCE(1747); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1426: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1370); + lookahead == 'r') ADVANCE(1670); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1427: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1226); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1687); + lookahead == 'r') ADVANCE(1726); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1428: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1582); + lookahead == 'r') ADVANCE(1683); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1429: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1068); + lookahead == 'r') ADVANCE(1692); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1430: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1184); + lookahead == 'r') ADVANCE(1757); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1431: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1557); + lookahead == 'r') ADVANCE(1715); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1432: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1120); + lookahead == 'r') ADVANCE(1135); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1771); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1433: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1309); + lookahead == 'r') ADVANCE(992); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1434: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1000); + lookahead == 'r') ADVANCE(1231); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1034); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1435: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1317); + lookahead == 'r') ADVANCE(1594); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1449); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1436: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1005); + lookahead == 'r') ADVANCE(1209); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1437: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1449); + lookahead == 'r') ADVANCE(1584); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1438: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1385); + lookahead == 'r') ADVANCE(1595); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1439: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1497); + lookahead == 'r') ADVANCE(1056); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1440: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1095); + lookahead == 'r') ADVANCE(1383); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1441: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1510); + lookahead == 'r') ADVANCE(1239); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1702); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1442: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1323); + lookahead == 'r') ADVANCE(1596); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1443: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1137); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1386); + lookahead == 'r') ADVANCE(1078); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1444: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1103); + lookahead == 'r') ADVANCE(1197); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1445: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1107); + lookahead == 'r') ADVANCE(1571); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1446: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1110); + lookahead == 'r') ADVANCE(1132); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1447: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1150); + lookahead == 'r') ADVANCE(1322); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1448: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1475); + lookahead == 'r') ADVANCE(1010); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1449: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1241); + lookahead == 'r') ADVANCE(1330); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1450: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1378); + lookahead == 'r') ADVANCE(1015); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1451: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1516); + lookahead == 'r') ADVANCE(1463); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1452: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(970); + lookahead == 'r') ADVANCE(1399); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1453: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1002); + lookahead == 'r') ADVANCE(1511); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1454: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1170); + lookahead == 'r') ADVANCE(1106); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1455: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1153); + lookahead == 'r') ADVANCE(1524); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1456: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1050); + lookahead == 'r') ADVANCE(1336); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1457: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1450); + lookahead == 'r') ADVANCE(1149); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1400); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1458: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1007); + lookahead == 'r') ADVANCE(1114); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1654); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1118); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1632); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1121); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1627); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1162); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1628); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1489); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1629); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1254); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1722); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1392); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1702); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1530); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1727); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(980); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1012); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1486); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1183); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1460); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1166); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1044); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1060); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1527); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1464); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1089); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1039); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1017); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1473: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1089); + lookahead == 's') ADVANCE(1668); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1474: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1090); + lookahead == 's') ADVANCE(1646); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1475: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1490); + lookahead == 's') ADVANCE(1641); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1476: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1239); + lookahead == 's') ADVANCE(1642); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1477: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1219); + lookahead == 's') ADVANCE(1643); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1478: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1093); + lookahead == 's') ADVANCE(1737); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1479: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1156); + lookahead == 's') ADVANCE(1717); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1480: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1108); + lookahead == 's') ADVANCE(1742); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1481: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1178); + lookahead == 's') ADVANCE(1710); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1482: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1485); + lookahead == 's') ADVANCE(1500); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1483: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1018); + lookahead == 's') ADVANCE(1474); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1484: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1517); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(998); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1167); + lookahead == 's') ADVANCE(1054); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1485: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1009); + lookahead == 's') ADVANCE(1541); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1486: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1100); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1760); + lookahead == 't') ADVANCE(1049); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1741); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1100); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1766); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1101); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1689); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1504); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1759); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1252); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1665); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1232); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1104); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1667); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1169); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1673); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1119); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1720); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1191); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1753); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1499); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1719); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1028); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1498: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1531); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1679); + lookahead == 't') ADVANCE(1008); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1180); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1683); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1019); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1500: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1725); + lookahead == 't') ADVANCE(1774); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1501: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1771); + lookahead == 't') ADVANCE(1756); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1502: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1607); + lookahead == 't') ADVANCE(1780); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1503: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1608); + lookahead == 't') ADVANCE(1704); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1504: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1668); + lookahead == 't') ADVANCE(1773); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1505: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1735); + lookahead == 't') ADVANCE(1679); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1506: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(963); + lookahead == 't') ADVANCE(1700); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1507: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1392); + lookahead == 't') ADVANCE(1681); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1508: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1203); + lookahead == 't') ADVANCE(1688); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1509: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1222); + lookahead == 't') ADVANCE(1735); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1510: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1583); + lookahead == 't') ADVANCE(1768); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1511: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1228); + lookahead == 't') ADVANCE(1734); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1512: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1465); + lookahead == 't') ADVANCE(1694); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1513: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(998); + lookahead == 't') ADVANCE(1698); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1514: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(916); + lookahead == 't') ADVANCE(1740); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1515: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1165); + lookahead == 't') ADVANCE(1785); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1516: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 't') ADVANCE(1621); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1517: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1431); + lookahead == 't') ADVANCE(1622); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1518: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1384); + lookahead == 't') ADVANCE(1682); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1519: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1008); + lookahead == 't') ADVANCE(1750); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1520: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1101); + lookahead == 't') ADVANCE(973); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1521: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1102); + lookahead == 't') ADVANCE(1406); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1522: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1147); + lookahead == 't') ADVANCE(1216); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1523: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1054); + lookahead == 't') ADVANCE(1235); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1524: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1210); + lookahead == 't') ADVANCE(1597); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1525: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1556); + lookahead == 't') ADVANCE(1241); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1526: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(977); + lookahead == 't') ADVANCE(1479); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1527: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1436); + lookahead == 't') ADVANCE(1008); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1528: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1379); + lookahead == 't') ADVANCE(923); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1529: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(985); + lookahead == 't') ADVANCE(1178); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1530: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(991); + lookahead == 't') ADVANCE(1467); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1531: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1159); + lookahead == 't') ADVANCE(1445); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1532: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1160); + lookahead == 't') ADVANCE(1398); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1533: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1243); + lookahead == 't') ADVANCE(1018); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1534: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1405); + lookahead == 't') ADVANCE(1112); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1535: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1248); + lookahead == 't') ADVANCE(1113); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1536: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1249); + lookahead == 't') ADVANCE(1159); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1537: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1250); + lookahead == 't') ADVANCE(1064); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1538: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1013); + lookahead == 't') ADVANCE(1223); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1143); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1570); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1507); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(987); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1330); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1450); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1292); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1393); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1476); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(995); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1425); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1001); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1293); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1172); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1294); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1173); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1295); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1256); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1493); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1419); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1099); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1261); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1502); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1262); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1503); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1263); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1442); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1023); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1553: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1504); + lookahead == 'u') ADVANCE(1155); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1554: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1025); + lookahead == 'u') ADVANCE(1521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1555: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1456); + lookahead == 'u') ADVANCE(1343); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1556: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1445); + lookahead == 'u') ADVANCE(1305); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1557: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1048); + lookahead == 'u') ADVANCE(1490); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1558: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1343); + lookahead == 'u') ADVANCE(1439); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1559: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1446); + lookahead == 'u') ADVANCE(1306); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1560: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1144); + lookahead == 'u') ADVANCE(1307); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1561: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1534); + lookahead == 'u') ADVANCE(1308); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1562: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1190); + lookahead == 'u') ADVANCE(1507); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1136); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1110); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1146); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1516); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1140); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1003); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1456); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1179); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1518); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1639); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1035); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1738); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1470); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1246); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1459); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1212); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1058); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1755); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1356); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1780); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1460); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1781); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1156); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1221); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1548); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1045); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1203); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1505); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1148); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1253); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1158); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1663); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1152); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1736); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1013); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1712); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1192); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1778); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1653); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1688); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1753); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1776); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1259); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1764); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1225); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); case 1586: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1769); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1587: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1794); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1588: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1795); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1589: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1234); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1590: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1055); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1591: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1519); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1592: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1266); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1593: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1677); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1594: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1751); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1595: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1727); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1596: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1792); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1597: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1703); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1598: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1790); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1599: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1778); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1602); + END_STATE(); + case 1600: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1109); + lookahead == 'z') ADVANCE(1120); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); - case 1587: + case 1601: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1015); + lookahead == 'z') ADVANCE(1025); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); - case 1588: + case 1602: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); - case 1589: + case 1603: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 1590: + case 1604: ACCEPT_TOKEN(sym__terminator); END_STATE(); - case 1591: + case 1605: ACCEPT_TOKEN(aux_sym__block_terminator_token1); END_STATE(); - case 1592: + case 1606: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 1593: + case 1607: ACCEPT_TOKEN(sym_null_expression); END_STATE(); - case 1594: + case 1608: ACCEPT_TOKEN(sym__integer_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); - case 1595: + case 1609: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1596: + case 1610: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '*') ADVANCE(893); - if (lookahead == '/') ADVANCE(884); + if (lookahead == '*') ADVANCE(899); + if (lookahead == '/') ADVANCE(890); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1598); + lookahead != '\\') ADVANCE(1612); END_STATE(); - case 1597: + case 1611: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '/') ADVANCE(1596); + if (lookahead == '/') ADVANCE(1610); if (lookahead == '\\') ADVANCE(14); - if (lookahead == '{') ADVANCE(900); + if (lookahead == '{') ADVANCE(906); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -19891,35 +20181,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1597); + lookahead == 65279) ADVANCE(1611); if (lookahead != 0 && - lookahead != '"') ADVANCE(1598); + lookahead != '"') ADVANCE(1612); END_STATE(); - case 1598: + case 1612: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1598); + lookahead != '\\') ADVANCE(1612); END_STATE(); - case 1599: + case 1613: ACCEPT_TOKEN(aux_sym_double_quoted_string_token2); END_STATE(); - case 1600: + case 1614: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1601: + case 1615: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); - if (lookahead == '*') ADVANCE(894); - if (lookahead == '/') ADVANCE(885); + if (lookahead == '*') ADVANCE(900); + if (lookahead == '/') ADVANCE(891); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1603); + lookahead != '\\') ADVANCE(1617); END_STATE(); - case 1602: + case 1616: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); - if (lookahead == '/') ADVANCE(1601); + if (lookahead == '/') ADVANCE(1615); if (lookahead == '\\') ADVANCE(13); - if (lookahead == '{') ADVANCE(901); + if (lookahead == '{') ADVANCE(907); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -19927,585 +20217,585 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1602); + lookahead == 65279) ADVANCE(1616); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1603); + lookahead != '\'') ADVANCE(1617); END_STATE(); - case 1603: + case 1617: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1603); + lookahead != '\\') ADVANCE(1617); END_STATE(); - case 1604: + case 1618: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 1605: + case 1619: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 1606: + case 1620: ACCEPT_TOKEN(aux_sym_unary_expression_token1); END_STATE(); - case 1607: + case 1621: ACCEPT_TOKEN(aux_sym_input_expression_token1); END_STATE(); - case 1608: + case 1622: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(1387); + if (lookahead == '-') ADVANCE(1401); END_STATE(); - case 1609: + case 1623: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(650); + if (lookahead == '-') ADVANCE(656); END_STATE(); - case 1610: + case 1624: ACCEPT_TOKEN(aux_sym_input_expression_token2); END_STATE(); - case 1611: + case 1625: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 1612: + case 1626: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 1613: + case 1627: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1614); - if (lookahead == '>') ADVANCE(1615); + if (lookahead == '=') ADVANCE(1628); + if (lookahead == '>') ADVANCE(1629); END_STATE(); - case 1614: + case 1628: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 1615: + case 1629: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 1616: + case 1630: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1617: + case 1631: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1618); + if (lookahead == '=') ADVANCE(1632); END_STATE(); - case 1618: + case 1632: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 1619: + case 1633: ACCEPT_TOKEN(aux_sym__comparison_operator_token1); END_STATE(); - case 1620: + case 1634: ACCEPT_TOKEN(aux_sym__comparison_operator_token2); END_STATE(); - case 1621: + case 1635: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); END_STATE(); - case 1622: + case 1636: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1639); + lookahead == 'w') ADVANCE(1653); END_STATE(); - case 1623: + case 1637: ACCEPT_TOKEN(aux_sym__comparison_operator_token4); END_STATE(); - case 1624: + case 1638: ACCEPT_TOKEN(aux_sym__comparison_operator_token5); END_STATE(); - case 1625: + case 1639: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); END_STATE(); - case 1626: + case 1640: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1686); + lookahead == 't') ADVANCE(1701); END_STATE(); - case 1627: + case 1641: ACCEPT_TOKEN(aux_sym__comparison_operator_token7); END_STATE(); - case 1628: + case 1642: ACCEPT_TOKEN(aux_sym__comparison_operator_token8); END_STATE(); - case 1629: + case 1643: ACCEPT_TOKEN(aux_sym__comparison_operator_token9); END_STATE(); - case 1630: + case 1644: ACCEPT_TOKEN(aux_sym_include_argument_token1); END_STATE(); - case 1631: + case 1645: ACCEPT_TOKEN(aux_sym_primitive_type_token1); END_STATE(); - case 1632: + case 1646: ACCEPT_TOKEN(aux_sym_primitive_type_token19); END_STATE(); - case 1633: + case 1647: ACCEPT_TOKEN(aux_sym_variable_tuning_token1); END_STATE(); - case 1634: + case 1648: ACCEPT_TOKEN(aux_sym_variable_tuning_token2); END_STATE(); - case 1635: + case 1649: ACCEPT_TOKEN(aux_sym_variable_tuning_token3); END_STATE(); - case 1636: + case 1650: ACCEPT_TOKEN(aux_sym_variable_tuning_token4); END_STATE(); - case 1637: + case 1651: ACCEPT_TOKEN(aux_sym_variable_tuning_token5); END_STATE(); - case 1638: + case 1652: ACCEPT_TOKEN(aux_sym_variable_tuning_token6); END_STATE(); - case 1639: + case 1653: ACCEPT_TOKEN(aux_sym_scope_tuning_token1); END_STATE(); - case 1640: + case 1654: ACCEPT_TOKEN(aux_sym_scope_tuning_token2); END_STATE(); - case 1641: + case 1655: ACCEPT_TOKEN(aux_sym_scope_tuning_token3); END_STATE(); - case 1642: + case 1656: ACCEPT_TOKEN(aux_sym_scope_tuning_token4); END_STATE(); - case 1643: + case 1657: ACCEPT_TOKEN(aux_sym_access_tuning_token1); END_STATE(); - case 1644: + case 1658: ACCEPT_TOKEN(aux_sym_access_tuning_token2); END_STATE(); - case 1645: + case 1659: ACCEPT_TOKEN(aux_sym_access_tuning_token3); END_STATE(); - case 1646: + case 1660: ACCEPT_TOKEN(aux_sym_serialization_tuning_token1); END_STATE(); - case 1647: + case 1661: ACCEPT_TOKEN(aux_sym_serialization_tuning_token2); END_STATE(); - case 1648: + case 1662: ACCEPT_TOKEN(aux_sym_variable_definition_token1); END_STATE(); - case 1649: + case 1663: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(602); + lookahead == 'i') ADVANCE(608); END_STATE(); - case 1650: + case 1664: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1342); + lookahead == 'i') ADVANCE(1355); END_STATE(); - case 1651: + case 1665: ACCEPT_TOKEN(aux_sym_variable_definition_token3); END_STATE(); - case 1652: + case 1666: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(997); + lookahead == 'i') ADVANCE(1007); END_STATE(); - case 1653: + case 1667: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(216); + lookahead == 'i') ADVANCE(222); END_STATE(); - case 1654: + case 1668: ACCEPT_TOKEN(aux_sym_variable_definition_token5); END_STATE(); - case 1655: + case 1669: ACCEPT_TOKEN(aux_sym_variable_definition_token6); END_STATE(); - case 1656: + case 1670: ACCEPT_TOKEN(aux_sym_buffer_definition_token1); END_STATE(); - case 1657: + case 1671: ACCEPT_TOKEN(aux_sym_buffer_definition_token2); END_STATE(); - case 1658: + case 1672: ACCEPT_TOKEN(aux_sym_buffer_definition_token3); END_STATE(); - case 1659: + case 1673: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token1); END_STATE(); - case 1660: + case 1674: ACCEPT_TOKEN(anon_sym_SCROLLING); END_STATE(); - case 1661: + case 1675: ACCEPT_TOKEN(anon_sym_SCROLLING); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); - case 1662: + case 1676: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token2); END_STATE(); - case 1663: + case 1677: ACCEPT_TOKEN(aux_sym_query_definition_token1); END_STATE(); - case 1664: + case 1678: ACCEPT_TOKEN(aux_sym_query_definition_token2); END_STATE(); - case 1665: + case 1679: ACCEPT_TOKEN(aux_sym_query_definition_token3); END_STATE(); - case 1666: + case 1680: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 1667: + case 1681: ACCEPT_TOKEN(aux_sym_argument_mode_token1); END_STATE(); - case 1668: + case 1682: ACCEPT_TOKEN(aux_sym_argument_mode_token2); END_STATE(); - case 1669: + case 1683: + ACCEPT_TOKEN(aux_sym_function_call_token1); + END_STATE(); + case 1684: ACCEPT_TOKEN(aux_sym_if_statement_token2); END_STATE(); - case 1670: + case 1685: ACCEPT_TOKEN(aux_sym_else_if_statement_token1); END_STATE(); - case 1671: + case 1686: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 1672: + case 1687: ACCEPT_TOKEN(aux_sym_while_phrase_token1); END_STATE(); - case 1673: + case 1688: ACCEPT_TOKEN(aux_sym_repeat_statement_token1); END_STATE(); - case 1674: + case 1689: ACCEPT_TOKEN(aux_sym__procedure_terminator_token1); END_STATE(); - case 1675: + case 1690: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token1); END_STATE(); - case 1676: + case 1691: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1681); + lookahead == 's') ADVANCE(1696); END_STATE(); - case 1677: + case 1692: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token2); END_STATE(); - case 1678: + case 1693: ACCEPT_TOKEN(aux_sym__function_terminator_token1); END_STATE(); - case 1679: + case 1694: ACCEPT_TOKEN(aux_sym_function_parameter_token1); END_STATE(); - case 1680: + case 1695: ACCEPT_TOKEN(aux_sym_function_parameter_token2); END_STATE(); - case 1681: + case 1696: ACCEPT_TOKEN(aux_sym_function_statement_token1); END_STATE(); - case 1682: + case 1697: ACCEPT_TOKEN(aux_sym_interface_statement_token1); END_STATE(); - case 1683: + case 1698: ACCEPT_TOKEN(aux_sym_property_type_token1); END_STATE(); - case 1684: + case 1699: ACCEPT_TOKEN(aux_sym_property_type_token2); END_STATE(); - case 1685: + case 1700: ACCEPT_TOKEN(aux_sym_property_tuning_token1); END_STATE(); - case 1686: + case 1701: ACCEPT_TOKEN(aux_sym_getter_token1); END_STATE(); - case 1687: + case 1702: ACCEPT_TOKEN(aux_sym_setter_token1); END_STATE(); - case 1688: + case 1703: ACCEPT_TOKEN(aux_sym_property_definition_token1); END_STATE(); - case 1689: + case 1704: ACCEPT_TOKEN(aux_sym_event_definition_token1); END_STATE(); - case 1690: + case 1705: ACCEPT_TOKEN(aux_sym_event_definition_token2); END_STATE(); - case 1691: + case 1706: ACCEPT_TOKEN(aux_sym_method_tuning_token1); END_STATE(); - case 1692: + case 1707: ACCEPT_TOKEN(aux_sym_method_definition_token1); END_STATE(); - case 1693: + case 1708: ACCEPT_TOKEN(anon_sym_METHOD); END_STATE(); - case 1694: + case 1709: ACCEPT_TOKEN(aux_sym_data_relation_token1); END_STATE(); - case 1695: + case 1710: ACCEPT_TOKEN(aux_sym_data_relation_token2); END_STATE(); - case 1696: + case 1711: ACCEPT_TOKEN(aux_sym_using_statement_token1); END_STATE(); - case 1697: + case 1712: ACCEPT_TOKEN(aux_sym_using_statement_token2); END_STATE(); - case 1698: + case 1713: ACCEPT_TOKEN(aux_sym_using_statement_token3); END_STATE(); - case 1699: + case 1714: ACCEPT_TOKEN(aux_sym_using_statement_token4); END_STATE(); - case 1700: + case 1715: ACCEPT_TOKEN(aux_sym_constructor_definition_token1); END_STATE(); - case 1701: + case 1716: ACCEPT_TOKEN(aux_sym_inherits_token1); END_STATE(); - case 1702: + case 1717: ACCEPT_TOKEN(aux_sym_implements_token1); END_STATE(); - case 1703: + case 1718: ACCEPT_TOKEN(aux_sym_use_widget_pool_token1); END_STATE(); - case 1704: + case 1719: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); END_STATE(); - case 1705: + case 1720: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1588); + lookahead == '|') ADVANCE(1602); END_STATE(); - case 1706: + case 1721: ACCEPT_TOKEN(aux_sym_stream_definition_token1); END_STATE(); - case 1707: + case 1722: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(453); + if (lookahead == '-') ADVANCE(459); END_STATE(); - case 1708: + case 1723: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(1209); + if (lookahead == '-') ADVANCE(1222); END_STATE(); - case 1709: + case 1724: ACCEPT_TOKEN(aux_sym_input_close_statement_token1); END_STATE(); - case 1710: + case 1725: ACCEPT_TOKEN(aux_sym_input_close_statement_token2); END_STATE(); - case 1711: + case 1726: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token1); END_STATE(); - case 1712: + case 1727: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token2); END_STATE(); - case 1713: + case 1728: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token3); END_STATE(); - case 1714: + case 1729: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token4); END_STATE(); - case 1715: + case 1730: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token5); END_STATE(); - case 1716: + case 1731: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token6); END_STATE(); - case 1717: + case 1732: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token7); END_STATE(); - case 1718: + case 1733: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token8); END_STATE(); - case 1719: + case 1734: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token9); END_STATE(); - case 1720: + case 1735: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token10); END_STATE(); - case 1721: + case 1736: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token11); END_STATE(); - case 1722: + case 1737: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token1); END_STATE(); - case 1723: + case 1738: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token2); END_STATE(); - case 1724: + case 1739: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token3); END_STATE(); - case 1725: + case 1740: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token4); END_STATE(); - case 1726: + case 1741: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token5); END_STATE(); - case 1727: + case 1742: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token6); END_STATE(); - case 1728: + case 1743: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token7); END_STATE(); - case 1729: + case 1744: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token8); END_STATE(); - case 1730: + case 1745: ACCEPT_TOKEN(aux_sym_output_stream_statement_token1); END_STATE(); - case 1731: + case 1746: ACCEPT_TOKEN(aux_sym_on_error_phrase_token1); END_STATE(); - case 1732: + case 1747: ACCEPT_TOKEN(aux_sym_on_error_phrase_token2); END_STATE(); - case 1733: + case 1748: ACCEPT_TOKEN(aux_sym_on_error_phrase_token3); END_STATE(); - case 1734: + case 1749: ACCEPT_TOKEN(aux_sym_on_error_phrase_token4); END_STATE(); - case 1735: + case 1750: ACCEPT_TOKEN(aux_sym_on_error_phrase_token5); END_STATE(); - case 1736: + case 1751: ACCEPT_TOKEN(aux_sym_on_error_phrase_token6); END_STATE(); - case 1737: + case 1752: ACCEPT_TOKEN(aux_sym_on_error_phrase_token7); END_STATE(); - case 1738: + case 1753: ACCEPT_TOKEN(aux_sym_on_error_phrase_token8); END_STATE(); - case 1739: + case 1754: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); END_STATE(); - case 1740: + case 1755: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); - if (lookahead == '-') ADVANCE(973); + if (lookahead == '-') ADVANCE(983); END_STATE(); - case 1741: + case 1756: ACCEPT_TOKEN(aux_sym_on_quit_phrase_token1); END_STATE(); - case 1742: + case 1757: ACCEPT_TOKEN(aux_sym_stop_after_phrase_token1); END_STATE(); - case 1743: + case 1758: ACCEPT_TOKEN(aux_sym_do_tuning_token1); END_STATE(); - case 1744: + case 1759: ACCEPT_TOKEN(anon_sym_BY); END_STATE(); - case 1745: + case 1760: ACCEPT_TOKEN(aux_sym_do_block_token1); END_STATE(); - case 1746: + case 1761: ACCEPT_TOKEN(aux_sym__case_terminator_token1); END_STATE(); - case 1747: + case 1762: ACCEPT_TOKEN(aux_sym_case_when_branch_token1); END_STATE(); - case 1748: + case 1763: ACCEPT_TOKEN(aux_sym_case_otherwise_branch_token1); END_STATE(); - case 1749: + case 1764: ACCEPT_TOKEN(aux_sym_where_clause_token1); END_STATE(); - case 1750: + case 1765: ACCEPT_TOKEN(aux_sym_query_tuning_token1); END_STATE(); - case 1751: + case 1766: ACCEPT_TOKEN(aux_sym_query_tuning_token2); END_STATE(); - case 1752: + case 1767: ACCEPT_TOKEN(aux_sym_query_tuning_token3); END_STATE(); - case 1753: + case 1768: ACCEPT_TOKEN(aux_sym_query_tuning_token4); END_STATE(); - case 1754: + case 1769: ACCEPT_TOKEN(aux_sym_query_tuning_token5); END_STATE(); - case 1755: - ACCEPT_TOKEN(aux_sym_query_tuning_token6); - END_STATE(); - case 1756: + case 1770: ACCEPT_TOKEN(aux_sym_sort_clause_token1); END_STATE(); - case 1757: + case 1771: ACCEPT_TOKEN(aux_sym_sort_clause_token2); END_STATE(); - case 1758: + case 1772: ACCEPT_TOKEN(aux_sym_for_phrase_token1); END_STATE(); - case 1759: + case 1773: ACCEPT_TOKEN(aux_sym_for_phrase_token2); END_STATE(); - case 1760: + case 1774: ACCEPT_TOKEN(aux_sym_for_phrase_token3); END_STATE(); - case 1761: + case 1775: ACCEPT_TOKEN(aux_sym_of_token1); END_STATE(); - case 1762: + case 1776: ACCEPT_TOKEN(aux_sym__using_and_token1); END_STATE(); - case 1763: + case 1777: ACCEPT_TOKEN(aux_sym_catch_statement_token1); END_STATE(); - case 1764: + case 1778: ACCEPT_TOKEN(aux_sym_finally_statement_token1); END_STATE(); - case 1765: + case 1779: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token1); END_STATE(); - case 1766: + case 1780: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token2); END_STATE(); - case 1767: + case 1781: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token3); END_STATE(); - case 1768: + case 1782: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token4); END_STATE(); - case 1769: + case 1783: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token5); END_STATE(); - case 1770: + case 1784: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token6); END_STATE(); - case 1771: + case 1785: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token7); END_STATE(); - case 1772: + case 1786: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token8); END_STATE(); - case 1773: + case 1787: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token9); END_STATE(); - case 1774: + case 1788: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token10); END_STATE(); - case 1775: + case 1789: ACCEPT_TOKEN(anon_sym_); - if (lookahead == ' ') ADVANCE(1775); + if (lookahead == ' ') ADVANCE(1789); END_STATE(); - case 1776: + case 1790: ACCEPT_TOKEN(aux_sym_temp_table_tuning_token1); END_STATE(); - case 1777: + case 1791: ACCEPT_TOKEN(aux_sym_field_definition_token1); END_STATE(); - case 1778: + case 1792: ACCEPT_TOKEN(aux_sym_index_tuning_token2); END_STATE(); - case 1779: + case 1793: ACCEPT_TOKEN(aux_sym_index_tuning_token3); END_STATE(); - case 1780: + case 1794: ACCEPT_TOKEN(aux_sym_index_tuning_token4); END_STATE(); - case 1781: + case 1795: ACCEPT_TOKEN(aux_sym_index_definition_token1); END_STATE(); - case 1782: + case 1796: ACCEPT_TOKEN(aux_sym_on_statement_token1); END_STATE(); - case 1783: + case 1797: ACCEPT_TOKEN(aux_sym_data_source_definition_token1); END_STATE(); default: @@ -21357,4724 +21647,4744 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 878}, - [2] = {.lex_state = 876, .external_lex_state = 1}, - [3] = {.lex_state = 876, .external_lex_state = 1}, - [4] = {.lex_state = 876, .external_lex_state = 2}, - [5] = {.lex_state = 876, .external_lex_state = 2}, - [6] = {.lex_state = 876, .external_lex_state = 3}, - [7] = {.lex_state = 876, .external_lex_state = 2}, - [8] = {.lex_state = 876, .external_lex_state = 3}, - [9] = {.lex_state = 876, .external_lex_state = 2}, - [10] = {.lex_state = 876, .external_lex_state = 2}, - [11] = {.lex_state = 876, .external_lex_state = 3}, - [12] = {.lex_state = 876, .external_lex_state = 2}, - [13] = {.lex_state = 876, .external_lex_state = 4}, - [14] = {.lex_state = 876, .external_lex_state = 4}, - [15] = {.lex_state = 876, .external_lex_state = 4}, - [16] = {.lex_state = 876, .external_lex_state = 4}, - [17] = {.lex_state = 876, .external_lex_state = 4}, - [18] = {.lex_state = 876, .external_lex_state = 4}, - [19] = {.lex_state = 876, .external_lex_state = 4}, - [20] = {.lex_state = 876, .external_lex_state = 4}, - [21] = {.lex_state = 876, .external_lex_state = 4}, - [22] = {.lex_state = 876, .external_lex_state = 4}, - [23] = {.lex_state = 876, .external_lex_state = 4}, - [24] = {.lex_state = 876, .external_lex_state = 4}, - [25] = {.lex_state = 876, .external_lex_state = 4}, - [26] = {.lex_state = 876, .external_lex_state = 4}, - [27] = {.lex_state = 876, .external_lex_state = 4}, - [28] = {.lex_state = 876, .external_lex_state = 4}, - [29] = {.lex_state = 876, .external_lex_state = 4}, - [30] = {.lex_state = 876, .external_lex_state = 4}, - [31] = {.lex_state = 876, .external_lex_state = 4}, - [32] = {.lex_state = 876, .external_lex_state = 4}, - [33] = {.lex_state = 876, .external_lex_state = 4}, - [34] = {.lex_state = 876, .external_lex_state = 4}, - [35] = {.lex_state = 876, .external_lex_state = 4}, - [36] = {.lex_state = 876, .external_lex_state = 4}, - [37] = {.lex_state = 876, .external_lex_state = 4}, - [38] = {.lex_state = 876, .external_lex_state = 4}, - [39] = {.lex_state = 876, .external_lex_state = 4}, - [40] = {.lex_state = 876, .external_lex_state = 4}, - [41] = {.lex_state = 876, .external_lex_state = 4}, - [42] = {.lex_state = 876, .external_lex_state = 4}, - [43] = {.lex_state = 876, .external_lex_state = 4}, - [44] = {.lex_state = 876, .external_lex_state = 4}, - [45] = {.lex_state = 92}, - [46] = {.lex_state = 92}, - [47] = {.lex_state = 92}, - [48] = {.lex_state = 92}, - [49] = {.lex_state = 92}, - [50] = {.lex_state = 92}, - [51] = {.lex_state = 92}, - [52] = {.lex_state = 92}, - [53] = {.lex_state = 92}, - [54] = {.lex_state = 92}, - [55] = {.lex_state = 92}, - [56] = {.lex_state = 92}, - [57] = {.lex_state = 92}, - [58] = {.lex_state = 92}, - [59] = {.lex_state = 92}, - [60] = {.lex_state = 92}, - [61] = {.lex_state = 92}, - [62] = {.lex_state = 92}, - [63] = {.lex_state = 92}, - [64] = {.lex_state = 92}, - [65] = {.lex_state = 92}, - [66] = {.lex_state = 92}, - [67] = {.lex_state = 92}, - [68] = {.lex_state = 92}, - [69] = {.lex_state = 92}, - [70] = {.lex_state = 92}, - [71] = {.lex_state = 92}, - [72] = {.lex_state = 92}, - [73] = {.lex_state = 92}, - [74] = {.lex_state = 92}, - [75] = {.lex_state = 92}, - [76] = {.lex_state = 92}, - [77] = {.lex_state = 92}, - [78] = {.lex_state = 92}, - [79] = {.lex_state = 92}, - [80] = {.lex_state = 92}, - [81] = {.lex_state = 92}, - [82] = {.lex_state = 92}, - [83] = {.lex_state = 92}, - [84] = {.lex_state = 92}, - [85] = {.lex_state = 92}, - [86] = {.lex_state = 92}, - [87] = {.lex_state = 92}, - [88] = {.lex_state = 92}, - [89] = {.lex_state = 92}, - [90] = {.lex_state = 92}, - [91] = {.lex_state = 92}, - [92] = {.lex_state = 92}, - [93] = {.lex_state = 92}, - [94] = {.lex_state = 92}, - [95] = {.lex_state = 92}, - [96] = {.lex_state = 92}, - [97] = {.lex_state = 92}, - [98] = {.lex_state = 92}, - [99] = {.lex_state = 92}, - [100] = {.lex_state = 92}, - [101] = {.lex_state = 92}, - [102] = {.lex_state = 92}, - [103] = {.lex_state = 92}, - [104] = {.lex_state = 92}, - [105] = {.lex_state = 92}, - [106] = {.lex_state = 92}, - [107] = {.lex_state = 92}, - [108] = {.lex_state = 92}, - [109] = {.lex_state = 92}, - [110] = {.lex_state = 92}, - [111] = {.lex_state = 92}, - [112] = {.lex_state = 92}, - [113] = {.lex_state = 92}, - [114] = {.lex_state = 92}, - [115] = {.lex_state = 92}, - [116] = {.lex_state = 92}, - [117] = {.lex_state = 876, .external_lex_state = 4}, - [118] = {.lex_state = 92}, - [119] = {.lex_state = 92}, - [120] = {.lex_state = 92}, - [121] = {.lex_state = 876, .external_lex_state = 4}, - [122] = {.lex_state = 92}, - [123] = {.lex_state = 92}, - [124] = {.lex_state = 92}, - [125] = {.lex_state = 876, .external_lex_state = 4}, - [126] = {.lex_state = 92}, - [127] = {.lex_state = 92}, - [128] = {.lex_state = 92}, - [129] = {.lex_state = 92}, - [130] = {.lex_state = 92}, - [131] = {.lex_state = 92}, - [132] = {.lex_state = 92}, - [133] = {.lex_state = 92}, - [134] = {.lex_state = 876, .external_lex_state = 4}, - [135] = {.lex_state = 876, .external_lex_state = 4}, - [136] = {.lex_state = 92}, - [137] = {.lex_state = 92}, - [138] = {.lex_state = 92}, - [139] = {.lex_state = 92}, - [140] = {.lex_state = 92}, - [141] = {.lex_state = 92}, - [142] = {.lex_state = 92}, - [143] = {.lex_state = 92}, - [144] = {.lex_state = 876, .external_lex_state = 4}, - [145] = {.lex_state = 92}, - [146] = {.lex_state = 92}, - [147] = {.lex_state = 92}, - [148] = {.lex_state = 92}, - [149] = {.lex_state = 92}, - [150] = {.lex_state = 92}, - [151] = {.lex_state = 92}, - [152] = {.lex_state = 92}, - [153] = {.lex_state = 92}, - [154] = {.lex_state = 92}, - [155] = {.lex_state = 92}, - [156] = {.lex_state = 92}, - [157] = {.lex_state = 92}, - [158] = {.lex_state = 92}, - [159] = {.lex_state = 92}, - [160] = {.lex_state = 92}, - [161] = {.lex_state = 92}, - [162] = {.lex_state = 92}, - [163] = {.lex_state = 92}, - [164] = {.lex_state = 92}, - [165] = {.lex_state = 92}, - [166] = {.lex_state = 92}, - [167] = {.lex_state = 92}, - [168] = {.lex_state = 92}, - [169] = {.lex_state = 92}, - [170] = {.lex_state = 92}, - [171] = {.lex_state = 92}, - [172] = {.lex_state = 92}, - [173] = {.lex_state = 92}, - [174] = {.lex_state = 92}, - [175] = {.lex_state = 92}, - [176] = {.lex_state = 92}, - [177] = {.lex_state = 92}, - [178] = {.lex_state = 92}, - [179] = {.lex_state = 92}, - [180] = {.lex_state = 92}, - [181] = {.lex_state = 92}, - [182] = {.lex_state = 92}, - [183] = {.lex_state = 92}, - [184] = {.lex_state = 92}, - [185] = {.lex_state = 92}, - [186] = {.lex_state = 92}, - [187] = {.lex_state = 92}, - [188] = {.lex_state = 92}, - [189] = {.lex_state = 92}, - [190] = {.lex_state = 92}, - [191] = {.lex_state = 92}, - [192] = {.lex_state = 92}, - [193] = {.lex_state = 92}, - [194] = {.lex_state = 92}, - [195] = {.lex_state = 92}, - [196] = {.lex_state = 92}, - [197] = {.lex_state = 92}, - [198] = {.lex_state = 92}, - [199] = {.lex_state = 92}, - [200] = {.lex_state = 92}, - [201] = {.lex_state = 92}, - [202] = {.lex_state = 92}, - [203] = {.lex_state = 92}, - [204] = {.lex_state = 92}, - [205] = {.lex_state = 92}, - [206] = {.lex_state = 92}, - [207] = {.lex_state = 92}, - [208] = {.lex_state = 92}, - [209] = {.lex_state = 92}, - [210] = {.lex_state = 876, .external_lex_state = 4}, - [211] = {.lex_state = 92}, - [212] = {.lex_state = 876, .external_lex_state = 4}, - [213] = {.lex_state = 92}, - [214] = {.lex_state = 876, .external_lex_state = 4}, - [215] = {.lex_state = 92}, - [216] = {.lex_state = 92}, - [217] = {.lex_state = 92}, - [218] = {.lex_state = 92}, - [219] = {.lex_state = 92}, - [220] = {.lex_state = 92}, - [221] = {.lex_state = 92}, - [222] = {.lex_state = 92}, - [223] = {.lex_state = 92}, - [224] = {.lex_state = 876, .external_lex_state = 4}, - [225] = {.lex_state = 92}, - [226] = {.lex_state = 92}, - [227] = {.lex_state = 92}, - [228] = {.lex_state = 92}, - [229] = {.lex_state = 92}, - [230] = {.lex_state = 92}, - [231] = {.lex_state = 92}, - [232] = {.lex_state = 92}, - [233] = {.lex_state = 92}, - [234] = {.lex_state = 92}, - [235] = {.lex_state = 92}, - [236] = {.lex_state = 27}, - [237] = {.lex_state = 92}, - [238] = {.lex_state = 92}, - [239] = {.lex_state = 92}, - [240] = {.lex_state = 92}, - [241] = {.lex_state = 92}, - [242] = {.lex_state = 27}, - [243] = {.lex_state = 92}, - [244] = {.lex_state = 92}, - [245] = {.lex_state = 27}, - [246] = {.lex_state = 92}, - [247] = {.lex_state = 92}, - [248] = {.lex_state = 92}, - [249] = {.lex_state = 27}, - [250] = {.lex_state = 92}, - [251] = {.lex_state = 92}, - [252] = {.lex_state = 92}, - [253] = {.lex_state = 92}, - [254] = {.lex_state = 92}, - [255] = {.lex_state = 92}, - [256] = {.lex_state = 92}, - [257] = {.lex_state = 92}, - [258] = {.lex_state = 92}, - [259] = {.lex_state = 27}, - [260] = {.lex_state = 92}, - [261] = {.lex_state = 92}, - [262] = {.lex_state = 92}, - [263] = {.lex_state = 28, .external_lex_state = 5}, - [264] = {.lex_state = 28, .external_lex_state = 5}, - [265] = {.lex_state = 28, .external_lex_state = 5}, - [266] = {.lex_state = 878}, - [267] = {.lex_state = 28, .external_lex_state = 5}, - [268] = {.lex_state = 28, .external_lex_state = 5}, - [269] = {.lex_state = 92}, - [270] = {.lex_state = 28, .external_lex_state = 5}, - [271] = {.lex_state = 28, .external_lex_state = 5}, - [272] = {.lex_state = 878}, - [273] = {.lex_state = 28, .external_lex_state = 5}, - [274] = {.lex_state = 28, .external_lex_state = 5}, - [275] = {.lex_state = 28, .external_lex_state = 5}, - [276] = {.lex_state = 28, .external_lex_state = 5}, - [277] = {.lex_state = 28, .external_lex_state = 5}, - [278] = {.lex_state = 28, .external_lex_state = 5}, - [279] = {.lex_state = 92}, - [280] = {.lex_state = 28, .external_lex_state = 5}, - [281] = {.lex_state = 36, .external_lex_state = 4}, - [282] = {.lex_state = 36, .external_lex_state = 4}, - [283] = {.lex_state = 28}, - [284] = {.lex_state = 28}, - [285] = {.lex_state = 28}, - [286] = {.lex_state = 28}, - [287] = {.lex_state = 28}, - [288] = {.lex_state = 28}, - [289] = {.lex_state = 28}, - [290] = {.lex_state = 28}, - [291] = {.lex_state = 28}, - [292] = {.lex_state = 28}, - [293] = {.lex_state = 28}, - [294] = {.lex_state = 28}, - [295] = {.lex_state = 28}, - [296] = {.lex_state = 28}, - [297] = {.lex_state = 32, .external_lex_state = 6}, - [298] = {.lex_state = 32, .external_lex_state = 6}, - [299] = {.lex_state = 32, .external_lex_state = 6}, - [300] = {.lex_state = 32, .external_lex_state = 6}, - [301] = {.lex_state = 32, .external_lex_state = 6}, - [302] = {.lex_state = 29}, - [303] = {.lex_state = 29}, - [304] = {.lex_state = 29}, - [305] = {.lex_state = 29}, - [306] = {.lex_state = 29}, - [307] = {.lex_state = 29}, - [308] = {.lex_state = 29}, - [309] = {.lex_state = 29}, - [310] = {.lex_state = 29}, - [311] = {.lex_state = 29}, - [312] = {.lex_state = 29}, - [313] = {.lex_state = 29}, - [314] = {.lex_state = 29}, - [315] = {.lex_state = 29}, - [316] = {.lex_state = 29}, - [317] = {.lex_state = 29}, - [318] = {.lex_state = 29}, - [319] = {.lex_state = 29}, - [320] = {.lex_state = 29}, - [321] = {.lex_state = 29}, - [322] = {.lex_state = 29}, - [323] = {.lex_state = 93}, - [324] = {.lex_state = 93}, - [325] = {.lex_state = 93}, - [326] = {.lex_state = 93}, - [327] = {.lex_state = 32}, - [328] = {.lex_state = 32}, - [329] = {.lex_state = 32}, - [330] = {.lex_state = 32}, - [331] = {.lex_state = 93}, - [332] = {.lex_state = 37, .external_lex_state = 5}, - [333] = {.lex_state = 93}, - [334] = {.lex_state = 32}, - [335] = {.lex_state = 93}, - [336] = {.lex_state = 37, .external_lex_state = 5}, - [337] = {.lex_state = 32}, - [338] = {.lex_state = 93}, - [339] = {.lex_state = 32}, - [340] = {.lex_state = 32}, - [341] = {.lex_state = 32}, - [342] = {.lex_state = 37, .external_lex_state = 5}, - [343] = {.lex_state = 32}, - [344] = {.lex_state = 32}, - [345] = {.lex_state = 32}, - [346] = {.lex_state = 32}, - [347] = {.lex_state = 32}, - [348] = {.lex_state = 32}, - [349] = {.lex_state = 32}, - [350] = {.lex_state = 32}, - [351] = {.lex_state = 32}, - [352] = {.lex_state = 32}, - [353] = {.lex_state = 32}, - [354] = {.lex_state = 32}, - [355] = {.lex_state = 32}, - [356] = {.lex_state = 32}, - [357] = {.lex_state = 32}, - [358] = {.lex_state = 32}, - [359] = {.lex_state = 32}, - [360] = {.lex_state = 32}, - [361] = {.lex_state = 32}, - [362] = {.lex_state = 32}, - [363] = {.lex_state = 32}, - [364] = {.lex_state = 32}, - [365] = {.lex_state = 32}, - [366] = {.lex_state = 32}, - [367] = {.lex_state = 32}, - [368] = {.lex_state = 32}, - [369] = {.lex_state = 32}, - [370] = {.lex_state = 32}, - [371] = {.lex_state = 32}, - [372] = {.lex_state = 32}, - [373] = {.lex_state = 32}, - [374] = {.lex_state = 32}, - [375] = {.lex_state = 32}, - [376] = {.lex_state = 32}, - [377] = {.lex_state = 32}, - [378] = {.lex_state = 32}, - [379] = {.lex_state = 32}, - [380] = {.lex_state = 32}, - [381] = {.lex_state = 32}, - [382] = {.lex_state = 32}, - [383] = {.lex_state = 32}, - [384] = {.lex_state = 32}, - [385] = {.lex_state = 32}, - [386] = {.lex_state = 32}, - [387] = {.lex_state = 32}, - [388] = {.lex_state = 32}, - [389] = {.lex_state = 32}, - [390] = {.lex_state = 32}, - [391] = {.lex_state = 32}, - [392] = {.lex_state = 32}, - [393] = {.lex_state = 32}, - [394] = {.lex_state = 32}, - [395] = {.lex_state = 32}, - [396] = {.lex_state = 32}, - [397] = {.lex_state = 32}, - [398] = {.lex_state = 32}, - [399] = {.lex_state = 32}, - [400] = {.lex_state = 32}, - [401] = {.lex_state = 32}, - [402] = {.lex_state = 32}, - [403] = {.lex_state = 32}, - [404] = {.lex_state = 32}, - [405] = {.lex_state = 32}, - [406] = {.lex_state = 32}, - [407] = {.lex_state = 32}, - [408] = {.lex_state = 32}, - [409] = {.lex_state = 32}, - [410] = {.lex_state = 32}, - [411] = {.lex_state = 32}, - [412] = {.lex_state = 32}, - [413] = {.lex_state = 32}, - [414] = {.lex_state = 32}, - [415] = {.lex_state = 32}, - [416] = {.lex_state = 32}, - [417] = {.lex_state = 32}, - [418] = {.lex_state = 32}, - [419] = {.lex_state = 32}, - [420] = {.lex_state = 32}, - [421] = {.lex_state = 32}, - [422] = {.lex_state = 32}, - [423] = {.lex_state = 32}, - [424] = {.lex_state = 32}, - [425] = {.lex_state = 32}, - [426] = {.lex_state = 32}, - [427] = {.lex_state = 32}, - [428] = {.lex_state = 32}, - [429] = {.lex_state = 32}, - [430] = {.lex_state = 32}, - [431] = {.lex_state = 32}, - [432] = {.lex_state = 32}, - [433] = {.lex_state = 32}, - [434] = {.lex_state = 32}, - [435] = {.lex_state = 32}, - [436] = {.lex_state = 32}, - [437] = {.lex_state = 32}, - [438] = {.lex_state = 32}, - [439] = {.lex_state = 32}, - [440] = {.lex_state = 32}, - [441] = {.lex_state = 32}, - [442] = {.lex_state = 32}, - [443] = {.lex_state = 32}, - [444] = {.lex_state = 32}, - [445] = {.lex_state = 32}, - [446] = {.lex_state = 32}, - [447] = {.lex_state = 32}, - [448] = {.lex_state = 32}, - [449] = {.lex_state = 32}, - [450] = {.lex_state = 32}, - [451] = {.lex_state = 32}, - [452] = {.lex_state = 32}, - [453] = {.lex_state = 32}, - [454] = {.lex_state = 32}, - [455] = {.lex_state = 32}, - [456] = {.lex_state = 32}, - [457] = {.lex_state = 32}, - [458] = {.lex_state = 32}, - [459] = {.lex_state = 32}, - [460] = {.lex_state = 32}, - [461] = {.lex_state = 32}, - [462] = {.lex_state = 32}, - [463] = {.lex_state = 32}, - [464] = {.lex_state = 32}, - [465] = {.lex_state = 32}, - [466] = {.lex_state = 32}, - [467] = {.lex_state = 32}, - [468] = {.lex_state = 32}, - [469] = {.lex_state = 32}, - [470] = {.lex_state = 32}, - [471] = {.lex_state = 32}, - [472] = {.lex_state = 32}, - [473] = {.lex_state = 32}, - [474] = {.lex_state = 32}, - [475] = {.lex_state = 32}, - [476] = {.lex_state = 32}, - [477] = {.lex_state = 32}, - [478] = {.lex_state = 32}, - [479] = {.lex_state = 32}, - [480] = {.lex_state = 32}, - [481] = {.lex_state = 32}, - [482] = {.lex_state = 32}, - [483] = {.lex_state = 32}, - [484] = {.lex_state = 32}, - [485] = {.lex_state = 32}, - [486] = {.lex_state = 32}, - [487] = {.lex_state = 32}, - [488] = {.lex_state = 32}, - [489] = {.lex_state = 32}, - [490] = {.lex_state = 32}, - [491] = {.lex_state = 32}, - [492] = {.lex_state = 32}, - [493] = {.lex_state = 32}, - [494] = {.lex_state = 32}, - [495] = {.lex_state = 32}, - [496] = {.lex_state = 32}, - [497] = {.lex_state = 32}, - [498] = {.lex_state = 32}, - [499] = {.lex_state = 32}, - [500] = {.lex_state = 32}, - [501] = {.lex_state = 32}, - [502] = {.lex_state = 32}, - [503] = {.lex_state = 32}, - [504] = {.lex_state = 32}, - [505] = {.lex_state = 32}, - [506] = {.lex_state = 32}, - [507] = {.lex_state = 32}, - [508] = {.lex_state = 32}, - [509] = {.lex_state = 32}, - [510] = {.lex_state = 32}, - [511] = {.lex_state = 32}, - [512] = {.lex_state = 32}, - [513] = {.lex_state = 32}, - [514] = {.lex_state = 32}, - [515] = {.lex_state = 32}, - [516] = {.lex_state = 32}, - [517] = {.lex_state = 32}, - [518] = {.lex_state = 32}, - [519] = {.lex_state = 32}, - [520] = {.lex_state = 31, .external_lex_state = 1}, - [521] = {.lex_state = 31, .external_lex_state = 4}, - [522] = {.lex_state = 31, .external_lex_state = 4}, - [523] = {.lex_state = 31, .external_lex_state = 4}, - [524] = {.lex_state = 31, .external_lex_state = 4}, - [525] = {.lex_state = 31, .external_lex_state = 4}, - [526] = {.lex_state = 31, .external_lex_state = 4}, - [527] = {.lex_state = 31, .external_lex_state = 4}, - [528] = {.lex_state = 31, .external_lex_state = 1}, - [529] = {.lex_state = 31, .external_lex_state = 4}, - [530] = {.lex_state = 31, .external_lex_state = 4}, - [531] = {.lex_state = 31, .external_lex_state = 4}, - [532] = {.lex_state = 31, .external_lex_state = 4}, - [533] = {.lex_state = 31, .external_lex_state = 3}, - [534] = {.lex_state = 31, .external_lex_state = 2}, - [535] = {.lex_state = 31, .external_lex_state = 3}, - [536] = {.lex_state = 31, .external_lex_state = 2}, - [537] = {.lex_state = 31, .external_lex_state = 2}, - [538] = {.lex_state = 31, .external_lex_state = 2}, - [539] = {.lex_state = 31, .external_lex_state = 3}, - [540] = {.lex_state = 876, .external_lex_state = 4}, - [541] = {.lex_state = 876, .external_lex_state = 4}, - [542] = {.lex_state = 31, .external_lex_state = 2}, - [543] = {.lex_state = 30, .external_lex_state = 4}, - [544] = {.lex_state = 876, .external_lex_state = 4}, - [545] = {.lex_state = 31, .external_lex_state = 2}, - [546] = {.lex_state = 876, .external_lex_state = 4}, - [547] = {.lex_state = 876, .external_lex_state = 4}, - [548] = {.lex_state = 876, .external_lex_state = 4}, - [549] = {.lex_state = 876, .external_lex_state = 4}, - [550] = {.lex_state = 876, .external_lex_state = 4}, - [551] = {.lex_state = 876, .external_lex_state = 4}, - [552] = {.lex_state = 876, .external_lex_state = 4}, - [553] = {.lex_state = 30, .external_lex_state = 4}, - [554] = {.lex_state = 31, .external_lex_state = 4}, - [555] = {.lex_state = 31, .external_lex_state = 4}, - [556] = {.lex_state = 31, .external_lex_state = 4}, - [557] = {.lex_state = 31, .external_lex_state = 4}, - [558] = {.lex_state = 31, .external_lex_state = 4}, - [559] = {.lex_state = 31, .external_lex_state = 4}, - [560] = {.lex_state = 31, .external_lex_state = 4}, - [561] = {.lex_state = 31, .external_lex_state = 4}, - [562] = {.lex_state = 31, .external_lex_state = 4}, - [563] = {.lex_state = 31, .external_lex_state = 4}, - [564] = {.lex_state = 31, .external_lex_state = 4}, - [565] = {.lex_state = 31, .external_lex_state = 4}, - [566] = {.lex_state = 31, .external_lex_state = 4}, - [567] = {.lex_state = 31, .external_lex_state = 4}, - [568] = {.lex_state = 31, .external_lex_state = 4}, - [569] = {.lex_state = 31, .external_lex_state = 4}, - [570] = {.lex_state = 31, .external_lex_state = 4}, - [571] = {.lex_state = 31, .external_lex_state = 4}, - [572] = {.lex_state = 31, .external_lex_state = 4}, - [573] = {.lex_state = 31, .external_lex_state = 4}, - [574] = {.lex_state = 31, .external_lex_state = 4}, - [575] = {.lex_state = 31, .external_lex_state = 4}, - [576] = {.lex_state = 31, .external_lex_state = 4}, - [577] = {.lex_state = 31, .external_lex_state = 4}, - [578] = {.lex_state = 31, .external_lex_state = 4}, - [579] = {.lex_state = 31, .external_lex_state = 4}, - [580] = {.lex_state = 31, .external_lex_state = 4}, - [581] = {.lex_state = 31, .external_lex_state = 4}, - [582] = {.lex_state = 31, .external_lex_state = 4}, - [583] = {.lex_state = 876, .external_lex_state = 4}, - [584] = {.lex_state = 31, .external_lex_state = 4}, - [585] = {.lex_state = 31, .external_lex_state = 4}, - [586] = {.lex_state = 31, .external_lex_state = 4}, - [587] = {.lex_state = 876, .external_lex_state = 4}, - [588] = {.lex_state = 876, .external_lex_state = 4}, - [589] = {.lex_state = 876, .external_lex_state = 4}, - [590] = {.lex_state = 37, .external_lex_state = 1}, - [591] = {.lex_state = 876, .external_lex_state = 4}, - [592] = {.lex_state = 876, .external_lex_state = 4}, - [593] = {.lex_state = 876, .external_lex_state = 4}, - [594] = {.lex_state = 876, .external_lex_state = 4}, - [595] = {.lex_state = 876, .external_lex_state = 4}, - [596] = {.lex_state = 876, .external_lex_state = 4}, - [597] = {.lex_state = 876, .external_lex_state = 4}, - [598] = {.lex_state = 37, .external_lex_state = 1}, - [599] = {.lex_state = 876, .external_lex_state = 4}, - [600] = {.lex_state = 876, .external_lex_state = 4}, - [601] = {.lex_state = 876, .external_lex_state = 4}, - [602] = {.lex_state = 876, .external_lex_state = 4}, - [603] = {.lex_state = 876, .external_lex_state = 4}, - [604] = {.lex_state = 876, .external_lex_state = 4}, - [605] = {.lex_state = 876, .external_lex_state = 4}, - [606] = {.lex_state = 37, .external_lex_state = 4}, - [607] = {.lex_state = 37, .external_lex_state = 4}, - [608] = {.lex_state = 37, .external_lex_state = 4}, - [609] = {.lex_state = 37, .external_lex_state = 4}, - [610] = {.lex_state = 37, .external_lex_state = 4}, - [611] = {.lex_state = 37, .external_lex_state = 4}, - [612] = {.lex_state = 37, .external_lex_state = 4}, - [613] = {.lex_state = 37, .external_lex_state = 4}, - [614] = {.lex_state = 37, .external_lex_state = 4}, - [615] = {.lex_state = 37, .external_lex_state = 4}, - [616] = {.lex_state = 37, .external_lex_state = 4}, - [617] = {.lex_state = 37, .external_lex_state = 3}, - [618] = {.lex_state = 37, .external_lex_state = 3}, - [619] = {.lex_state = 876, .external_lex_state = 4}, - [620] = {.lex_state = 876, .external_lex_state = 4}, - [621] = {.lex_state = 37, .external_lex_state = 2}, - [622] = {.lex_state = 37, .external_lex_state = 3}, - [623] = {.lex_state = 38, .external_lex_state = 1}, - [624] = {.lex_state = 876, .external_lex_state = 4}, - [625] = {.lex_state = 876, .external_lex_state = 4}, - [626] = {.lex_state = 876, .external_lex_state = 4}, - [627] = {.lex_state = 876, .external_lex_state = 4}, - [628] = {.lex_state = 37, .external_lex_state = 2}, - [629] = {.lex_state = 876, .external_lex_state = 4}, - [630] = {.lex_state = 37, .external_lex_state = 2}, - [631] = {.lex_state = 876, .external_lex_state = 4}, - [632] = {.lex_state = 37, .external_lex_state = 2}, - [633] = {.lex_state = 876, .external_lex_state = 4}, - [634] = {.lex_state = 38, .external_lex_state = 1}, - [635] = {.lex_state = 876, .external_lex_state = 4}, - [636] = {.lex_state = 38, .external_lex_state = 4}, - [637] = {.lex_state = 876, .external_lex_state = 4}, - [638] = {.lex_state = 876, .external_lex_state = 4}, - [639] = {.lex_state = 876, .external_lex_state = 4}, - [640] = {.lex_state = 37, .external_lex_state = 2}, - [641] = {.lex_state = 37, .external_lex_state = 4}, - [642] = {.lex_state = 876, .external_lex_state = 4}, - [643] = {.lex_state = 44, .external_lex_state = 4}, - [644] = {.lex_state = 38, .external_lex_state = 4}, - [645] = {.lex_state = 38, .external_lex_state = 4}, - [646] = {.lex_state = 876, .external_lex_state = 4}, - [647] = {.lex_state = 38, .external_lex_state = 4}, - [648] = {.lex_state = 37, .external_lex_state = 4}, - [649] = {.lex_state = 876, .external_lex_state = 4}, - [650] = {.lex_state = 876, .external_lex_state = 4}, - [651] = {.lex_state = 38, .external_lex_state = 4}, - [652] = {.lex_state = 876, .external_lex_state = 4}, - [653] = {.lex_state = 876, .external_lex_state = 4}, - [654] = {.lex_state = 38, .external_lex_state = 4}, - [655] = {.lex_state = 876, .external_lex_state = 4}, - [656] = {.lex_state = 44, .external_lex_state = 4}, - [657] = {.lex_state = 37, .external_lex_state = 2}, - [658] = {.lex_state = 876, .external_lex_state = 4}, - [659] = {.lex_state = 876, .external_lex_state = 4}, - [660] = {.lex_state = 38, .external_lex_state = 4}, - [661] = {.lex_state = 38, .external_lex_state = 4}, - [662] = {.lex_state = 38, .external_lex_state = 4}, - [663] = {.lex_state = 38, .external_lex_state = 4}, - [664] = {.lex_state = 38, .external_lex_state = 4}, - [665] = {.lex_state = 876, .external_lex_state = 4}, - [666] = {.lex_state = 37, .external_lex_state = 4}, - [667] = {.lex_state = 37, .external_lex_state = 4}, - [668] = {.lex_state = 37, .external_lex_state = 4}, - [669] = {.lex_state = 37, .external_lex_state = 4}, - [670] = {.lex_state = 37, .external_lex_state = 4}, - [671] = {.lex_state = 37, .external_lex_state = 4}, - [672] = {.lex_state = 37, .external_lex_state = 4}, - [673] = {.lex_state = 37, .external_lex_state = 4}, - [674] = {.lex_state = 37, .external_lex_state = 4}, - [675] = {.lex_state = 37, .external_lex_state = 4}, + [1] = {.lex_state = 884}, + [2] = {.lex_state = 882, .external_lex_state = 1}, + [3] = {.lex_state = 882, .external_lex_state = 1}, + [4] = {.lex_state = 882, .external_lex_state = 2}, + [5] = {.lex_state = 882, .external_lex_state = 2}, + [6] = {.lex_state = 882, .external_lex_state = 2}, + [7] = {.lex_state = 882, .external_lex_state = 3}, + [8] = {.lex_state = 882, .external_lex_state = 2}, + [9] = {.lex_state = 882, .external_lex_state = 3}, + [10] = {.lex_state = 882, .external_lex_state = 2}, + [11] = {.lex_state = 882, .external_lex_state = 3}, + [12] = {.lex_state = 882, .external_lex_state = 2}, + [13] = {.lex_state = 882, .external_lex_state = 4}, + [14] = {.lex_state = 882, .external_lex_state = 4}, + [15] = {.lex_state = 882, .external_lex_state = 4}, + [16] = {.lex_state = 882, .external_lex_state = 4}, + [17] = {.lex_state = 882, .external_lex_state = 4}, + [18] = {.lex_state = 882, .external_lex_state = 4}, + [19] = {.lex_state = 882, .external_lex_state = 4}, + [20] = {.lex_state = 882, .external_lex_state = 4}, + [21] = {.lex_state = 882, .external_lex_state = 4}, + [22] = {.lex_state = 882, .external_lex_state = 4}, + [23] = {.lex_state = 882, .external_lex_state = 4}, + [24] = {.lex_state = 882, .external_lex_state = 4}, + [25] = {.lex_state = 882, .external_lex_state = 4}, + [26] = {.lex_state = 882, .external_lex_state = 4}, + [27] = {.lex_state = 882, .external_lex_state = 4}, + [28] = {.lex_state = 882, .external_lex_state = 4}, + [29] = {.lex_state = 882, .external_lex_state = 4}, + [30] = {.lex_state = 882, .external_lex_state = 4}, + [31] = {.lex_state = 882, .external_lex_state = 4}, + [32] = {.lex_state = 882, .external_lex_state = 4}, + [33] = {.lex_state = 882, .external_lex_state = 4}, + [34] = {.lex_state = 882, .external_lex_state = 4}, + [35] = {.lex_state = 882, .external_lex_state = 4}, + [36] = {.lex_state = 882, .external_lex_state = 4}, + [37] = {.lex_state = 882, .external_lex_state = 4}, + [38] = {.lex_state = 882, .external_lex_state = 4}, + [39] = {.lex_state = 882, .external_lex_state = 4}, + [40] = {.lex_state = 882, .external_lex_state = 4}, + [41] = {.lex_state = 882, .external_lex_state = 4}, + [42] = {.lex_state = 882, .external_lex_state = 4}, + [43] = {.lex_state = 882, .external_lex_state = 4}, + [44] = {.lex_state = 882, .external_lex_state = 4}, + [45] = {.lex_state = 882, .external_lex_state = 4}, + [46] = {.lex_state = 882, .external_lex_state = 4}, + [47] = {.lex_state = 98}, + [48] = {.lex_state = 98}, + [49] = {.lex_state = 98}, + [50] = {.lex_state = 98}, + [51] = {.lex_state = 98}, + [52] = {.lex_state = 98}, + [53] = {.lex_state = 98}, + [54] = {.lex_state = 98}, + [55] = {.lex_state = 98}, + [56] = {.lex_state = 98}, + [57] = {.lex_state = 98}, + [58] = {.lex_state = 98}, + [59] = {.lex_state = 98}, + [60] = {.lex_state = 98}, + [61] = {.lex_state = 98}, + [62] = {.lex_state = 98}, + [63] = {.lex_state = 98}, + [64] = {.lex_state = 98}, + [65] = {.lex_state = 98}, + [66] = {.lex_state = 98}, + [67] = {.lex_state = 98}, + [68] = {.lex_state = 98}, + [69] = {.lex_state = 98}, + [70] = {.lex_state = 98}, + [71] = {.lex_state = 98}, + [72] = {.lex_state = 98}, + [73] = {.lex_state = 98}, + [74] = {.lex_state = 98}, + [75] = {.lex_state = 98}, + [76] = {.lex_state = 98}, + [77] = {.lex_state = 98}, + [78] = {.lex_state = 98}, + [79] = {.lex_state = 98}, + [80] = {.lex_state = 98}, + [81] = {.lex_state = 98}, + [82] = {.lex_state = 98}, + [83] = {.lex_state = 98}, + [84] = {.lex_state = 98}, + [85] = {.lex_state = 98}, + [86] = {.lex_state = 98}, + [87] = {.lex_state = 98}, + [88] = {.lex_state = 98}, + [89] = {.lex_state = 98}, + [90] = {.lex_state = 98}, + [91] = {.lex_state = 98}, + [92] = {.lex_state = 98}, + [93] = {.lex_state = 98}, + [94] = {.lex_state = 98}, + [95] = {.lex_state = 98}, + [96] = {.lex_state = 98}, + [97] = {.lex_state = 98}, + [98] = {.lex_state = 98}, + [99] = {.lex_state = 98}, + [100] = {.lex_state = 98}, + [101] = {.lex_state = 98}, + [102] = {.lex_state = 98}, + [103] = {.lex_state = 98}, + [104] = {.lex_state = 98}, + [105] = {.lex_state = 98}, + [106] = {.lex_state = 98}, + [107] = {.lex_state = 98}, + [108] = {.lex_state = 98}, + [109] = {.lex_state = 98}, + [110] = {.lex_state = 98}, + [111] = {.lex_state = 98}, + [112] = {.lex_state = 98}, + [113] = {.lex_state = 98}, + [114] = {.lex_state = 98}, + [115] = {.lex_state = 98}, + [116] = {.lex_state = 98}, + [117] = {.lex_state = 98}, + [118] = {.lex_state = 98}, + [119] = {.lex_state = 98}, + [120] = {.lex_state = 882, .external_lex_state = 4}, + [121] = {.lex_state = 98}, + [122] = {.lex_state = 98}, + [123] = {.lex_state = 882, .external_lex_state = 4}, + [124] = {.lex_state = 98}, + [125] = {.lex_state = 882, .external_lex_state = 4}, + [126] = {.lex_state = 882, .external_lex_state = 4}, + [127] = {.lex_state = 98}, + [128] = {.lex_state = 98}, + [129] = {.lex_state = 98}, + [130] = {.lex_state = 98}, + [131] = {.lex_state = 98}, + [132] = {.lex_state = 98}, + [133] = {.lex_state = 98}, + [134] = {.lex_state = 98}, + [135] = {.lex_state = 98}, + [136] = {.lex_state = 98}, + [137] = {.lex_state = 98}, + [138] = {.lex_state = 98}, + [139] = {.lex_state = 98}, + [140] = {.lex_state = 98}, + [141] = {.lex_state = 882, .external_lex_state = 4}, + [142] = {.lex_state = 882, .external_lex_state = 4}, + [143] = {.lex_state = 882, .external_lex_state = 4}, + [144] = {.lex_state = 882, .external_lex_state = 4}, + [145] = {.lex_state = 882, .external_lex_state = 4}, + [146] = {.lex_state = 98}, + [147] = {.lex_state = 98}, + [148] = {.lex_state = 98}, + [149] = {.lex_state = 98}, + [150] = {.lex_state = 98}, + [151] = {.lex_state = 98}, + [152] = {.lex_state = 98}, + [153] = {.lex_state = 98}, + [154] = {.lex_state = 98}, + [155] = {.lex_state = 98}, + [156] = {.lex_state = 98}, + [157] = {.lex_state = 98}, + [158] = {.lex_state = 98}, + [159] = {.lex_state = 98}, + [160] = {.lex_state = 98}, + [161] = {.lex_state = 98}, + [162] = {.lex_state = 98}, + [163] = {.lex_state = 98}, + [164] = {.lex_state = 98}, + [165] = {.lex_state = 98}, + [166] = {.lex_state = 98}, + [167] = {.lex_state = 98}, + [168] = {.lex_state = 98}, + [169] = {.lex_state = 98}, + [170] = {.lex_state = 98}, + [171] = {.lex_state = 98}, + [172] = {.lex_state = 98}, + [173] = {.lex_state = 98}, + [174] = {.lex_state = 98}, + [175] = {.lex_state = 98}, + [176] = {.lex_state = 98}, + [177] = {.lex_state = 98}, + [178] = {.lex_state = 98}, + [179] = {.lex_state = 98}, + [180] = {.lex_state = 98}, + [181] = {.lex_state = 98}, + [182] = {.lex_state = 98}, + [183] = {.lex_state = 882, .external_lex_state = 4}, + [184] = {.lex_state = 98}, + [185] = {.lex_state = 98}, + [186] = {.lex_state = 98}, + [187] = {.lex_state = 98}, + [188] = {.lex_state = 98}, + [189] = {.lex_state = 98}, + [190] = {.lex_state = 98}, + [191] = {.lex_state = 98}, + [192] = {.lex_state = 98}, + [193] = {.lex_state = 98}, + [194] = {.lex_state = 98}, + [195] = {.lex_state = 98}, + [196] = {.lex_state = 98}, + [197] = {.lex_state = 98}, + [198] = {.lex_state = 98}, + [199] = {.lex_state = 98}, + [200] = {.lex_state = 98}, + [201] = {.lex_state = 98}, + [202] = {.lex_state = 98}, + [203] = {.lex_state = 98}, + [204] = {.lex_state = 98}, + [205] = {.lex_state = 98}, + [206] = {.lex_state = 98}, + [207] = {.lex_state = 98}, + [208] = {.lex_state = 98}, + [209] = {.lex_state = 98}, + [210] = {.lex_state = 98}, + [211] = {.lex_state = 98}, + [212] = {.lex_state = 98}, + [213] = {.lex_state = 98}, + [214] = {.lex_state = 98}, + [215] = {.lex_state = 98}, + [216] = {.lex_state = 98}, + [217] = {.lex_state = 98}, + [218] = {.lex_state = 98}, + [219] = {.lex_state = 98}, + [220] = {.lex_state = 98}, + [221] = {.lex_state = 98}, + [222] = {.lex_state = 98}, + [223] = {.lex_state = 98}, + [224] = {.lex_state = 98}, + [225] = {.lex_state = 98}, + [226] = {.lex_state = 98}, + [227] = {.lex_state = 98}, + [228] = {.lex_state = 98}, + [229] = {.lex_state = 98}, + [230] = {.lex_state = 98}, + [231] = {.lex_state = 98}, + [232] = {.lex_state = 98}, + [233] = {.lex_state = 98}, + [234] = {.lex_state = 98}, + [235] = {.lex_state = 98}, + [236] = {.lex_state = 98}, + [237] = {.lex_state = 98}, + [238] = {.lex_state = 98}, + [239] = {.lex_state = 98}, + [240] = {.lex_state = 28}, + [241] = {.lex_state = 98}, + [242] = {.lex_state = 98}, + [243] = {.lex_state = 98}, + [244] = {.lex_state = 98}, + [245] = {.lex_state = 98}, + [246] = {.lex_state = 98}, + [247] = {.lex_state = 98}, + [248] = {.lex_state = 98}, + [249] = {.lex_state = 28}, + [250] = {.lex_state = 98}, + [251] = {.lex_state = 98}, + [252] = {.lex_state = 98}, + [253] = {.lex_state = 28}, + [254] = {.lex_state = 28}, + [255] = {.lex_state = 98}, + [256] = {.lex_state = 98}, + [257] = {.lex_state = 98}, + [258] = {.lex_state = 28}, + [259] = {.lex_state = 98}, + [260] = {.lex_state = 98}, + [261] = {.lex_state = 98}, + [262] = {.lex_state = 98}, + [263] = {.lex_state = 98}, + [264] = {.lex_state = 98}, + [265] = {.lex_state = 29, .external_lex_state = 5}, + [266] = {.lex_state = 29, .external_lex_state = 5}, + [267] = {.lex_state = 29, .external_lex_state = 5}, + [268] = {.lex_state = 29, .external_lex_state = 5}, + [269] = {.lex_state = 29, .external_lex_state = 5}, + [270] = {.lex_state = 29, .external_lex_state = 5}, + [271] = {.lex_state = 29, .external_lex_state = 5}, + [272] = {.lex_state = 29, .external_lex_state = 5}, + [273] = {.lex_state = 29, .external_lex_state = 5}, + [274] = {.lex_state = 29, .external_lex_state = 5}, + [275] = {.lex_state = 98}, + [276] = {.lex_state = 29, .external_lex_state = 5}, + [277] = {.lex_state = 884}, + [278] = {.lex_state = 884}, + [279] = {.lex_state = 29, .external_lex_state = 5}, + [280] = {.lex_state = 98}, + [281] = {.lex_state = 29, .external_lex_state = 5}, + [282] = {.lex_state = 29, .external_lex_state = 5}, + [283] = {.lex_state = 38, .external_lex_state = 4}, + [284] = {.lex_state = 38, .external_lex_state = 4}, + [285] = {.lex_state = 29}, + [286] = {.lex_state = 29}, + [287] = {.lex_state = 29}, + [288] = {.lex_state = 29}, + [289] = {.lex_state = 29}, + [290] = {.lex_state = 29}, + [291] = {.lex_state = 29}, + [292] = {.lex_state = 29}, + [293] = {.lex_state = 29}, + [294] = {.lex_state = 29}, + [295] = {.lex_state = 29}, + [296] = {.lex_state = 29}, + [297] = {.lex_state = 29}, + [298] = {.lex_state = 29}, + [299] = {.lex_state = 34, .external_lex_state = 6}, + [300] = {.lex_state = 34, .external_lex_state = 6}, + [301] = {.lex_state = 34, .external_lex_state = 6}, + [302] = {.lex_state = 34, .external_lex_state = 6}, + [303] = {.lex_state = 34, .external_lex_state = 6}, + [304] = {.lex_state = 30}, + [305] = {.lex_state = 30}, + [306] = {.lex_state = 30}, + [307] = {.lex_state = 30}, + [308] = {.lex_state = 30}, + [309] = {.lex_state = 30}, + [310] = {.lex_state = 30}, + [311] = {.lex_state = 30}, + [312] = {.lex_state = 30}, + [313] = {.lex_state = 30}, + [314] = {.lex_state = 30}, + [315] = {.lex_state = 30}, + [316] = {.lex_state = 30}, + [317] = {.lex_state = 30}, + [318] = {.lex_state = 30}, + [319] = {.lex_state = 30}, + [320] = {.lex_state = 30}, + [321] = {.lex_state = 30}, + [322] = {.lex_state = 30}, + [323] = {.lex_state = 30}, + [324] = {.lex_state = 30}, + [325] = {.lex_state = 99}, + [326] = {.lex_state = 99}, + [327] = {.lex_state = 99}, + [328] = {.lex_state = 99}, + [329] = {.lex_state = 34}, + [330] = {.lex_state = 39, .external_lex_state = 5}, + [331] = {.lex_state = 99}, + [332] = {.lex_state = 34}, + [333] = {.lex_state = 99}, + [334] = {.lex_state = 34}, + [335] = {.lex_state = 99}, + [336] = {.lex_state = 34}, + [337] = {.lex_state = 39, .external_lex_state = 5}, + [338] = {.lex_state = 34}, + [339] = {.lex_state = 34}, + [340] = {.lex_state = 99}, + [341] = {.lex_state = 34}, + [342] = {.lex_state = 34}, + [343] = {.lex_state = 39, .external_lex_state = 5}, + [344] = {.lex_state = 34}, + [345] = {.lex_state = 34}, + [346] = {.lex_state = 34}, + [347] = {.lex_state = 34}, + [348] = {.lex_state = 34}, + [349] = {.lex_state = 34}, + [350] = {.lex_state = 34}, + [351] = {.lex_state = 34}, + [352] = {.lex_state = 34}, + [353] = {.lex_state = 34}, + [354] = {.lex_state = 34}, + [355] = {.lex_state = 34}, + [356] = {.lex_state = 34}, + [357] = {.lex_state = 34}, + [358] = {.lex_state = 34}, + [359] = {.lex_state = 34}, + [360] = {.lex_state = 34}, + [361] = {.lex_state = 34}, + [362] = {.lex_state = 34}, + [363] = {.lex_state = 34}, + [364] = {.lex_state = 34}, + [365] = {.lex_state = 34}, + [366] = {.lex_state = 34}, + [367] = {.lex_state = 34}, + [368] = {.lex_state = 34}, + [369] = {.lex_state = 34}, + [370] = {.lex_state = 34}, + [371] = {.lex_state = 34}, + [372] = {.lex_state = 34}, + [373] = {.lex_state = 34}, + [374] = {.lex_state = 34}, + [375] = {.lex_state = 34}, + [376] = {.lex_state = 34}, + [377] = {.lex_state = 34}, + [378] = {.lex_state = 34}, + [379] = {.lex_state = 34}, + [380] = {.lex_state = 34}, + [381] = {.lex_state = 34}, + [382] = {.lex_state = 34}, + [383] = {.lex_state = 34}, + [384] = {.lex_state = 34}, + [385] = {.lex_state = 34}, + [386] = {.lex_state = 34}, + [387] = {.lex_state = 34}, + [388] = {.lex_state = 34}, + [389] = {.lex_state = 34}, + [390] = {.lex_state = 34}, + [391] = {.lex_state = 34}, + [392] = {.lex_state = 34}, + [393] = {.lex_state = 34}, + [394] = {.lex_state = 34}, + [395] = {.lex_state = 34}, + [396] = {.lex_state = 34}, + [397] = {.lex_state = 34}, + [398] = {.lex_state = 34}, + [399] = {.lex_state = 34}, + [400] = {.lex_state = 34}, + [401] = {.lex_state = 34}, + [402] = {.lex_state = 34}, + [403] = {.lex_state = 34}, + [404] = {.lex_state = 34}, + [405] = {.lex_state = 34}, + [406] = {.lex_state = 34}, + [407] = {.lex_state = 34}, + [408] = {.lex_state = 34}, + [409] = {.lex_state = 34}, + [410] = {.lex_state = 34}, + [411] = {.lex_state = 34}, + [412] = {.lex_state = 34}, + [413] = {.lex_state = 34}, + [414] = {.lex_state = 34}, + [415] = {.lex_state = 34}, + [416] = {.lex_state = 34}, + [417] = {.lex_state = 34}, + [418] = {.lex_state = 34}, + [419] = {.lex_state = 34}, + [420] = {.lex_state = 34}, + [421] = {.lex_state = 34}, + [422] = {.lex_state = 34}, + [423] = {.lex_state = 34}, + [424] = {.lex_state = 34}, + [425] = {.lex_state = 34}, + [426] = {.lex_state = 34}, + [427] = {.lex_state = 34}, + [428] = {.lex_state = 34}, + [429] = {.lex_state = 34}, + [430] = {.lex_state = 34}, + [431] = {.lex_state = 34}, + [432] = {.lex_state = 34}, + [433] = {.lex_state = 34}, + [434] = {.lex_state = 34}, + [435] = {.lex_state = 34}, + [436] = {.lex_state = 34}, + [437] = {.lex_state = 34}, + [438] = {.lex_state = 34}, + [439] = {.lex_state = 34}, + [440] = {.lex_state = 34}, + [441] = {.lex_state = 34}, + [442] = {.lex_state = 34}, + [443] = {.lex_state = 34}, + [444] = {.lex_state = 34}, + [445] = {.lex_state = 34}, + [446] = {.lex_state = 34}, + [447] = {.lex_state = 34}, + [448] = {.lex_state = 34}, + [449] = {.lex_state = 34}, + [450] = {.lex_state = 34}, + [451] = {.lex_state = 34}, + [452] = {.lex_state = 34}, + [453] = {.lex_state = 34}, + [454] = {.lex_state = 34}, + [455] = {.lex_state = 34}, + [456] = {.lex_state = 34}, + [457] = {.lex_state = 34}, + [458] = {.lex_state = 34}, + [459] = {.lex_state = 34}, + [460] = {.lex_state = 34}, + [461] = {.lex_state = 34}, + [462] = {.lex_state = 34}, + [463] = {.lex_state = 34}, + [464] = {.lex_state = 34}, + [465] = {.lex_state = 34}, + [466] = {.lex_state = 34}, + [467] = {.lex_state = 34}, + [468] = {.lex_state = 34}, + [469] = {.lex_state = 34}, + [470] = {.lex_state = 34}, + [471] = {.lex_state = 34}, + [472] = {.lex_state = 34}, + [473] = {.lex_state = 34}, + [474] = {.lex_state = 34}, + [475] = {.lex_state = 34}, + [476] = {.lex_state = 34}, + [477] = {.lex_state = 34}, + [478] = {.lex_state = 34}, + [479] = {.lex_state = 34}, + [480] = {.lex_state = 34}, + [481] = {.lex_state = 34}, + [482] = {.lex_state = 34}, + [483] = {.lex_state = 34}, + [484] = {.lex_state = 34}, + [485] = {.lex_state = 34}, + [486] = {.lex_state = 34}, + [487] = {.lex_state = 34}, + [488] = {.lex_state = 34}, + [489] = {.lex_state = 34}, + [490] = {.lex_state = 34}, + [491] = {.lex_state = 34}, + [492] = {.lex_state = 34}, + [493] = {.lex_state = 34}, + [494] = {.lex_state = 34}, + [495] = {.lex_state = 34}, + [496] = {.lex_state = 34}, + [497] = {.lex_state = 34}, + [498] = {.lex_state = 34}, + [499] = {.lex_state = 34}, + [500] = {.lex_state = 34}, + [501] = {.lex_state = 34}, + [502] = {.lex_state = 34}, + [503] = {.lex_state = 34}, + [504] = {.lex_state = 34}, + [505] = {.lex_state = 34}, + [506] = {.lex_state = 34}, + [507] = {.lex_state = 34}, + [508] = {.lex_state = 34}, + [509] = {.lex_state = 34}, + [510] = {.lex_state = 34}, + [511] = {.lex_state = 34}, + [512] = {.lex_state = 34}, + [513] = {.lex_state = 34}, + [514] = {.lex_state = 34}, + [515] = {.lex_state = 34}, + [516] = {.lex_state = 34}, + [517] = {.lex_state = 34}, + [518] = {.lex_state = 34}, + [519] = {.lex_state = 34}, + [520] = {.lex_state = 34}, + [521] = {.lex_state = 34}, + [522] = {.lex_state = 33, .external_lex_state = 4}, + [523] = {.lex_state = 33, .external_lex_state = 1}, + [524] = {.lex_state = 33, .external_lex_state = 4}, + [525] = {.lex_state = 33, .external_lex_state = 4}, + [526] = {.lex_state = 33, .external_lex_state = 4}, + [527] = {.lex_state = 33, .external_lex_state = 4}, + [528] = {.lex_state = 33, .external_lex_state = 4}, + [529] = {.lex_state = 33, .external_lex_state = 4}, + [530] = {.lex_state = 33, .external_lex_state = 4}, + [531] = {.lex_state = 33, .external_lex_state = 4}, + [532] = {.lex_state = 33, .external_lex_state = 4}, + [533] = {.lex_state = 33, .external_lex_state = 4}, + [534] = {.lex_state = 33, .external_lex_state = 1}, + [535] = {.lex_state = 33, .external_lex_state = 2}, + [536] = {.lex_state = 33, .external_lex_state = 2}, + [537] = {.lex_state = 33, .external_lex_state = 2}, + [538] = {.lex_state = 33, .external_lex_state = 3}, + [539] = {.lex_state = 33, .external_lex_state = 3}, + [540] = {.lex_state = 33, .external_lex_state = 2}, + [541] = {.lex_state = 882, .external_lex_state = 4}, + [542] = {.lex_state = 32, .external_lex_state = 4}, + [543] = {.lex_state = 882, .external_lex_state = 4}, + [544] = {.lex_state = 31, .external_lex_state = 4}, + [545] = {.lex_state = 31, .external_lex_state = 4}, + [546] = {.lex_state = 33, .external_lex_state = 3}, + [547] = {.lex_state = 33, .external_lex_state = 2}, + [548] = {.lex_state = 882, .external_lex_state = 4}, + [549] = {.lex_state = 33, .external_lex_state = 2}, + [550] = {.lex_state = 882, .external_lex_state = 4}, + [551] = {.lex_state = 32, .external_lex_state = 4}, + [552] = {.lex_state = 882, .external_lex_state = 4}, + [553] = {.lex_state = 882, .external_lex_state = 4}, + [554] = {.lex_state = 882, .external_lex_state = 4}, + [555] = {.lex_state = 882, .external_lex_state = 4}, + [556] = {.lex_state = 882, .external_lex_state = 4}, + [557] = {.lex_state = 882, .external_lex_state = 4}, + [558] = {.lex_state = 33, .external_lex_state = 4}, + [559] = {.lex_state = 33, .external_lex_state = 4}, + [560] = {.lex_state = 33, .external_lex_state = 4}, + [561] = {.lex_state = 33, .external_lex_state = 4}, + [562] = {.lex_state = 33, .external_lex_state = 4}, + [563] = {.lex_state = 33, .external_lex_state = 4}, + [564] = {.lex_state = 33, .external_lex_state = 4}, + [565] = {.lex_state = 33, .external_lex_state = 4}, + [566] = {.lex_state = 33, .external_lex_state = 4}, + [567] = {.lex_state = 33, .external_lex_state = 4}, + [568] = {.lex_state = 882, .external_lex_state = 4}, + [569] = {.lex_state = 33, .external_lex_state = 4}, + [570] = {.lex_state = 33, .external_lex_state = 4}, + [571] = {.lex_state = 33, .external_lex_state = 4}, + [572] = {.lex_state = 33, .external_lex_state = 4}, + [573] = {.lex_state = 33, .external_lex_state = 4}, + [574] = {.lex_state = 33, .external_lex_state = 4}, + [575] = {.lex_state = 33, .external_lex_state = 4}, + [576] = {.lex_state = 33, .external_lex_state = 4}, + [577] = {.lex_state = 33, .external_lex_state = 4}, + [578] = {.lex_state = 33, .external_lex_state = 4}, + [579] = {.lex_state = 33, .external_lex_state = 4}, + [580] = {.lex_state = 33, .external_lex_state = 4}, + [581] = {.lex_state = 33, .external_lex_state = 4}, + [582] = {.lex_state = 33, .external_lex_state = 4}, + [583] = {.lex_state = 33, .external_lex_state = 4}, + [584] = {.lex_state = 33, .external_lex_state = 4}, + [585] = {.lex_state = 33, .external_lex_state = 4}, + [586] = {.lex_state = 33, .external_lex_state = 4}, + [587] = {.lex_state = 33, .external_lex_state = 4}, + [588] = {.lex_state = 33, .external_lex_state = 4}, + [589] = {.lex_state = 33, .external_lex_state = 4}, + [590] = {.lex_state = 33, .external_lex_state = 4}, + [591] = {.lex_state = 882, .external_lex_state = 4}, + [592] = {.lex_state = 882, .external_lex_state = 4}, + [593] = {.lex_state = 882, .external_lex_state = 4}, + [594] = {.lex_state = 882, .external_lex_state = 4}, + [595] = {.lex_state = 882, .external_lex_state = 4}, + [596] = {.lex_state = 882, .external_lex_state = 4}, + [597] = {.lex_state = 882, .external_lex_state = 4}, + [598] = {.lex_state = 882, .external_lex_state = 4}, + [599] = {.lex_state = 882, .external_lex_state = 4}, + [600] = {.lex_state = 882, .external_lex_state = 4}, + [601] = {.lex_state = 39, .external_lex_state = 1}, + [602] = {.lex_state = 882, .external_lex_state = 4}, + [603] = {.lex_state = 882, .external_lex_state = 4}, + [604] = {.lex_state = 882, .external_lex_state = 4}, + [605] = {.lex_state = 39, .external_lex_state = 1}, + [606] = {.lex_state = 882, .external_lex_state = 4}, + [607] = {.lex_state = 882, .external_lex_state = 4}, + [608] = {.lex_state = 882, .external_lex_state = 4}, + [609] = {.lex_state = 882, .external_lex_state = 4}, + [610] = {.lex_state = 39, .external_lex_state = 4}, + [611] = {.lex_state = 39, .external_lex_state = 4}, + [612] = {.lex_state = 39, .external_lex_state = 4}, + [613] = {.lex_state = 39, .external_lex_state = 4}, + [614] = {.lex_state = 39, .external_lex_state = 4}, + [615] = {.lex_state = 39, .external_lex_state = 4}, + [616] = {.lex_state = 39, .external_lex_state = 4}, + [617] = {.lex_state = 39, .external_lex_state = 4}, + [618] = {.lex_state = 39, .external_lex_state = 4}, + [619] = {.lex_state = 39, .external_lex_state = 4}, + [620] = {.lex_state = 39, .external_lex_state = 4}, + [621] = {.lex_state = 39, .external_lex_state = 3}, + [622] = {.lex_state = 39, .external_lex_state = 3}, + [623] = {.lex_state = 39, .external_lex_state = 2}, + [624] = {.lex_state = 40, .external_lex_state = 1}, + [625] = {.lex_state = 882, .external_lex_state = 4}, + [626] = {.lex_state = 882, .external_lex_state = 4}, + [627] = {.lex_state = 40, .external_lex_state = 1}, + [628] = {.lex_state = 882, .external_lex_state = 4}, + [629] = {.lex_state = 882, .external_lex_state = 4}, + [630] = {.lex_state = 882, .external_lex_state = 4}, + [631] = {.lex_state = 882, .external_lex_state = 4}, + [632] = {.lex_state = 882, .external_lex_state = 4}, + [633] = {.lex_state = 882, .external_lex_state = 4}, + [634] = {.lex_state = 39, .external_lex_state = 2}, + [635] = {.lex_state = 882, .external_lex_state = 4}, + [636] = {.lex_state = 39, .external_lex_state = 3}, + [637] = {.lex_state = 882, .external_lex_state = 4}, + [638] = {.lex_state = 39, .external_lex_state = 2}, + [639] = {.lex_state = 39, .external_lex_state = 2}, + [640] = {.lex_state = 882, .external_lex_state = 4}, + [641] = {.lex_state = 882, .external_lex_state = 4}, + [642] = {.lex_state = 39, .external_lex_state = 4}, + [643] = {.lex_state = 882, .external_lex_state = 4}, + [644] = {.lex_state = 40, .external_lex_state = 4}, + [645] = {.lex_state = 882, .external_lex_state = 4}, + [646] = {.lex_state = 40, .external_lex_state = 4}, + [647] = {.lex_state = 882, .external_lex_state = 4}, + [648] = {.lex_state = 882, .external_lex_state = 4}, + [649] = {.lex_state = 882, .external_lex_state = 4}, + [650] = {.lex_state = 47, .external_lex_state = 4}, + [651] = {.lex_state = 882, .external_lex_state = 4}, + [652] = {.lex_state = 882, .external_lex_state = 4}, + [653] = {.lex_state = 882, .external_lex_state = 4}, + [654] = {.lex_state = 39, .external_lex_state = 4}, + [655] = {.lex_state = 882, .external_lex_state = 4}, + [656] = {.lex_state = 47, .external_lex_state = 4}, + [657] = {.lex_state = 40, .external_lex_state = 4}, + [658] = {.lex_state = 39, .external_lex_state = 4}, + [659] = {.lex_state = 40, .external_lex_state = 4}, + [660] = {.lex_state = 39, .external_lex_state = 2}, + [661] = {.lex_state = 40, .external_lex_state = 4}, + [662] = {.lex_state = 882, .external_lex_state = 4}, + [663] = {.lex_state = 40, .external_lex_state = 4}, + [664] = {.lex_state = 40, .external_lex_state = 4}, + [665] = {.lex_state = 40, .external_lex_state = 4}, + [666] = {.lex_state = 40, .external_lex_state = 4}, + [667] = {.lex_state = 39, .external_lex_state = 4}, + [668] = {.lex_state = 40, .external_lex_state = 4}, + [669] = {.lex_state = 39, .external_lex_state = 2}, + [670] = {.lex_state = 40, .external_lex_state = 4}, + [671] = {.lex_state = 39, .external_lex_state = 4}, + [672] = {.lex_state = 39, .external_lex_state = 4}, + [673] = {.lex_state = 39, .external_lex_state = 4}, + [674] = {.lex_state = 39, .external_lex_state = 4}, + [675] = {.lex_state = 41, .external_lex_state = 4}, [676] = {.lex_state = 39, .external_lex_state = 4}, - [677] = {.lex_state = 37, .external_lex_state = 4}, - [678] = {.lex_state = 37, .external_lex_state = 4}, - [679] = {.lex_state = 39, .external_lex_state = 4}, + [677] = {.lex_state = 39, .external_lex_state = 4}, + [678] = {.lex_state = 41, .external_lex_state = 4}, + [679] = {.lex_state = 40, .external_lex_state = 3}, [680] = {.lex_state = 39, .external_lex_state = 4}, - [681] = {.lex_state = 37, .external_lex_state = 4}, - [682] = {.lex_state = 37, .external_lex_state = 4}, - [683] = {.lex_state = 39, .external_lex_state = 4}, - [684] = {.lex_state = 37, .external_lex_state = 4}, - [685] = {.lex_state = 39, .external_lex_state = 4}, - [686] = {.lex_state = 37, .external_lex_state = 4}, + [681] = {.lex_state = 39, .external_lex_state = 4}, + [682] = {.lex_state = 40, .external_lex_state = 3}, + [683] = {.lex_state = 41, .external_lex_state = 4}, + [684] = {.lex_state = 39, .external_lex_state = 4}, + [685] = {.lex_state = 882, .external_lex_state = 4}, + [686] = {.lex_state = 39, .external_lex_state = 4}, [687] = {.lex_state = 39, .external_lex_state = 4}, - [688] = {.lex_state = 37, .external_lex_state = 4}, - [689] = {.lex_state = 37, .external_lex_state = 4}, - [690] = {.lex_state = 37, .external_lex_state = 4}, - [691] = {.lex_state = 37, .external_lex_state = 4}, + [688] = {.lex_state = 39, .external_lex_state = 4}, + [689] = {.lex_state = 39, .external_lex_state = 4}, + [690] = {.lex_state = 39, .external_lex_state = 4}, + [691] = {.lex_state = 41, .external_lex_state = 4}, [692] = {.lex_state = 39, .external_lex_state = 4}, - [693] = {.lex_state = 37, .external_lex_state = 4}, - [694] = {.lex_state = 39, .external_lex_state = 4}, - [695] = {.lex_state = 876, .external_lex_state = 4}, - [696] = {.lex_state = 39, .external_lex_state = 4}, - [697] = {.lex_state = 37, .external_lex_state = 4}, + [693] = {.lex_state = 41, .external_lex_state = 4}, + [694] = {.lex_state = 41, .external_lex_state = 4}, + [695] = {.lex_state = 39, .external_lex_state = 4}, + [696] = {.lex_state = 882, .external_lex_state = 4}, + [697] = {.lex_state = 39, .external_lex_state = 4}, [698] = {.lex_state = 39, .external_lex_state = 4}, - [699] = {.lex_state = 38, .external_lex_state = 3}, - [700] = {.lex_state = 37, .external_lex_state = 4}, - [701] = {.lex_state = 37, .external_lex_state = 4}, - [702] = {.lex_state = 39, .external_lex_state = 4}, - [703] = {.lex_state = 37, .external_lex_state = 4}, - [704] = {.lex_state = 37, .external_lex_state = 4}, + [699] = {.lex_state = 39, .external_lex_state = 4}, + [700] = {.lex_state = 39, .external_lex_state = 4}, + [701] = {.lex_state = 39, .external_lex_state = 4}, + [702] = {.lex_state = 41, .external_lex_state = 4}, + [703] = {.lex_state = 41, .external_lex_state = 4}, + [704] = {.lex_state = 41, .external_lex_state = 4}, [705] = {.lex_state = 39, .external_lex_state = 4}, - [706] = {.lex_state = 37, .external_lex_state = 4}, - [707] = {.lex_state = 38, .external_lex_state = 3}, + [706] = {.lex_state = 39, .external_lex_state = 4}, + [707] = {.lex_state = 39, .external_lex_state = 4}, [708] = {.lex_state = 39, .external_lex_state = 4}, - [709] = {.lex_state = 37, .external_lex_state = 4}, + [709] = {.lex_state = 39, .external_lex_state = 4}, [710] = {.lex_state = 39, .external_lex_state = 4}, - [711] = {.lex_state = 37, .external_lex_state = 4}, - [712] = {.lex_state = 39, .external_lex_state = 4}, - [713] = {.lex_state = 37, .external_lex_state = 4}, - [714] = {.lex_state = 876, .external_lex_state = 4}, - [715] = {.lex_state = 28, .external_lex_state = 5}, - [716] = {.lex_state = 876, .external_lex_state = 4}, - [717] = {.lex_state = 38, .external_lex_state = 3}, - [718] = {.lex_state = 38, .external_lex_state = 2}, - [719] = {.lex_state = 28, .external_lex_state = 5}, - [720] = {.lex_state = 38, .external_lex_state = 2}, - [721] = {.lex_state = 38, .external_lex_state = 2}, - [722] = {.lex_state = 38, .external_lex_state = 2}, - [723] = {.lex_state = 38, .external_lex_state = 2}, - [724] = {.lex_state = 876, .external_lex_state = 4}, - [725] = {.lex_state = 38, .external_lex_state = 4}, - [726] = {.lex_state = 876, .external_lex_state = 4}, - [727] = {.lex_state = 38, .external_lex_state = 4}, - [728] = {.lex_state = 38, .external_lex_state = 2}, - [729] = {.lex_state = 38, .external_lex_state = 4}, - [730] = {.lex_state = 28, .external_lex_state = 5}, - [731] = {.lex_state = 103}, - [732] = {.lex_state = 38, .external_lex_state = 4}, - [733] = {.lex_state = 38, .external_lex_state = 4}, - [734] = {.lex_state = 38, .external_lex_state = 4}, - [735] = {.lex_state = 876, .external_lex_state = 4}, - [736] = {.lex_state = 38, .external_lex_state = 4}, - [737] = {.lex_state = 38, .external_lex_state = 4}, - [738] = {.lex_state = 38, .external_lex_state = 4}, - [739] = {.lex_state = 38, .external_lex_state = 4}, - [740] = {.lex_state = 38, .external_lex_state = 4}, - [741] = {.lex_state = 38, .external_lex_state = 4}, - [742] = {.lex_state = 89}, - [743] = {.lex_state = 38, .external_lex_state = 4}, - [744] = {.lex_state = 38, .external_lex_state = 4}, - [745] = {.lex_state = 38, .external_lex_state = 4}, - [746] = {.lex_state = 38, .external_lex_state = 4}, - [747] = {.lex_state = 38, .external_lex_state = 4}, - [748] = {.lex_state = 38, .external_lex_state = 4}, - [749] = {.lex_state = 38, .external_lex_state = 4}, - [750] = {.lex_state = 38, .external_lex_state = 4}, - [751] = {.lex_state = 38, .external_lex_state = 4}, - [752] = {.lex_state = 38, .external_lex_state = 4}, - [753] = {.lex_state = 38, .external_lex_state = 4}, - [754] = {.lex_state = 38, .external_lex_state = 4}, - [755] = {.lex_state = 38, .external_lex_state = 4}, - [756] = {.lex_state = 38, .external_lex_state = 4}, - [757] = {.lex_state = 38, .external_lex_state = 4}, - [758] = {.lex_state = 38, .external_lex_state = 4}, - [759] = {.lex_state = 38, .external_lex_state = 4}, - [760] = {.lex_state = 38, .external_lex_state = 4}, - [761] = {.lex_state = 38, .external_lex_state = 4}, - [762] = {.lex_state = 38, .external_lex_state = 4}, - [763] = {.lex_state = 38, .external_lex_state = 4}, - [764] = {.lex_state = 38, .external_lex_state = 4}, - [765] = {.lex_state = 39, .external_lex_state = 1}, - [766] = {.lex_state = 876, .external_lex_state = 4}, - [767] = {.lex_state = 39, .external_lex_state = 1}, - [768] = {.lex_state = 91}, - [769] = {.lex_state = 39, .external_lex_state = 4}, - [770] = {.lex_state = 39, .external_lex_state = 4}, - [771] = {.lex_state = 103}, - [772] = {.lex_state = 39, .external_lex_state = 4}, - [773] = {.lex_state = 91}, - [774] = {.lex_state = 37, .external_lex_state = 5}, - [775] = {.lex_state = 25, .external_lex_state = 1}, - [776] = {.lex_state = 39, .external_lex_state = 4}, - [777] = {.lex_state = 39, .external_lex_state = 4}, - [778] = {.lex_state = 39, .external_lex_state = 4}, - [779] = {.lex_state = 39, .external_lex_state = 4}, - [780] = {.lex_state = 25, .external_lex_state = 1}, - [781] = {.lex_state = 39, .external_lex_state = 4}, - [782] = {.lex_state = 91}, - [783] = {.lex_state = 877}, - [784] = {.lex_state = 39, .external_lex_state = 4}, - [785] = {.lex_state = 39, .external_lex_state = 4}, - [786] = {.lex_state = 877}, - [787] = {.lex_state = 876, .external_lex_state = 4}, - [788] = {.lex_state = 39, .external_lex_state = 4}, - [789] = {.lex_state = 877}, - [790] = {.lex_state = 25, .external_lex_state = 4}, - [791] = {.lex_state = 39, .external_lex_state = 3}, - [792] = {.lex_state = 25, .external_lex_state = 4}, - [793] = {.lex_state = 876, .external_lex_state = 4}, - [794] = {.lex_state = 25, .external_lex_state = 4}, - [795] = {.lex_state = 24, .external_lex_state = 1}, - [796] = {.lex_state = 25, .external_lex_state = 4}, - [797] = {.lex_state = 25, .external_lex_state = 4}, - [798] = {.lex_state = 25, .external_lex_state = 4}, + [711] = {.lex_state = 41, .external_lex_state = 4}, + [712] = {.lex_state = 41, .external_lex_state = 4}, + [713] = {.lex_state = 882, .external_lex_state = 4}, + [714] = {.lex_state = 39, .external_lex_state = 4}, + [715] = {.lex_state = 41, .external_lex_state = 4}, + [716] = {.lex_state = 41, .external_lex_state = 4}, + [717] = {.lex_state = 41, .external_lex_state = 4}, + [718] = {.lex_state = 41, .external_lex_state = 4}, + [719] = {.lex_state = 39, .external_lex_state = 4}, + [720] = {.lex_state = 39, .external_lex_state = 4}, + [721] = {.lex_state = 40, .external_lex_state = 2}, + [722] = {.lex_state = 40, .external_lex_state = 3}, + [723] = {.lex_state = 40, .external_lex_state = 2}, + [724] = {.lex_state = 29, .external_lex_state = 5}, + [725] = {.lex_state = 29, .external_lex_state = 5}, + [726] = {.lex_state = 40, .external_lex_state = 2}, + [727] = {.lex_state = 40, .external_lex_state = 2}, + [728] = {.lex_state = 882, .external_lex_state = 4}, + [729] = {.lex_state = 40, .external_lex_state = 4}, + [730] = {.lex_state = 882, .external_lex_state = 4}, + [731] = {.lex_state = 40, .external_lex_state = 2}, + [732] = {.lex_state = 882, .external_lex_state = 4}, + [733] = {.lex_state = 109}, + [734] = {.lex_state = 29, .external_lex_state = 5}, + [735] = {.lex_state = 40, .external_lex_state = 4}, + [736] = {.lex_state = 40, .external_lex_state = 4}, + [737] = {.lex_state = 40, .external_lex_state = 2}, + [738] = {.lex_state = 40, .external_lex_state = 4}, + [739] = {.lex_state = 40, .external_lex_state = 4}, + [740] = {.lex_state = 40, .external_lex_state = 4}, + [741] = {.lex_state = 40, .external_lex_state = 4}, + [742] = {.lex_state = 882, .external_lex_state = 4}, + [743] = {.lex_state = 40, .external_lex_state = 4}, + [744] = {.lex_state = 40, .external_lex_state = 4}, + [745] = {.lex_state = 40, .external_lex_state = 4}, + [746] = {.lex_state = 40, .external_lex_state = 4}, + [747] = {.lex_state = 40, .external_lex_state = 4}, + [748] = {.lex_state = 40, .external_lex_state = 4}, + [749] = {.lex_state = 40, .external_lex_state = 4}, + [750] = {.lex_state = 40, .external_lex_state = 4}, + [751] = {.lex_state = 40, .external_lex_state = 4}, + [752] = {.lex_state = 40, .external_lex_state = 4}, + [753] = {.lex_state = 40, .external_lex_state = 4}, + [754] = {.lex_state = 40, .external_lex_state = 4}, + [755] = {.lex_state = 40, .external_lex_state = 4}, + [756] = {.lex_state = 40, .external_lex_state = 4}, + [757] = {.lex_state = 40, .external_lex_state = 4}, + [758] = {.lex_state = 40, .external_lex_state = 4}, + [759] = {.lex_state = 40, .external_lex_state = 4}, + [760] = {.lex_state = 40, .external_lex_state = 4}, + [761] = {.lex_state = 40, .external_lex_state = 4}, + [762] = {.lex_state = 40, .external_lex_state = 4}, + [763] = {.lex_state = 40, .external_lex_state = 4}, + [764] = {.lex_state = 40, .external_lex_state = 4}, + [765] = {.lex_state = 40, .external_lex_state = 4}, + [766] = {.lex_state = 40, .external_lex_state = 4}, + [767] = {.lex_state = 40, .external_lex_state = 4}, + [768] = {.lex_state = 40, .external_lex_state = 4}, + [769] = {.lex_state = 40, .external_lex_state = 4}, + [770] = {.lex_state = 95}, + [771] = {.lex_state = 40, .external_lex_state = 4}, + [772] = {.lex_state = 40, .external_lex_state = 4}, + [773] = {.lex_state = 882, .external_lex_state = 4}, + [774] = {.lex_state = 41, .external_lex_state = 1}, + [775] = {.lex_state = 41, .external_lex_state = 1}, + [776] = {.lex_state = 41, .external_lex_state = 4}, + [777] = {.lex_state = 25, .external_lex_state = 1}, + [778] = {.lex_state = 883}, + [779] = {.lex_state = 41, .external_lex_state = 4}, + [780] = {.lex_state = 41, .external_lex_state = 4}, + [781] = {.lex_state = 41, .external_lex_state = 4}, + [782] = {.lex_state = 41, .external_lex_state = 4}, + [783] = {.lex_state = 41, .external_lex_state = 4}, + [784] = {.lex_state = 41, .external_lex_state = 4}, + [785] = {.lex_state = 41, .external_lex_state = 4}, + [786] = {.lex_state = 41, .external_lex_state = 4}, + [787] = {.lex_state = 41, .external_lex_state = 4}, + [788] = {.lex_state = 882, .external_lex_state = 4}, + [789] = {.lex_state = 97}, + [790] = {.lex_state = 97}, + [791] = {.lex_state = 41, .external_lex_state = 4}, + [792] = {.lex_state = 109}, + [793] = {.lex_state = 97}, + [794] = {.lex_state = 39, .external_lex_state = 5}, + [795] = {.lex_state = 25, .external_lex_state = 1}, + [796] = {.lex_state = 883}, + [797] = {.lex_state = 883}, + [798] = {.lex_state = 882, .external_lex_state = 4}, [799] = {.lex_state = 25, .external_lex_state = 4}, - [800] = {.lex_state = 39, .external_lex_state = 3}, - [801] = {.lex_state = 876, .external_lex_state = 4}, + [800] = {.lex_state = 24, .external_lex_state = 1}, + [801] = {.lex_state = 25, .external_lex_state = 4}, [802] = {.lex_state = 25, .external_lex_state = 4}, [803] = {.lex_state = 25, .external_lex_state = 4}, - [804] = {.lex_state = 876, .external_lex_state = 4}, - [805] = {.lex_state = 25, .external_lex_state = 4}, - [806] = {.lex_state = 876, .external_lex_state = 4}, - [807] = {.lex_state = 37}, - [808] = {.lex_state = 24, .external_lex_state = 1}, - [809] = {.lex_state = 25, .external_lex_state = 4}, - [810] = {.lex_state = 876, .external_lex_state = 4}, - [811] = {.lex_state = 876, .external_lex_state = 4}, - [812] = {.lex_state = 37}, - [813] = {.lex_state = 90}, - [814] = {.lex_state = 25, .external_lex_state = 3}, - [815] = {.lex_state = 24, .external_lex_state = 4}, - [816] = {.lex_state = 39, .external_lex_state = 2}, - [817] = {.lex_state = 39, .external_lex_state = 2}, - [818] = {.lex_state = 24, .external_lex_state = 4}, - [819] = {.lex_state = 90}, - [820] = {.lex_state = 24, .external_lex_state = 4}, - [821] = {.lex_state = 25, .external_lex_state = 3}, - [822] = {.lex_state = 24, .external_lex_state = 4}, - [823] = {.lex_state = 90}, - [824] = {.lex_state = 876, .external_lex_state = 4}, - [825] = {.lex_state = 24, .external_lex_state = 4}, - [826] = {.lex_state = 39, .external_lex_state = 2}, - [827] = {.lex_state = 24, .external_lex_state = 4}, - [828] = {.lex_state = 39, .external_lex_state = 3}, + [804] = {.lex_state = 25, .external_lex_state = 4}, + [805] = {.lex_state = 39}, + [806] = {.lex_state = 25, .external_lex_state = 4}, + [807] = {.lex_state = 25, .external_lex_state = 4}, + [808] = {.lex_state = 25, .external_lex_state = 4}, + [809] = {.lex_state = 882, .external_lex_state = 4}, + [810] = {.lex_state = 25, .external_lex_state = 4}, + [811] = {.lex_state = 41, .external_lex_state = 3}, + [812] = {.lex_state = 25, .external_lex_state = 4}, + [813] = {.lex_state = 41, .external_lex_state = 3}, + [814] = {.lex_state = 882, .external_lex_state = 4}, + [815] = {.lex_state = 882, .external_lex_state = 4}, + [816] = {.lex_state = 24, .external_lex_state = 1}, + [817] = {.lex_state = 882, .external_lex_state = 4}, + [818] = {.lex_state = 882, .external_lex_state = 4}, + [819] = {.lex_state = 39}, + [820] = {.lex_state = 25, .external_lex_state = 4}, + [821] = {.lex_state = 41, .external_lex_state = 2}, + [822] = {.lex_state = 41, .external_lex_state = 3}, + [823] = {.lex_state = 41, .external_lex_state = 2}, + [824] = {.lex_state = 24, .external_lex_state = 4}, + [825] = {.lex_state = 96}, + [826] = {.lex_state = 25, .external_lex_state = 3}, + [827] = {.lex_state = 96}, + [828] = {.lex_state = 24, .external_lex_state = 4}, [829] = {.lex_state = 24, .external_lex_state = 4}, - [830] = {.lex_state = 24, .external_lex_state = 4}, - [831] = {.lex_state = 24, .external_lex_state = 4}, + [830] = {.lex_state = 41, .external_lex_state = 2}, + [831] = {.lex_state = 96}, [832] = {.lex_state = 24, .external_lex_state = 4}, [833] = {.lex_state = 24, .external_lex_state = 4}, - [834] = {.lex_state = 39, .external_lex_state = 2}, - [835] = {.lex_state = 91}, - [836] = {.lex_state = 877}, - [837] = {.lex_state = 877}, - [838] = {.lex_state = 91}, - [839] = {.lex_state = 91}, - [840] = {.lex_state = 91}, - [841] = {.lex_state = 91}, - [842] = {.lex_state = 877}, - [843] = {.lex_state = 877}, - [844] = {.lex_state = 91}, - [845] = {.lex_state = 91}, - [846] = {.lex_state = 876, .external_lex_state = 4}, - [847] = {.lex_state = 91}, - [848] = {.lex_state = 91}, - [849] = {.lex_state = 91}, - [850] = {.lex_state = 876, .external_lex_state = 4}, - [851] = {.lex_state = 876, .external_lex_state = 4}, - [852] = {.lex_state = 877}, - [853] = {.lex_state = 877}, - [854] = {.lex_state = 91}, - [855] = {.lex_state = 91}, - [856] = {.lex_state = 91}, - [857] = {.lex_state = 91}, - [858] = {.lex_state = 91}, - [859] = {.lex_state = 876, .external_lex_state = 4}, - [860] = {.lex_state = 877}, - [861] = {.lex_state = 877}, - [862] = {.lex_state = 877}, - [863] = {.lex_state = 91}, - [864] = {.lex_state = 91}, - [865] = {.lex_state = 91}, - [866] = {.lex_state = 91}, - [867] = {.lex_state = 25, .external_lex_state = 2}, - [868] = {.lex_state = 91}, - [869] = {.lex_state = 25, .external_lex_state = 2}, - [870] = {.lex_state = 91}, - [871] = {.lex_state = 91}, - [872] = {.lex_state = 877}, - [873] = {.lex_state = 877}, - [874] = {.lex_state = 877}, - [875] = {.lex_state = 877}, - [876] = {.lex_state = 877}, - [877] = {.lex_state = 877}, - [878] = {.lex_state = 877}, - [879] = {.lex_state = 91}, - [880] = {.lex_state = 91}, - [881] = {.lex_state = 91}, - [882] = {.lex_state = 91}, - [883] = {.lex_state = 91}, - [884] = {.lex_state = 91}, - [885] = {.lex_state = 91}, - [886] = {.lex_state = 91}, - [887] = {.lex_state = 103}, - [888] = {.lex_state = 91}, - [889] = {.lex_state = 877}, - [890] = {.lex_state = 877}, - [891] = {.lex_state = 39, .external_lex_state = 2}, - [892] = {.lex_state = 91}, - [893] = {.lex_state = 39, .external_lex_state = 4}, - [894] = {.lex_state = 91}, - [895] = {.lex_state = 877}, - [896] = {.lex_state = 877}, - [897] = {.lex_state = 877}, - [898] = {.lex_state = 91}, - [899] = {.lex_state = 877}, - [900] = {.lex_state = 877}, - [901] = {.lex_state = 877}, - [902] = {.lex_state = 877}, - [903] = {.lex_state = 877}, - [904] = {.lex_state = 877}, - [905] = {.lex_state = 877}, - [906] = {.lex_state = 877}, - [907] = {.lex_state = 877}, - [908] = {.lex_state = 91}, - [909] = {.lex_state = 877}, - [910] = {.lex_state = 91}, - [911] = {.lex_state = 25, .external_lex_state = 3}, - [912] = {.lex_state = 39, .external_lex_state = 4}, - [913] = {.lex_state = 877}, - [914] = {.lex_state = 91}, - [915] = {.lex_state = 91}, - [916] = {.lex_state = 91}, - [917] = {.lex_state = 91}, - [918] = {.lex_state = 91}, - [919] = {.lex_state = 91}, - [920] = {.lex_state = 91}, - [921] = {.lex_state = 91}, - [922] = {.lex_state = 91}, - [923] = {.lex_state = 91}, - [924] = {.lex_state = 91}, - [925] = {.lex_state = 91}, - [926] = {.lex_state = 91}, - [927] = {.lex_state = 91}, - [928] = {.lex_state = 91}, - [929] = {.lex_state = 91}, - [930] = {.lex_state = 91}, - [931] = {.lex_state = 91}, - [932] = {.lex_state = 91}, - [933] = {.lex_state = 91}, - [934] = {.lex_state = 91}, - [935] = {.lex_state = 91}, - [936] = {.lex_state = 91}, - [937] = {.lex_state = 91}, - [938] = {.lex_state = 877}, - [939] = {.lex_state = 877}, - [940] = {.lex_state = 877}, - [941] = {.lex_state = 91}, - [942] = {.lex_state = 91}, - [943] = {.lex_state = 91}, - [944] = {.lex_state = 877}, - [945] = {.lex_state = 91}, - [946] = {.lex_state = 877}, - [947] = {.lex_state = 91}, - [948] = {.lex_state = 91}, - [949] = {.lex_state = 877}, - [950] = {.lex_state = 91}, - [951] = {.lex_state = 877}, - [952] = {.lex_state = 877}, - [953] = {.lex_state = 877}, - [954] = {.lex_state = 877}, - [955] = {.lex_state = 877}, - [956] = {.lex_state = 91}, - [957] = {.lex_state = 91}, - [958] = {.lex_state = 877}, - [959] = {.lex_state = 91}, - [960] = {.lex_state = 877}, - [961] = {.lex_state = 877}, - [962] = {.lex_state = 91}, - [963] = {.lex_state = 91}, - [964] = {.lex_state = 91}, - [965] = {.lex_state = 91}, - [966] = {.lex_state = 91}, - [967] = {.lex_state = 91}, - [968] = {.lex_state = 91}, - [969] = {.lex_state = 91}, - [970] = {.lex_state = 91}, - [971] = {.lex_state = 91}, - [972] = {.lex_state = 91}, - [973] = {.lex_state = 91}, - [974] = {.lex_state = 91}, - [975] = {.lex_state = 91}, - [976] = {.lex_state = 91}, - [977] = {.lex_state = 91}, - [978] = {.lex_state = 91}, - [979] = {.lex_state = 91}, - [980] = {.lex_state = 91}, - [981] = {.lex_state = 91}, - [982] = {.lex_state = 91}, - [983] = {.lex_state = 877}, - [984] = {.lex_state = 91}, - [985] = {.lex_state = 877}, - [986] = {.lex_state = 91}, - [987] = {.lex_state = 91}, - [988] = {.lex_state = 91}, - [989] = {.lex_state = 877}, - [990] = {.lex_state = 877}, - [991] = {.lex_state = 877}, - [992] = {.lex_state = 91}, - [993] = {.lex_state = 877}, - [994] = {.lex_state = 91}, - [995] = {.lex_state = 91}, - [996] = {.lex_state = 91}, - [997] = {.lex_state = 91}, - [998] = {.lex_state = 877}, - [999] = {.lex_state = 91}, - [1000] = {.lex_state = 877}, - [1001] = {.lex_state = 91}, - [1002] = {.lex_state = 91}, - [1003] = {.lex_state = 877}, - [1004] = {.lex_state = 91}, - [1005] = {.lex_state = 877}, - [1006] = {.lex_state = 91}, - [1007] = {.lex_state = 91}, - [1008] = {.lex_state = 91}, - [1009] = {.lex_state = 91}, - [1010] = {.lex_state = 877}, - [1011] = {.lex_state = 91}, - [1012] = {.lex_state = 91}, - [1013] = {.lex_state = 91}, - [1014] = {.lex_state = 91}, - [1015] = {.lex_state = 91}, - [1016] = {.lex_state = 91}, - [1017] = {.lex_state = 91}, - [1018] = {.lex_state = 877}, - [1019] = {.lex_state = 91}, - [1020] = {.lex_state = 877}, - [1021] = {.lex_state = 877}, - [1022] = {.lex_state = 91}, - [1023] = {.lex_state = 43, .external_lex_state = 4}, - [1024] = {.lex_state = 877}, - [1025] = {.lex_state = 877}, - [1026] = {.lex_state = 877}, - [1027] = {.lex_state = 877}, - [1028] = {.lex_state = 24, .external_lex_state = 3}, - [1029] = {.lex_state = 877}, - [1030] = {.lex_state = 877}, - [1031] = {.lex_state = 877}, - [1032] = {.lex_state = 39, .external_lex_state = 2}, - [1033] = {.lex_state = 877}, - [1034] = {.lex_state = 877}, - [1035] = {.lex_state = 877}, - [1036] = {.lex_state = 877}, - [1037] = {.lex_state = 877}, - [1038] = {.lex_state = 877}, - [1039] = {.lex_state = 91}, - [1040] = {.lex_state = 91}, - [1041] = {.lex_state = 91}, - [1042] = {.lex_state = 91}, - [1043] = {.lex_state = 91}, - [1044] = {.lex_state = 877}, - [1045] = {.lex_state = 91}, - [1046] = {.lex_state = 91}, - [1047] = {.lex_state = 91}, - [1048] = {.lex_state = 877}, - [1049] = {.lex_state = 91}, - [1050] = {.lex_state = 877}, - [1051] = {.lex_state = 877}, - [1052] = {.lex_state = 877}, - [1053] = {.lex_state = 877}, - [1054] = {.lex_state = 43, .external_lex_state = 4}, - [1055] = {.lex_state = 877}, - [1056] = {.lex_state = 877}, - [1057] = {.lex_state = 877}, - [1058] = {.lex_state = 877}, - [1059] = {.lex_state = 877}, - [1060] = {.lex_state = 877}, - [1061] = {.lex_state = 877}, - [1062] = {.lex_state = 877}, - [1063] = {.lex_state = 877}, - [1064] = {.lex_state = 25, .external_lex_state = 2}, - [1065] = {.lex_state = 877}, - [1066] = {.lex_state = 877}, - [1067] = {.lex_state = 877}, - [1068] = {.lex_state = 877}, - [1069] = {.lex_state = 877}, - [1070] = {.lex_state = 877}, - [1071] = {.lex_state = 877}, - [1072] = {.lex_state = 91}, - [1073] = {.lex_state = 877}, - [1074] = {.lex_state = 877}, - [1075] = {.lex_state = 877}, - [1076] = {.lex_state = 877}, - [1077] = {.lex_state = 877}, - [1078] = {.lex_state = 24, .external_lex_state = 3}, - [1079] = {.lex_state = 877}, - [1080] = {.lex_state = 877}, - [1081] = {.lex_state = 877}, - [1082] = {.lex_state = 91}, - [1083] = {.lex_state = 91}, - [1084] = {.lex_state = 25, .external_lex_state = 2}, - [1085] = {.lex_state = 91}, - [1086] = {.lex_state = 877}, - [1087] = {.lex_state = 91}, - [1088] = {.lex_state = 877}, - [1089] = {.lex_state = 91}, - [1090] = {.lex_state = 877}, - [1091] = {.lex_state = 877}, - [1092] = {.lex_state = 877}, - [1093] = {.lex_state = 877}, - [1094] = {.lex_state = 91}, - [1095] = {.lex_state = 91}, - [1096] = {.lex_state = 877}, - [1097] = {.lex_state = 91}, - [1098] = {.lex_state = 877}, - [1099] = {.lex_state = 877}, - [1100] = {.lex_state = 877}, - [1101] = {.lex_state = 877}, - [1102] = {.lex_state = 877}, - [1103] = {.lex_state = 877}, - [1104] = {.lex_state = 877}, - [1105] = {.lex_state = 877}, - [1106] = {.lex_state = 877}, - [1107] = {.lex_state = 877}, - [1108] = {.lex_state = 877}, - [1109] = {.lex_state = 877}, - [1110] = {.lex_state = 877}, - [1111] = {.lex_state = 877}, - [1112] = {.lex_state = 877}, - [1113] = {.lex_state = 877}, - [1114] = {.lex_state = 877}, - [1115] = {.lex_state = 877}, - [1116] = {.lex_state = 877}, - [1117] = {.lex_state = 877}, - [1118] = {.lex_state = 877}, - [1119] = {.lex_state = 877}, - [1120] = {.lex_state = 877}, - [1121] = {.lex_state = 877}, - [1122] = {.lex_state = 877}, - [1123] = {.lex_state = 876, .external_lex_state = 4}, - [1124] = {.lex_state = 876, .external_lex_state = 4}, - [1125] = {.lex_state = 878}, - [1126] = {.lex_state = 878}, - [1127] = {.lex_state = 878}, - [1128] = {.lex_state = 878}, - [1129] = {.lex_state = 92}, - [1130] = {.lex_state = 92}, - [1131] = {.lex_state = 878}, - [1132] = {.lex_state = 92}, - [1133] = {.lex_state = 92}, - [1134] = {.lex_state = 92}, - [1135] = {.lex_state = 92}, - [1136] = {.lex_state = 92}, - [1137] = {.lex_state = 92}, - [1138] = {.lex_state = 878}, - [1139] = {.lex_state = 878}, - [1140] = {.lex_state = 92}, - [1141] = {.lex_state = 876, .external_lex_state = 4}, - [1142] = {.lex_state = 90}, - [1143] = {.lex_state = 876, .external_lex_state = 4}, - [1144] = {.lex_state = 878}, - [1145] = {.lex_state = 39, .external_lex_state = 4}, - [1146] = {.lex_state = 92}, - [1147] = {.lex_state = 878}, - [1148] = {.lex_state = 92}, - [1149] = {.lex_state = 92}, - [1150] = {.lex_state = 92}, - [1151] = {.lex_state = 878}, - [1152] = {.lex_state = 878}, - [1153] = {.lex_state = 878}, - [1154] = {.lex_state = 92}, - [1155] = {.lex_state = 92}, - [1156] = {.lex_state = 39, .external_lex_state = 4}, - [1157] = {.lex_state = 92}, - [1158] = {.lex_state = 878}, - [1159] = {.lex_state = 92}, - [1160] = {.lex_state = 878}, - [1161] = {.lex_state = 92}, - [1162] = {.lex_state = 876, .external_lex_state = 1}, - [1163] = {.lex_state = 878}, - [1164] = {.lex_state = 37, .external_lex_state = 5}, - [1165] = {.lex_state = 878}, - [1166] = {.lex_state = 878}, - [1167] = {.lex_state = 876, .external_lex_state = 4}, - [1168] = {.lex_state = 878}, - [1169] = {.lex_state = 878}, - [1170] = {.lex_state = 878}, - [1171] = {.lex_state = 39, .external_lex_state = 4}, - [1172] = {.lex_state = 878}, - [1173] = {.lex_state = 878}, - [1174] = {.lex_state = 878}, - [1175] = {.lex_state = 878}, - [1176] = {.lex_state = 39, .external_lex_state = 4}, - [1177] = {.lex_state = 876, .external_lex_state = 4}, - [1178] = {.lex_state = 876, .external_lex_state = 1}, - [1179] = {.lex_state = 92}, - [1180] = {.lex_state = 39, .external_lex_state = 4}, - [1181] = {.lex_state = 39, .external_lex_state = 4}, - [1182] = {.lex_state = 39, .external_lex_state = 4}, - [1183] = {.lex_state = 878}, - [1184] = {.lex_state = 37, .external_lex_state = 5}, - [1185] = {.lex_state = 37, .external_lex_state = 5}, - [1186] = {.lex_state = 39, .external_lex_state = 4}, - [1187] = {.lex_state = 92}, - [1188] = {.lex_state = 92}, - [1189] = {.lex_state = 92}, - [1190] = {.lex_state = 92}, - [1191] = {.lex_state = 878}, - [1192] = {.lex_state = 92}, - [1193] = {.lex_state = 878}, - [1194] = {.lex_state = 92}, - [1195] = {.lex_state = 92}, - [1196] = {.lex_state = 92}, - [1197] = {.lex_state = 878}, - [1198] = {.lex_state = 92}, - [1199] = {.lex_state = 92}, - [1200] = {.lex_state = 878}, - [1201] = {.lex_state = 878}, - [1202] = {.lex_state = 878}, - [1203] = {.lex_state = 878}, - [1204] = {.lex_state = 878}, - [1205] = {.lex_state = 878}, - [1206] = {.lex_state = 878}, - [1207] = {.lex_state = 878}, - [1208] = {.lex_state = 92}, - [1209] = {.lex_state = 878}, - [1210] = {.lex_state = 24, .external_lex_state = 2}, - [1211] = {.lex_state = 92}, - [1212] = {.lex_state = 25, .external_lex_state = 4}, - [1213] = {.lex_state = 876, .external_lex_state = 4}, - [1214] = {.lex_state = 878}, - [1215] = {.lex_state = 92}, - [1216] = {.lex_state = 878}, - [1217] = {.lex_state = 92}, - [1218] = {.lex_state = 39, .external_lex_state = 4}, - [1219] = {.lex_state = 39, .external_lex_state = 4}, - [1220] = {.lex_state = 39, .external_lex_state = 4}, - [1221] = {.lex_state = 92}, - [1222] = {.lex_state = 878}, - [1223] = {.lex_state = 39, .external_lex_state = 4}, - [1224] = {.lex_state = 878}, - [1225] = {.lex_state = 92}, - [1226] = {.lex_state = 92}, - [1227] = {.lex_state = 878}, - [1228] = {.lex_state = 878}, - [1229] = {.lex_state = 878}, - [1230] = {.lex_state = 878}, - [1231] = {.lex_state = 878}, - [1232] = {.lex_state = 39, .external_lex_state = 4}, - [1233] = {.lex_state = 92}, - [1234] = {.lex_state = 878}, - [1235] = {.lex_state = 878}, - [1236] = {.lex_state = 37, .external_lex_state = 5}, - [1237] = {.lex_state = 39, .external_lex_state = 4}, - [1238] = {.lex_state = 92}, - [1239] = {.lex_state = 39, .external_lex_state = 4}, - [1240] = {.lex_state = 39, .external_lex_state = 4}, - [1241] = {.lex_state = 92}, - [1242] = {.lex_state = 92}, - [1243] = {.lex_state = 25, .external_lex_state = 4}, - [1244] = {.lex_state = 876, .external_lex_state = 4}, - [1245] = {.lex_state = 876, .external_lex_state = 1}, - [1246] = {.lex_state = 39, .external_lex_state = 4}, - [1247] = {.lex_state = 876, .external_lex_state = 4}, - [1248] = {.lex_state = 876, .external_lex_state = 4}, - [1249] = {.lex_state = 39, .external_lex_state = 4}, - [1250] = {.lex_state = 103}, - [1251] = {.lex_state = 878}, - [1252] = {.lex_state = 878}, - [1253] = {.lex_state = 92}, - [1254] = {.lex_state = 878}, - [1255] = {.lex_state = 92}, - [1256] = {.lex_state = 92}, - [1257] = {.lex_state = 25, .external_lex_state = 2}, - [1258] = {.lex_state = 92}, - [1259] = {.lex_state = 39, .external_lex_state = 4}, - [1260] = {.lex_state = 37, .external_lex_state = 5}, - [1261] = {.lex_state = 876, .external_lex_state = 4}, - [1262] = {.lex_state = 876, .external_lex_state = 4}, - [1263] = {.lex_state = 92}, - [1264] = {.lex_state = 92}, - [1265] = {.lex_state = 24, .external_lex_state = 2}, - [1266] = {.lex_state = 876, .external_lex_state = 4}, - [1267] = {.lex_state = 92}, - [1268] = {.lex_state = 92}, - [1269] = {.lex_state = 878}, - [1270] = {.lex_state = 878}, - [1271] = {.lex_state = 92}, - [1272] = {.lex_state = 878}, - [1273] = {.lex_state = 878}, - [1274] = {.lex_state = 878}, - [1275] = {.lex_state = 878}, - [1276] = {.lex_state = 878}, - [1277] = {.lex_state = 878}, - [1278] = {.lex_state = 92}, - [1279] = {.lex_state = 878}, - [1280] = {.lex_state = 92}, - [1281] = {.lex_state = 92}, - [1282] = {.lex_state = 878}, - [1283] = {.lex_state = 878}, - [1284] = {.lex_state = 878}, - [1285] = {.lex_state = 878}, - [1286] = {.lex_state = 878}, - [1287] = {.lex_state = 878}, - [1288] = {.lex_state = 92}, - [1289] = {.lex_state = 878}, - [1290] = {.lex_state = 876, .external_lex_state = 4}, - [1291] = {.lex_state = 878}, - [1292] = {.lex_state = 878}, - [1293] = {.lex_state = 878}, - [1294] = {.lex_state = 92}, - [1295] = {.lex_state = 878}, - [1296] = {.lex_state = 878}, - [1297] = {.lex_state = 39, .external_lex_state = 4}, - [1298] = {.lex_state = 878}, - [1299] = {.lex_state = 878}, - [1300] = {.lex_state = 878}, - [1301] = {.lex_state = 878}, - [1302] = {.lex_state = 878}, - [1303] = {.lex_state = 878}, - [1304] = {.lex_state = 39, .external_lex_state = 4}, - [1305] = {.lex_state = 876, .external_lex_state = 4}, - [1306] = {.lex_state = 878}, - [1307] = {.lex_state = 878}, - [1308] = {.lex_state = 876, .external_lex_state = 4}, - [1309] = {.lex_state = 92}, - [1310] = {.lex_state = 876, .external_lex_state = 4}, - [1311] = {.lex_state = 878}, - [1312] = {.lex_state = 92}, - [1313] = {.lex_state = 878}, - [1314] = {.lex_state = 876, .external_lex_state = 4}, - [1315] = {.lex_state = 92}, - [1316] = {.lex_state = 92}, - [1317] = {.lex_state = 878}, - [1318] = {.lex_state = 92}, - [1319] = {.lex_state = 878}, - [1320] = {.lex_state = 876, .external_lex_state = 4}, - [1321] = {.lex_state = 878}, - [1322] = {.lex_state = 876, .external_lex_state = 1}, - [1323] = {.lex_state = 37, .external_lex_state = 5}, - [1324] = {.lex_state = 876, .external_lex_state = 4}, - [1325] = {.lex_state = 878}, - [1326] = {.lex_state = 878}, - [1327] = {.lex_state = 876, .external_lex_state = 1}, - [1328] = {.lex_state = 876, .external_lex_state = 4}, - [1329] = {.lex_state = 39, .external_lex_state = 4}, - [1330] = {.lex_state = 878}, - [1331] = {.lex_state = 39, .external_lex_state = 4}, - [1332] = {.lex_state = 878}, - [1333] = {.lex_state = 876, .external_lex_state = 4}, - [1334] = {.lex_state = 878}, - [1335] = {.lex_state = 878}, - [1336] = {.lex_state = 876, .external_lex_state = 4}, - [1337] = {.lex_state = 878}, - [1338] = {.lex_state = 878}, - [1339] = {.lex_state = 876, .external_lex_state = 4}, - [1340] = {.lex_state = 878}, - [1341] = {.lex_state = 876, .external_lex_state = 4}, - [1342] = {.lex_state = 878}, - [1343] = {.lex_state = 878}, - [1344] = {.lex_state = 878}, - [1345] = {.lex_state = 92}, - [1346] = {.lex_state = 876, .external_lex_state = 4}, - [1347] = {.lex_state = 878}, - [1348] = {.lex_state = 24, .external_lex_state = 3}, - [1349] = {.lex_state = 878}, - [1350] = {.lex_state = 878}, - [1351] = {.lex_state = 92}, - [1352] = {.lex_state = 92}, - [1353] = {.lex_state = 878}, - [1354] = {.lex_state = 39, .external_lex_state = 4}, - [1355] = {.lex_state = 39, .external_lex_state = 4}, - [1356] = {.lex_state = 878}, - [1357] = {.lex_state = 878}, - [1358] = {.lex_state = 878}, - [1359] = {.lex_state = 878}, - [1360] = {.lex_state = 876, .external_lex_state = 4}, - [1361] = {.lex_state = 878}, - [1362] = {.lex_state = 92}, - [1363] = {.lex_state = 878}, - [1364] = {.lex_state = 92}, - [1365] = {.lex_state = 24, .external_lex_state = 2}, - [1366] = {.lex_state = 878}, - [1367] = {.lex_state = 92}, - [1368] = {.lex_state = 92}, - [1369] = {.lex_state = 92}, - [1370] = {.lex_state = 92}, - [1371] = {.lex_state = 92}, - [1372] = {.lex_state = 878}, - [1373] = {.lex_state = 24, .external_lex_state = 2}, - [1374] = {.lex_state = 876, .external_lex_state = 4}, - [1375] = {.lex_state = 92}, - [1376] = {.lex_state = 878}, - [1377] = {.lex_state = 876, .external_lex_state = 4}, - [1378] = {.lex_state = 878}, - [1379] = {.lex_state = 878}, - [1380] = {.lex_state = 878}, - [1381] = {.lex_state = 878}, - [1382] = {.lex_state = 878}, - [1383] = {.lex_state = 878}, - [1384] = {.lex_state = 876, .external_lex_state = 4}, - [1385] = {.lex_state = 878}, - [1386] = {.lex_state = 39, .external_lex_state = 4}, - [1387] = {.lex_state = 37, .external_lex_state = 5}, - [1388] = {.lex_state = 39, .external_lex_state = 4}, - [1389] = {.lex_state = 878}, - [1390] = {.lex_state = 878}, - [1391] = {.lex_state = 876, .external_lex_state = 4}, - [1392] = {.lex_state = 878}, - [1393] = {.lex_state = 878}, - [1394] = {.lex_state = 878}, - [1395] = {.lex_state = 878}, - [1396] = {.lex_state = 876, .external_lex_state = 4}, - [1397] = {.lex_state = 878}, - [1398] = {.lex_state = 878}, - [1399] = {.lex_state = 39, .external_lex_state = 4}, - [1400] = {.lex_state = 39, .external_lex_state = 4}, - [1401] = {.lex_state = 878}, - [1402] = {.lex_state = 37, .external_lex_state = 5}, - [1403] = {.lex_state = 878}, - [1404] = {.lex_state = 876, .external_lex_state = 4}, - [1405] = {.lex_state = 878}, - [1406] = {.lex_state = 92}, - [1407] = {.lex_state = 878}, - [1408] = {.lex_state = 878}, - [1409] = {.lex_state = 92}, - [1410] = {.lex_state = 92}, - [1411] = {.lex_state = 92}, - [1412] = {.lex_state = 878}, - [1413] = {.lex_state = 92}, - [1414] = {.lex_state = 876, .external_lex_state = 4}, - [1415] = {.lex_state = 878}, - [1416] = {.lex_state = 878}, - [1417] = {.lex_state = 878}, - [1418] = {.lex_state = 37, .external_lex_state = 5}, - [1419] = {.lex_state = 92}, - [1420] = {.lex_state = 92}, - [1421] = {.lex_state = 92}, - [1422] = {.lex_state = 92}, - [1423] = {.lex_state = 92}, - [1424] = {.lex_state = 92}, - [1425] = {.lex_state = 878}, - [1426] = {.lex_state = 92}, - [1427] = {.lex_state = 92}, - [1428] = {.lex_state = 92}, - [1429] = {.lex_state = 92}, - [1430] = {.lex_state = 92}, - [1431] = {.lex_state = 92}, - [1432] = {.lex_state = 878}, - [1433] = {.lex_state = 92}, - [1434] = {.lex_state = 92}, - [1435] = {.lex_state = 92}, - [1436] = {.lex_state = 92}, - [1437] = {.lex_state = 92}, - [1438] = {.lex_state = 92}, - [1439] = {.lex_state = 92}, - [1440] = {.lex_state = 878}, - [1441] = {.lex_state = 878}, - [1442] = {.lex_state = 92}, - [1443] = {.lex_state = 92}, - [1444] = {.lex_state = 92}, - [1445] = {.lex_state = 92}, - [1446] = {.lex_state = 878}, - [1447] = {.lex_state = 878}, - [1448] = {.lex_state = 92}, - [1449] = {.lex_state = 876, .external_lex_state = 4}, - [1450] = {.lex_state = 92}, - [1451] = {.lex_state = 92}, - [1452] = {.lex_state = 92}, - [1453] = {.lex_state = 878}, - [1454] = {.lex_state = 92}, - [1455] = {.lex_state = 92}, - [1456] = {.lex_state = 878}, - [1457] = {.lex_state = 92}, - [1458] = {.lex_state = 878}, - [1459] = {.lex_state = 92}, - [1460] = {.lex_state = 92}, - [1461] = {.lex_state = 92}, - [1462] = {.lex_state = 92}, - [1463] = {.lex_state = 92}, - [1464] = {.lex_state = 92}, - [1465] = {.lex_state = 92}, - [1466] = {.lex_state = 92}, - [1467] = {.lex_state = 878}, - [1468] = {.lex_state = 876, .external_lex_state = 4}, - [1469] = {.lex_state = 92}, - [1470] = {.lex_state = 92}, - [1471] = {.lex_state = 92}, - [1472] = {.lex_state = 92}, - [1473] = {.lex_state = 37, .external_lex_state = 5}, - [1474] = {.lex_state = 878}, - [1475] = {.lex_state = 92}, - [1476] = {.lex_state = 92}, - [1477] = {.lex_state = 92}, - [1478] = {.lex_state = 92}, - [1479] = {.lex_state = 92}, - [1480] = {.lex_state = 92}, - [1481] = {.lex_state = 92}, - [1482] = {.lex_state = 878}, - [1483] = {.lex_state = 878}, - [1484] = {.lex_state = 878}, - [1485] = {.lex_state = 92}, - [1486] = {.lex_state = 878}, - [1487] = {.lex_state = 92}, - [1488] = {.lex_state = 39, .external_lex_state = 4}, - [1489] = {.lex_state = 92}, - [1490] = {.lex_state = 878}, - [1491] = {.lex_state = 92}, - [1492] = {.lex_state = 878}, - [1493] = {.lex_state = 92}, - [1494] = {.lex_state = 92}, - [1495] = {.lex_state = 878}, - [1496] = {.lex_state = 92}, - [1497] = {.lex_state = 92}, - [1498] = {.lex_state = 92}, - [1499] = {.lex_state = 92}, - [1500] = {.lex_state = 92}, - [1501] = {.lex_state = 92}, - [1502] = {.lex_state = 92}, - [1503] = {.lex_state = 92}, - [1504] = {.lex_state = 92}, - [1505] = {.lex_state = 92}, - [1506] = {.lex_state = 878}, - [1507] = {.lex_state = 878}, - [1508] = {.lex_state = 878}, - [1509] = {.lex_state = 92}, - [1510] = {.lex_state = 24, .external_lex_state = 4}, - [1511] = {.lex_state = 92}, - [1512] = {.lex_state = 24, .external_lex_state = 4}, - [1513] = {.lex_state = 876, .external_lex_state = 4}, - [1514] = {.lex_state = 92}, - [1515] = {.lex_state = 92}, - [1516] = {.lex_state = 92}, - [1517] = {.lex_state = 25, .external_lex_state = 2}, - [1518] = {.lex_state = 878}, - [1519] = {.lex_state = 876, .external_lex_state = 4}, - [1520] = {.lex_state = 92}, - [1521] = {.lex_state = 92}, - [1522] = {.lex_state = 92}, - [1523] = {.lex_state = 92}, - [1524] = {.lex_state = 92}, - [1525] = {.lex_state = 92}, - [1526] = {.lex_state = 92}, - [1527] = {.lex_state = 92}, - [1528] = {.lex_state = 92}, - [1529] = {.lex_state = 92}, - [1530] = {.lex_state = 92}, - [1531] = {.lex_state = 878}, - [1532] = {.lex_state = 92}, - [1533] = {.lex_state = 878}, - [1534] = {.lex_state = 92}, - [1535] = {.lex_state = 25, .external_lex_state = 4}, - [1536] = {.lex_state = 25, .external_lex_state = 4}, - [1537] = {.lex_state = 24, .external_lex_state = 2}, - [1538] = {.lex_state = 25, .external_lex_state = 4}, - [1539] = {.lex_state = 25, .external_lex_state = 4}, - [1540] = {.lex_state = 25, .external_lex_state = 4}, - [1541] = {.lex_state = 25, .external_lex_state = 4}, - [1542] = {.lex_state = 25, .external_lex_state = 4}, - [1543] = {.lex_state = 25, .external_lex_state = 4}, - [1544] = {.lex_state = 25, .external_lex_state = 4}, - [1545] = {.lex_state = 25, .external_lex_state = 4}, - [1546] = {.lex_state = 25, .external_lex_state = 4}, - [1547] = {.lex_state = 24, .external_lex_state = 4}, - [1548] = {.lex_state = 25, .external_lex_state = 4}, + [834] = {.lex_state = 24, .external_lex_state = 4}, + [835] = {.lex_state = 24, .external_lex_state = 4}, + [836] = {.lex_state = 41, .external_lex_state = 2}, + [837] = {.lex_state = 24, .external_lex_state = 4}, + [838] = {.lex_state = 24, .external_lex_state = 4}, + [839] = {.lex_state = 25, .external_lex_state = 3}, + [840] = {.lex_state = 882, .external_lex_state = 4}, + [841] = {.lex_state = 24, .external_lex_state = 4}, + [842] = {.lex_state = 24, .external_lex_state = 4}, + [843] = {.lex_state = 97}, + [844] = {.lex_state = 883}, + [845] = {.lex_state = 883}, + [846] = {.lex_state = 883}, + [847] = {.lex_state = 883}, + [848] = {.lex_state = 883}, + [849] = {.lex_state = 882, .external_lex_state = 4}, + [850] = {.lex_state = 883}, + [851] = {.lex_state = 883}, + [852] = {.lex_state = 883}, + [853] = {.lex_state = 883}, + [854] = {.lex_state = 883}, + [855] = {.lex_state = 883}, + [856] = {.lex_state = 883}, + [857] = {.lex_state = 883}, + [858] = {.lex_state = 883}, + [859] = {.lex_state = 883}, + [860] = {.lex_state = 883}, + [861] = {.lex_state = 883}, + [862] = {.lex_state = 883}, + [863] = {.lex_state = 883}, + [864] = {.lex_state = 883}, + [865] = {.lex_state = 883}, + [866] = {.lex_state = 97}, + [867] = {.lex_state = 883}, + [868] = {.lex_state = 97}, + [869] = {.lex_state = 97}, + [870] = {.lex_state = 97}, + [871] = {.lex_state = 46, .external_lex_state = 4}, + [872] = {.lex_state = 45, .external_lex_state = 4}, + [873] = {.lex_state = 883}, + [874] = {.lex_state = 883}, + [875] = {.lex_state = 883}, + [876] = {.lex_state = 883}, + [877] = {.lex_state = 883}, + [878] = {.lex_state = 883}, + [879] = {.lex_state = 883}, + [880] = {.lex_state = 883}, + [881] = {.lex_state = 883}, + [882] = {.lex_state = 97}, + [883] = {.lex_state = 883}, + [884] = {.lex_state = 883}, + [885] = {.lex_state = 883}, + [886] = {.lex_state = 883}, + [887] = {.lex_state = 883}, + [888] = {.lex_state = 883}, + [889] = {.lex_state = 883}, + [890] = {.lex_state = 883}, + [891] = {.lex_state = 883}, + [892] = {.lex_state = 45, .external_lex_state = 4}, + [893] = {.lex_state = 883}, + [894] = {.lex_state = 883}, + [895] = {.lex_state = 883}, + [896] = {.lex_state = 97}, + [897] = {.lex_state = 883}, + [898] = {.lex_state = 883}, + [899] = {.lex_state = 883}, + [900] = {.lex_state = 883}, + [901] = {.lex_state = 883}, + [902] = {.lex_state = 883}, + [903] = {.lex_state = 883}, + [904] = {.lex_state = 883}, + [905] = {.lex_state = 883}, + [906] = {.lex_state = 883}, + [907] = {.lex_state = 883}, + [908] = {.lex_state = 883}, + [909] = {.lex_state = 883}, + [910] = {.lex_state = 97}, + [911] = {.lex_state = 97}, + [912] = {.lex_state = 97}, + [913] = {.lex_state = 883}, + [914] = {.lex_state = 883}, + [915] = {.lex_state = 883}, + [916] = {.lex_state = 883}, + [917] = {.lex_state = 883}, + [918] = {.lex_state = 883}, + [919] = {.lex_state = 883}, + [920] = {.lex_state = 883}, + [921] = {.lex_state = 883}, + [922] = {.lex_state = 883}, + [923] = {.lex_state = 97}, + [924] = {.lex_state = 97}, + [925] = {.lex_state = 97}, + [926] = {.lex_state = 97}, + [927] = {.lex_state = 97}, + [928] = {.lex_state = 883}, + [929] = {.lex_state = 883}, + [930] = {.lex_state = 883}, + [931] = {.lex_state = 883}, + [932] = {.lex_state = 883}, + [933] = {.lex_state = 25, .external_lex_state = 2}, + [934] = {.lex_state = 41, .external_lex_state = 4}, + [935] = {.lex_state = 97}, + [936] = {.lex_state = 97}, + [937] = {.lex_state = 97}, + [938] = {.lex_state = 97}, + [939] = {.lex_state = 97}, + [940] = {.lex_state = 97}, + [941] = {.lex_state = 883}, + [942] = {.lex_state = 883}, + [943] = {.lex_state = 97}, + [944] = {.lex_state = 97}, + [945] = {.lex_state = 97}, + [946] = {.lex_state = 883}, + [947] = {.lex_state = 883}, + [948] = {.lex_state = 883}, + [949] = {.lex_state = 883}, + [950] = {.lex_state = 883}, + [951] = {.lex_state = 97}, + [952] = {.lex_state = 97}, + [953] = {.lex_state = 41, .external_lex_state = 4}, + [954] = {.lex_state = 97}, + [955] = {.lex_state = 883}, + [956] = {.lex_state = 97}, + [957] = {.lex_state = 97}, + [958] = {.lex_state = 97}, + [959] = {.lex_state = 97}, + [960] = {.lex_state = 41, .external_lex_state = 2}, + [961] = {.lex_state = 97}, + [962] = {.lex_state = 883}, + [963] = {.lex_state = 97}, + [964] = {.lex_state = 97}, + [965] = {.lex_state = 883}, + [966] = {.lex_state = 97}, + [967] = {.lex_state = 97}, + [968] = {.lex_state = 97}, + [969] = {.lex_state = 97}, + [970] = {.lex_state = 883}, + [971] = {.lex_state = 883}, + [972] = {.lex_state = 883}, + [973] = {.lex_state = 882, .external_lex_state = 4}, + [974] = {.lex_state = 883}, + [975] = {.lex_state = 883}, + [976] = {.lex_state = 883}, + [977] = {.lex_state = 97}, + [978] = {.lex_state = 97}, + [979] = {.lex_state = 97}, + [980] = {.lex_state = 97}, + [981] = {.lex_state = 97}, + [982] = {.lex_state = 97}, + [983] = {.lex_state = 883}, + [984] = {.lex_state = 97}, + [985] = {.lex_state = 97}, + [986] = {.lex_state = 97}, + [987] = {.lex_state = 882, .external_lex_state = 4}, + [988] = {.lex_state = 883}, + [989] = {.lex_state = 97}, + [990] = {.lex_state = 883}, + [991] = {.lex_state = 97}, + [992] = {.lex_state = 97}, + [993] = {.lex_state = 883}, + [994] = {.lex_state = 97}, + [995] = {.lex_state = 97}, + [996] = {.lex_state = 97}, + [997] = {.lex_state = 883}, + [998] = {.lex_state = 97}, + [999] = {.lex_state = 97}, + [1000] = {.lex_state = 883}, + [1001] = {.lex_state = 883}, + [1002] = {.lex_state = 883}, + [1003] = {.lex_state = 883}, + [1004] = {.lex_state = 883}, + [1005] = {.lex_state = 97}, + [1006] = {.lex_state = 97}, + [1007] = {.lex_state = 97}, + [1008] = {.lex_state = 883}, + [1009] = {.lex_state = 883}, + [1010] = {.lex_state = 883}, + [1011] = {.lex_state = 883}, + [1012] = {.lex_state = 97}, + [1013] = {.lex_state = 97}, + [1014] = {.lex_state = 97}, + [1015] = {.lex_state = 97}, + [1016] = {.lex_state = 97}, + [1017] = {.lex_state = 97}, + [1018] = {.lex_state = 97}, + [1019] = {.lex_state = 97}, + [1020] = {.lex_state = 97}, + [1021] = {.lex_state = 97}, + [1022] = {.lex_state = 97}, + [1023] = {.lex_state = 883}, + [1024] = {.lex_state = 883}, + [1025] = {.lex_state = 883}, + [1026] = {.lex_state = 883}, + [1027] = {.lex_state = 883}, + [1028] = {.lex_state = 883}, + [1029] = {.lex_state = 883}, + [1030] = {.lex_state = 97}, + [1031] = {.lex_state = 97}, + [1032] = {.lex_state = 97}, + [1033] = {.lex_state = 97}, + [1034] = {.lex_state = 97}, + [1035] = {.lex_state = 97}, + [1036] = {.lex_state = 97}, + [1037] = {.lex_state = 883}, + [1038] = {.lex_state = 883}, + [1039] = {.lex_state = 883}, + [1040] = {.lex_state = 883}, + [1041] = {.lex_state = 97}, + [1042] = {.lex_state = 97}, + [1043] = {.lex_state = 97}, + [1044] = {.lex_state = 97}, + [1045] = {.lex_state = 97}, + [1046] = {.lex_state = 883}, + [1047] = {.lex_state = 883}, + [1048] = {.lex_state = 97}, + [1049] = {.lex_state = 97}, + [1050] = {.lex_state = 97}, + [1051] = {.lex_state = 97}, + [1052] = {.lex_state = 97}, + [1053] = {.lex_state = 883}, + [1054] = {.lex_state = 883}, + [1055] = {.lex_state = 97}, + [1056] = {.lex_state = 97}, + [1057] = {.lex_state = 883}, + [1058] = {.lex_state = 97}, + [1059] = {.lex_state = 97}, + [1060] = {.lex_state = 97}, + [1061] = {.lex_state = 97}, + [1062] = {.lex_state = 97}, + [1063] = {.lex_state = 883}, + [1064] = {.lex_state = 97}, + [1065] = {.lex_state = 97}, + [1066] = {.lex_state = 97}, + [1067] = {.lex_state = 883}, + [1068] = {.lex_state = 883}, + [1069] = {.lex_state = 883}, + [1070] = {.lex_state = 883}, + [1071] = {.lex_state = 24, .external_lex_state = 3}, + [1072] = {.lex_state = 41, .external_lex_state = 2}, + [1073] = {.lex_state = 883}, + [1074] = {.lex_state = 883}, + [1075] = {.lex_state = 883}, + [1076] = {.lex_state = 883}, + [1077] = {.lex_state = 883}, + [1078] = {.lex_state = 25, .external_lex_state = 2}, + [1079] = {.lex_state = 883}, + [1080] = {.lex_state = 24, .external_lex_state = 3}, + [1081] = {.lex_state = 882, .external_lex_state = 4}, + [1082] = {.lex_state = 883}, + [1083] = {.lex_state = 883}, + [1084] = {.lex_state = 883}, + [1085] = {.lex_state = 883}, + [1086] = {.lex_state = 97}, + [1087] = {.lex_state = 97}, + [1088] = {.lex_state = 25, .external_lex_state = 2}, + [1089] = {.lex_state = 97}, + [1090] = {.lex_state = 97}, + [1091] = {.lex_state = 97}, + [1092] = {.lex_state = 97}, + [1093] = {.lex_state = 97}, + [1094] = {.lex_state = 97}, + [1095] = {.lex_state = 97}, + [1096] = {.lex_state = 883}, + [1097] = {.lex_state = 97}, + [1098] = {.lex_state = 97}, + [1099] = {.lex_state = 97}, + [1100] = {.lex_state = 97}, + [1101] = {.lex_state = 97}, + [1102] = {.lex_state = 97}, + [1103] = {.lex_state = 97}, + [1104] = {.lex_state = 97}, + [1105] = {.lex_state = 97}, + [1106] = {.lex_state = 97}, + [1107] = {.lex_state = 97}, + [1108] = {.lex_state = 97}, + [1109] = {.lex_state = 97}, + [1110] = {.lex_state = 97}, + [1111] = {.lex_state = 97}, + [1112] = {.lex_state = 97}, + [1113] = {.lex_state = 97}, + [1114] = {.lex_state = 97}, + [1115] = {.lex_state = 97}, + [1116] = {.lex_state = 97}, + [1117] = {.lex_state = 97}, + [1118] = {.lex_state = 97}, + [1119] = {.lex_state = 97}, + [1120] = {.lex_state = 97}, + [1121] = {.lex_state = 97}, + [1122] = {.lex_state = 25, .external_lex_state = 2}, + [1123] = {.lex_state = 97}, + [1124] = {.lex_state = 97}, + [1125] = {.lex_state = 25, .external_lex_state = 3}, + [1126] = {.lex_state = 883}, + [1127] = {.lex_state = 46, .external_lex_state = 4}, + [1128] = {.lex_state = 97}, + [1129] = {.lex_state = 97}, + [1130] = {.lex_state = 109}, + [1131] = {.lex_state = 97}, + [1132] = {.lex_state = 883}, + [1133] = {.lex_state = 98}, + [1134] = {.lex_state = 884}, + [1135] = {.lex_state = 41, .external_lex_state = 4}, + [1136] = {.lex_state = 98}, + [1137] = {.lex_state = 98}, + [1138] = {.lex_state = 884}, + [1139] = {.lex_state = 884}, + [1140] = {.lex_state = 98}, + [1141] = {.lex_state = 24, .external_lex_state = 2}, + [1142] = {.lex_state = 884}, + [1143] = {.lex_state = 98}, + [1144] = {.lex_state = 98}, + [1145] = {.lex_state = 98}, + [1146] = {.lex_state = 41, .external_lex_state = 4}, + [1147] = {.lex_state = 98}, + [1148] = {.lex_state = 98}, + [1149] = {.lex_state = 884}, + [1150] = {.lex_state = 884}, + [1151] = {.lex_state = 884}, + [1152] = {.lex_state = 98}, + [1153] = {.lex_state = 882, .external_lex_state = 4}, + [1154] = {.lex_state = 98}, + [1155] = {.lex_state = 884}, + [1156] = {.lex_state = 884}, + [1157] = {.lex_state = 98}, + [1158] = {.lex_state = 882, .external_lex_state = 1}, + [1159] = {.lex_state = 884}, + [1160] = {.lex_state = 98}, + [1161] = {.lex_state = 39, .external_lex_state = 5}, + [1162] = {.lex_state = 98}, + [1163] = {.lex_state = 98}, + [1164] = {.lex_state = 882, .external_lex_state = 4}, + [1165] = {.lex_state = 882, .external_lex_state = 4}, + [1166] = {.lex_state = 98}, + [1167] = {.lex_state = 98}, + [1168] = {.lex_state = 884}, + [1169] = {.lex_state = 884}, + [1170] = {.lex_state = 98}, + [1171] = {.lex_state = 98}, + [1172] = {.lex_state = 41, .external_lex_state = 4}, + [1173] = {.lex_state = 882, .external_lex_state = 1}, + [1174] = {.lex_state = 884}, + [1175] = {.lex_state = 884}, + [1176] = {.lex_state = 884}, + [1177] = {.lex_state = 98}, + [1178] = {.lex_state = 41, .external_lex_state = 4}, + [1179] = {.lex_state = 884}, + [1180] = {.lex_state = 41, .external_lex_state = 4}, + [1181] = {.lex_state = 882, .external_lex_state = 4}, + [1182] = {.lex_state = 884}, + [1183] = {.lex_state = 884}, + [1184] = {.lex_state = 884}, + [1185] = {.lex_state = 884}, + [1186] = {.lex_state = 882, .external_lex_state = 4}, + [1187] = {.lex_state = 98}, + [1188] = {.lex_state = 882, .external_lex_state = 1}, + [1189] = {.lex_state = 884}, + [1190] = {.lex_state = 98}, + [1191] = {.lex_state = 109}, + [1192] = {.lex_state = 884}, + [1193] = {.lex_state = 884}, + [1194] = {.lex_state = 98}, + [1195] = {.lex_state = 884}, + [1196] = {.lex_state = 882, .external_lex_state = 4}, + [1197] = {.lex_state = 98}, + [1198] = {.lex_state = 882, .external_lex_state = 4}, + [1199] = {.lex_state = 98}, + [1200] = {.lex_state = 98}, + [1201] = {.lex_state = 884}, + [1202] = {.lex_state = 884}, + [1203] = {.lex_state = 39, .external_lex_state = 5}, + [1204] = {.lex_state = 884}, + [1205] = {.lex_state = 884}, + [1206] = {.lex_state = 884}, + [1207] = {.lex_state = 884}, + [1208] = {.lex_state = 884}, + [1209] = {.lex_state = 884}, + [1210] = {.lex_state = 884}, + [1211] = {.lex_state = 884}, + [1212] = {.lex_state = 41, .external_lex_state = 4}, + [1213] = {.lex_state = 41, .external_lex_state = 4}, + [1214] = {.lex_state = 884}, + [1215] = {.lex_state = 24, .external_lex_state = 2}, + [1216] = {.lex_state = 884}, + [1217] = {.lex_state = 882, .external_lex_state = 4}, + [1218] = {.lex_state = 98}, + [1219] = {.lex_state = 96}, + [1220] = {.lex_state = 884}, + [1221] = {.lex_state = 882, .external_lex_state = 4}, + [1222] = {.lex_state = 884}, + [1223] = {.lex_state = 884}, + [1224] = {.lex_state = 98}, + [1225] = {.lex_state = 98}, + [1226] = {.lex_state = 98}, + [1227] = {.lex_state = 884}, + [1228] = {.lex_state = 882, .external_lex_state = 4}, + [1229] = {.lex_state = 98}, + [1230] = {.lex_state = 41, .external_lex_state = 4}, + [1231] = {.lex_state = 884}, + [1232] = {.lex_state = 884}, + [1233] = {.lex_state = 884}, + [1234] = {.lex_state = 884}, + [1235] = {.lex_state = 882, .external_lex_state = 4}, + [1236] = {.lex_state = 884}, + [1237] = {.lex_state = 884}, + [1238] = {.lex_state = 882, .external_lex_state = 4}, + [1239] = {.lex_state = 98}, + [1240] = {.lex_state = 98}, + [1241] = {.lex_state = 98}, + [1242] = {.lex_state = 98}, + [1243] = {.lex_state = 882, .external_lex_state = 4}, + [1244] = {.lex_state = 98}, + [1245] = {.lex_state = 884}, + [1246] = {.lex_state = 98}, + [1247] = {.lex_state = 41, .external_lex_state = 4}, + [1248] = {.lex_state = 41, .external_lex_state = 4}, + [1249] = {.lex_state = 41, .external_lex_state = 4}, + [1250] = {.lex_state = 98}, + [1251] = {.lex_state = 98}, + [1252] = {.lex_state = 884}, + [1253] = {.lex_state = 41, .external_lex_state = 4}, + [1254] = {.lex_state = 884}, + [1255] = {.lex_state = 882, .external_lex_state = 4}, + [1256] = {.lex_state = 882, .external_lex_state = 1}, + [1257] = {.lex_state = 882, .external_lex_state = 4}, + [1258] = {.lex_state = 884}, + [1259] = {.lex_state = 884}, + [1260] = {.lex_state = 882, .external_lex_state = 1}, + [1261] = {.lex_state = 884}, + [1262] = {.lex_state = 98}, + [1263] = {.lex_state = 884}, + [1264] = {.lex_state = 884}, + [1265] = {.lex_state = 884}, + [1266] = {.lex_state = 882, .external_lex_state = 4}, + [1267] = {.lex_state = 882, .external_lex_state = 4}, + [1268] = {.lex_state = 98}, + [1269] = {.lex_state = 98}, + [1270] = {.lex_state = 882, .external_lex_state = 4}, + [1271] = {.lex_state = 882, .external_lex_state = 4}, + [1272] = {.lex_state = 884}, + [1273] = {.lex_state = 882, .external_lex_state = 4}, + [1274] = {.lex_state = 884}, + [1275] = {.lex_state = 884}, + [1276] = {.lex_state = 884}, + [1277] = {.lex_state = 884}, + [1278] = {.lex_state = 884}, + [1279] = {.lex_state = 884}, + [1280] = {.lex_state = 41, .external_lex_state = 4}, + [1281] = {.lex_state = 884}, + [1282] = {.lex_state = 882, .external_lex_state = 4}, + [1283] = {.lex_state = 41, .external_lex_state = 4}, + [1284] = {.lex_state = 884}, + [1285] = {.lex_state = 41, .external_lex_state = 4}, + [1286] = {.lex_state = 884}, + [1287] = {.lex_state = 884}, + [1288] = {.lex_state = 41, .external_lex_state = 4}, + [1289] = {.lex_state = 884}, + [1290] = {.lex_state = 884}, + [1291] = {.lex_state = 884}, + [1292] = {.lex_state = 98}, + [1293] = {.lex_state = 884}, + [1294] = {.lex_state = 884}, + [1295] = {.lex_state = 884}, + [1296] = {.lex_state = 98}, + [1297] = {.lex_state = 884}, + [1298] = {.lex_state = 98}, + [1299] = {.lex_state = 98}, + [1300] = {.lex_state = 98}, + [1301] = {.lex_state = 884}, + [1302] = {.lex_state = 884}, + [1303] = {.lex_state = 884}, + [1304] = {.lex_state = 884}, + [1305] = {.lex_state = 98}, + [1306] = {.lex_state = 882, .external_lex_state = 4}, + [1307] = {.lex_state = 884}, + [1308] = {.lex_state = 884}, + [1309] = {.lex_state = 39, .external_lex_state = 5}, + [1310] = {.lex_state = 882, .external_lex_state = 4}, + [1311] = {.lex_state = 884}, + [1312] = {.lex_state = 884}, + [1313] = {.lex_state = 41, .external_lex_state = 4}, + [1314] = {.lex_state = 41, .external_lex_state = 4}, + [1315] = {.lex_state = 98}, + [1316] = {.lex_state = 884}, + [1317] = {.lex_state = 98}, + [1318] = {.lex_state = 884}, + [1319] = {.lex_state = 25, .external_lex_state = 2}, + [1320] = {.lex_state = 884}, + [1321] = {.lex_state = 884}, + [1322] = {.lex_state = 884}, + [1323] = {.lex_state = 98}, + [1324] = {.lex_state = 98}, + [1325] = {.lex_state = 884}, + [1326] = {.lex_state = 884}, + [1327] = {.lex_state = 98}, + [1328] = {.lex_state = 98}, + [1329] = {.lex_state = 98}, + [1330] = {.lex_state = 98}, + [1331] = {.lex_state = 25, .external_lex_state = 4}, + [1332] = {.lex_state = 884}, + [1333] = {.lex_state = 884}, + [1334] = {.lex_state = 24, .external_lex_state = 3}, + [1335] = {.lex_state = 41, .external_lex_state = 4}, + [1336] = {.lex_state = 884}, + [1337] = {.lex_state = 98}, + [1338] = {.lex_state = 41, .external_lex_state = 4}, + [1339] = {.lex_state = 39, .external_lex_state = 5}, + [1340] = {.lex_state = 98}, + [1341] = {.lex_state = 884}, + [1342] = {.lex_state = 882, .external_lex_state = 4}, + [1343] = {.lex_state = 884}, + [1344] = {.lex_state = 98}, + [1345] = {.lex_state = 98}, + [1346] = {.lex_state = 884}, + [1347] = {.lex_state = 884}, + [1348] = {.lex_state = 884}, + [1349] = {.lex_state = 882, .external_lex_state = 4}, + [1350] = {.lex_state = 884}, + [1351] = {.lex_state = 884}, + [1352] = {.lex_state = 884}, + [1353] = {.lex_state = 882, .external_lex_state = 4}, + [1354] = {.lex_state = 98}, + [1355] = {.lex_state = 884}, + [1356] = {.lex_state = 41, .external_lex_state = 4}, + [1357] = {.lex_state = 98}, + [1358] = {.lex_state = 884}, + [1359] = {.lex_state = 882, .external_lex_state = 4}, + [1360] = {.lex_state = 882, .external_lex_state = 4}, + [1361] = {.lex_state = 98}, + [1362] = {.lex_state = 884}, + [1363] = {.lex_state = 884}, + [1364] = {.lex_state = 25, .external_lex_state = 4}, + [1365] = {.lex_state = 884}, + [1366] = {.lex_state = 884}, + [1367] = {.lex_state = 884}, + [1368] = {.lex_state = 98}, + [1369] = {.lex_state = 39, .external_lex_state = 5}, + [1370] = {.lex_state = 884}, + [1371] = {.lex_state = 98}, + [1372] = {.lex_state = 98}, + [1373] = {.lex_state = 98}, + [1374] = {.lex_state = 884}, + [1375] = {.lex_state = 884}, + [1376] = {.lex_state = 882, .external_lex_state = 4}, + [1377] = {.lex_state = 884}, + [1378] = {.lex_state = 884}, + [1379] = {.lex_state = 39, .external_lex_state = 5}, + [1380] = {.lex_state = 98}, + [1381] = {.lex_state = 98}, + [1382] = {.lex_state = 41, .external_lex_state = 4}, + [1383] = {.lex_state = 98}, + [1384] = {.lex_state = 884}, + [1385] = {.lex_state = 98}, + [1386] = {.lex_state = 41, .external_lex_state = 4}, + [1387] = {.lex_state = 98}, + [1388] = {.lex_state = 98}, + [1389] = {.lex_state = 884}, + [1390] = {.lex_state = 41, .external_lex_state = 4}, + [1391] = {.lex_state = 41, .external_lex_state = 4}, + [1392] = {.lex_state = 41, .external_lex_state = 4}, + [1393] = {.lex_state = 98}, + [1394] = {.lex_state = 98}, + [1395] = {.lex_state = 39, .external_lex_state = 5}, + [1396] = {.lex_state = 884}, + [1397] = {.lex_state = 884}, + [1398] = {.lex_state = 882, .external_lex_state = 4}, + [1399] = {.lex_state = 882, .external_lex_state = 4}, + [1400] = {.lex_state = 39, .external_lex_state = 5}, + [1401] = {.lex_state = 98}, + [1402] = {.lex_state = 98}, + [1403] = {.lex_state = 98}, + [1404] = {.lex_state = 884}, + [1405] = {.lex_state = 882, .external_lex_state = 4}, + [1406] = {.lex_state = 98}, + [1407] = {.lex_state = 98}, + [1408] = {.lex_state = 41, .external_lex_state = 4}, + [1409] = {.lex_state = 98}, + [1410] = {.lex_state = 884}, + [1411] = {.lex_state = 39, .external_lex_state = 5}, + [1412] = {.lex_state = 41, .external_lex_state = 4}, + [1413] = {.lex_state = 98}, + [1414] = {.lex_state = 884}, + [1415] = {.lex_state = 882, .external_lex_state = 4}, + [1416] = {.lex_state = 98}, + [1417] = {.lex_state = 98}, + [1418] = {.lex_state = 884}, + [1419] = {.lex_state = 884}, + [1420] = {.lex_state = 884}, + [1421] = {.lex_state = 98}, + [1422] = {.lex_state = 39, .external_lex_state = 5}, + [1423] = {.lex_state = 98}, + [1424] = {.lex_state = 41, .external_lex_state = 4}, + [1425] = {.lex_state = 41, .external_lex_state = 4}, + [1426] = {.lex_state = 98}, + [1427] = {.lex_state = 882, .external_lex_state = 4}, + [1428] = {.lex_state = 98}, + [1429] = {.lex_state = 884}, + [1430] = {.lex_state = 98}, + [1431] = {.lex_state = 884}, + [1432] = {.lex_state = 884}, + [1433] = {.lex_state = 98}, + [1434] = {.lex_state = 98}, + [1435] = {.lex_state = 98}, + [1436] = {.lex_state = 98}, + [1437] = {.lex_state = 25, .external_lex_state = 2}, + [1438] = {.lex_state = 98}, + [1439] = {.lex_state = 24, .external_lex_state = 4}, + [1440] = {.lex_state = 98}, + [1441] = {.lex_state = 24, .external_lex_state = 4}, + [1442] = {.lex_state = 98}, + [1443] = {.lex_state = 98}, + [1444] = {.lex_state = 882, .external_lex_state = 4}, + [1445] = {.lex_state = 98}, + [1446] = {.lex_state = 884}, + [1447] = {.lex_state = 884}, + [1448] = {.lex_state = 98}, + [1449] = {.lex_state = 98}, + [1450] = {.lex_state = 98}, + [1451] = {.lex_state = 98}, + [1452] = {.lex_state = 98}, + [1453] = {.lex_state = 98}, + [1454] = {.lex_state = 884}, + [1455] = {.lex_state = 884}, + [1456] = {.lex_state = 98}, + [1457] = {.lex_state = 98}, + [1458] = {.lex_state = 884}, + [1459] = {.lex_state = 98}, + [1460] = {.lex_state = 98}, + [1461] = {.lex_state = 884}, + [1462] = {.lex_state = 884}, + [1463] = {.lex_state = 98}, + [1464] = {.lex_state = 98}, + [1465] = {.lex_state = 98}, + [1466] = {.lex_state = 884}, + [1467] = {.lex_state = 98}, + [1468] = {.lex_state = 26, .external_lex_state = 4}, + [1469] = {.lex_state = 884}, + [1470] = {.lex_state = 98}, + [1471] = {.lex_state = 98}, + [1472] = {.lex_state = 98}, + [1473] = {.lex_state = 98}, + [1474] = {.lex_state = 98}, + [1475] = {.lex_state = 884}, + [1476] = {.lex_state = 98}, + [1477] = {.lex_state = 884}, + [1478] = {.lex_state = 98}, + [1479] = {.lex_state = 98}, + [1480] = {.lex_state = 98}, + [1481] = {.lex_state = 98}, + [1482] = {.lex_state = 98}, + [1483] = {.lex_state = 98}, + [1484] = {.lex_state = 98}, + [1485] = {.lex_state = 98}, + [1486] = {.lex_state = 884}, + [1487] = {.lex_state = 98}, + [1488] = {.lex_state = 884}, + [1489] = {.lex_state = 26, .external_lex_state = 4}, + [1490] = {.lex_state = 884}, + [1491] = {.lex_state = 882, .external_lex_state = 4}, + [1492] = {.lex_state = 24, .external_lex_state = 2}, + [1493] = {.lex_state = 884}, + [1494] = {.lex_state = 884}, + [1495] = {.lex_state = 98}, + [1496] = {.lex_state = 98}, + [1497] = {.lex_state = 882, .external_lex_state = 4}, + [1498] = {.lex_state = 884}, + [1499] = {.lex_state = 98}, + [1500] = {.lex_state = 884}, + [1501] = {.lex_state = 884}, + [1502] = {.lex_state = 98}, + [1503] = {.lex_state = 98}, + [1504] = {.lex_state = 884}, + [1505] = {.lex_state = 98}, + [1506] = {.lex_state = 98}, + [1507] = {.lex_state = 98}, + [1508] = {.lex_state = 884}, + [1509] = {.lex_state = 884}, + [1510] = {.lex_state = 98}, + [1511] = {.lex_state = 98}, + [1512] = {.lex_state = 98}, + [1513] = {.lex_state = 98}, + [1514] = {.lex_state = 98}, + [1515] = {.lex_state = 98}, + [1516] = {.lex_state = 98}, + [1517] = {.lex_state = 98}, + [1518] = {.lex_state = 98}, + [1519] = {.lex_state = 98}, + [1520] = {.lex_state = 884}, + [1521] = {.lex_state = 98}, + [1522] = {.lex_state = 98}, + [1523] = {.lex_state = 98}, + [1524] = {.lex_state = 884}, + [1525] = {.lex_state = 98}, + [1526] = {.lex_state = 884}, + [1527] = {.lex_state = 882, .external_lex_state = 4}, + [1528] = {.lex_state = 98}, + [1529] = {.lex_state = 884}, + [1530] = {.lex_state = 98}, + [1531] = {.lex_state = 98}, + [1532] = {.lex_state = 98}, + [1533] = {.lex_state = 884}, + [1534] = {.lex_state = 98}, + [1535] = {.lex_state = 24, .external_lex_state = 2}, + [1536] = {.lex_state = 884}, + [1537] = {.lex_state = 98}, + [1538] = {.lex_state = 884}, + [1539] = {.lex_state = 884}, + [1540] = {.lex_state = 884}, + [1541] = {.lex_state = 884}, + [1542] = {.lex_state = 884}, + [1543] = {.lex_state = 98}, + [1544] = {.lex_state = 884}, + [1545] = {.lex_state = 98}, + [1546] = {.lex_state = 98}, + [1547] = {.lex_state = 25, .external_lex_state = 4}, + [1548] = {.lex_state = 24, .external_lex_state = 4}, [1549] = {.lex_state = 25, .external_lex_state = 4}, [1550] = {.lex_state = 25, .external_lex_state = 4}, [1551] = {.lex_state = 25, .external_lex_state = 4}, [1552] = {.lex_state = 25, .external_lex_state = 4}, [1553] = {.lex_state = 25, .external_lex_state = 4}, - [1554] = {.lex_state = 25, .external_lex_state = 4}, - [1555] = {.lex_state = 37, .external_lex_state = 5}, - [1556] = {.lex_state = 25, .external_lex_state = 4}, + [1554] = {.lex_state = 24, .external_lex_state = 4}, + [1555] = {.lex_state = 25, .external_lex_state = 4}, + [1556] = {.lex_state = 39, .external_lex_state = 5}, [1557] = {.lex_state = 25, .external_lex_state = 4}, - [1558] = {.lex_state = 25, .external_lex_state = 4}, + [1558] = {.lex_state = 24, .external_lex_state = 2}, [1559] = {.lex_state = 25, .external_lex_state = 4}, - [1560] = {.lex_state = 25, .external_lex_state = 4}, + [1560] = {.lex_state = 39, .external_lex_state = 5}, [1561] = {.lex_state = 25, .external_lex_state = 4}, [1562] = {.lex_state = 25, .external_lex_state = 4}, [1563] = {.lex_state = 25, .external_lex_state = 4}, - [1564] = {.lex_state = 24, .external_lex_state = 2}, + [1564] = {.lex_state = 25, .external_lex_state = 4}, [1565] = {.lex_state = 25, .external_lex_state = 4}, - [1566] = {.lex_state = 25, .external_lex_state = 4}, + [1566] = {.lex_state = 24, .external_lex_state = 2}, [1567] = {.lex_state = 25, .external_lex_state = 4}, - [1568] = {.lex_state = 24, .external_lex_state = 4}, + [1568] = {.lex_state = 25, .external_lex_state = 4}, [1569] = {.lex_state = 25, .external_lex_state = 4}, - [1570] = {.lex_state = 37, .external_lex_state = 5}, - [1571] = {.lex_state = 24, .external_lex_state = 4}, - [1572] = {.lex_state = 37}, - [1573] = {.lex_state = 90}, - [1574] = {.lex_state = 24, .external_lex_state = 4}, - [1575] = {.lex_state = 24, .external_lex_state = 4}, - [1576] = {.lex_state = 24, .external_lex_state = 4}, - [1577] = {.lex_state = 24, .external_lex_state = 4}, - [1578] = {.lex_state = 24, .external_lex_state = 4}, - [1579] = {.lex_state = 37}, - [1580] = {.lex_state = 24, .external_lex_state = 4}, - [1581] = {.lex_state = 24, .external_lex_state = 4}, - [1582] = {.lex_state = 24, .external_lex_state = 4}, - [1583] = {.lex_state = 37}, - [1584] = {.lex_state = 103}, + [1570] = {.lex_state = 48, .external_lex_state = 4}, + [1571] = {.lex_state = 25, .external_lex_state = 4}, + [1572] = {.lex_state = 25, .external_lex_state = 4}, + [1573] = {.lex_state = 25, .external_lex_state = 4}, + [1574] = {.lex_state = 25, .external_lex_state = 4}, + [1575] = {.lex_state = 25, .external_lex_state = 4}, + [1576] = {.lex_state = 25, .external_lex_state = 4}, + [1577] = {.lex_state = 25, .external_lex_state = 4}, + [1578] = {.lex_state = 25, .external_lex_state = 4}, + [1579] = {.lex_state = 25, .external_lex_state = 4}, + [1580] = {.lex_state = 25, .external_lex_state = 4}, + [1581] = {.lex_state = 25, .external_lex_state = 4}, + [1582] = {.lex_state = 48, .external_lex_state = 4}, + [1583] = {.lex_state = 25, .external_lex_state = 4}, + [1584] = {.lex_state = 25, .external_lex_state = 4}, [1585] = {.lex_state = 24, .external_lex_state = 4}, - [1586] = {.lex_state = 24, .external_lex_state = 4}, + [1586] = {.lex_state = 96}, [1587] = {.lex_state = 24, .external_lex_state = 4}, [1588] = {.lex_state = 24, .external_lex_state = 4}, - [1589] = {.lex_state = 24, .external_lex_state = 4}, - [1590] = {.lex_state = 37}, - [1591] = {.lex_state = 37}, - [1592] = {.lex_state = 24, .external_lex_state = 4}, - [1593] = {.lex_state = 103}, - [1594] = {.lex_state = 90}, - [1595] = {.lex_state = 103}, + [1589] = {.lex_state = 96}, + [1590] = {.lex_state = 24, .external_lex_state = 4}, + [1591] = {.lex_state = 39}, + [1592] = {.lex_state = 109}, + [1593] = {.lex_state = 24, .external_lex_state = 4}, + [1594] = {.lex_state = 24, .external_lex_state = 4}, + [1595] = {.lex_state = 24, .external_lex_state = 4}, [1596] = {.lex_state = 24, .external_lex_state = 4}, - [1597] = {.lex_state = 37}, - [1598] = {.lex_state = 37}, + [1597] = {.lex_state = 39}, + [1598] = {.lex_state = 39}, [1599] = {.lex_state = 24, .external_lex_state = 4}, [1600] = {.lex_state = 24, .external_lex_state = 4}, - [1601] = {.lex_state = 24, .external_lex_state = 4}, + [1601] = {.lex_state = 109}, [1602] = {.lex_state = 24, .external_lex_state = 4}, - [1603] = {.lex_state = 37}, + [1603] = {.lex_state = 24, .external_lex_state = 4}, [1604] = {.lex_state = 24, .external_lex_state = 4}, - [1605] = {.lex_state = 90}, - [1606] = {.lex_state = 24, .external_lex_state = 4}, + [1605] = {.lex_state = 24, .external_lex_state = 4}, + [1606] = {.lex_state = 39}, [1607] = {.lex_state = 24, .external_lex_state = 4}, - [1608] = {.lex_state = 37}, + [1608] = {.lex_state = 24, .external_lex_state = 4}, [1609] = {.lex_state = 24, .external_lex_state = 4}, - [1610] = {.lex_state = 24, .external_lex_state = 4}, + [1610] = {.lex_state = 96}, [1611] = {.lex_state = 24, .external_lex_state = 4}, - [1612] = {.lex_state = 24, .external_lex_state = 4}, - [1613] = {.lex_state = 24, .external_lex_state = 4}, + [1612] = {.lex_state = 39}, + [1613] = {.lex_state = 39}, [1614] = {.lex_state = 24, .external_lex_state = 4}, - [1615] = {.lex_state = 24, .external_lex_state = 4}, - [1616] = {.lex_state = 37}, + [1615] = {.lex_state = 39}, + [1616] = {.lex_state = 24, .external_lex_state = 4}, [1617] = {.lex_state = 24, .external_lex_state = 4}, - [1618] = {.lex_state = 24, .external_lex_state = 4}, - [1619] = {.lex_state = 37}, - [1620] = {.lex_state = 37}, - [1621] = {.lex_state = 37}, - [1622] = {.lex_state = 32}, - [1623] = {.lex_state = 94}, - [1624] = {.lex_state = 94}, - [1625] = {.lex_state = 37, .external_lex_state = 5}, - [1626] = {.lex_state = 37}, - [1627] = {.lex_state = 37}, - [1628] = {.lex_state = 94}, - [1629] = {.lex_state = 94}, - [1630] = {.lex_state = 37}, - [1631] = {.lex_state = 94}, - [1632] = {.lex_state = 37}, - [1633] = {.lex_state = 37, .external_lex_state = 5}, - [1634] = {.lex_state = 37}, - [1635] = {.lex_state = 37}, - [1636] = {.lex_state = 94}, - [1637] = {.lex_state = 37, .external_lex_state = 5}, - [1638] = {.lex_state = 94}, - [1639] = {.lex_state = 94}, - [1640] = {.lex_state = 37}, - [1641] = {.lex_state = 94}, - [1642] = {.lex_state = 37}, - [1643] = {.lex_state = 94}, - [1644] = {.lex_state = 94}, - [1645] = {.lex_state = 94}, - [1646] = {.lex_state = 94}, - [1647] = {.lex_state = 94}, - [1648] = {.lex_state = 32}, - [1649] = {.lex_state = 37, .external_lex_state = 5}, - [1650] = {.lex_state = 32}, - [1651] = {.lex_state = 32}, - [1652] = {.lex_state = 94}, - [1653] = {.lex_state = 32}, - [1654] = {.lex_state = 94}, - [1655] = {.lex_state = 37}, - [1656] = {.lex_state = 94}, - [1657] = {.lex_state = 94}, - [1658] = {.lex_state = 94}, - [1659] = {.lex_state = 94}, - [1660] = {.lex_state = 37}, - [1661] = {.lex_state = 94}, - [1662] = {.lex_state = 94}, - [1663] = {.lex_state = 37}, - [1664] = {.lex_state = 37}, - [1665] = {.lex_state = 37}, - [1666] = {.lex_state = 37}, - [1667] = {.lex_state = 37}, - [1668] = {.lex_state = 37}, - [1669] = {.lex_state = 37}, - [1670] = {.lex_state = 37}, - [1671] = {.lex_state = 37}, - [1672] = {.lex_state = 37}, - [1673] = {.lex_state = 37}, - [1674] = {.lex_state = 37}, - [1675] = {.lex_state = 37}, - [1676] = {.lex_state = 37}, - [1677] = {.lex_state = 37}, - [1678] = {.lex_state = 37}, - [1679] = {.lex_state = 37}, - [1680] = {.lex_state = 37}, - [1681] = {.lex_state = 37}, - [1682] = {.lex_state = 37}, - [1683] = {.lex_state = 37}, - [1684] = {.lex_state = 876}, - [1685] = {.lex_state = 103}, - [1686] = {.lex_state = 37}, - [1687] = {.lex_state = 876}, - [1688] = {.lex_state = 37}, - [1689] = {.lex_state = 876}, - [1690] = {.lex_state = 876}, - [1691] = {.lex_state = 37}, - [1692] = {.lex_state = 37}, - [1693] = {.lex_state = 103}, - [1694] = {.lex_state = 37}, - [1695] = {.lex_state = 876}, - [1696] = {.lex_state = 37}, - [1697] = {.lex_state = 37}, - [1698] = {.lex_state = 37}, - [1699] = {.lex_state = 103}, - [1700] = {.lex_state = 876}, - [1701] = {.lex_state = 37}, - [1702] = {.lex_state = 37}, - [1703] = {.lex_state = 103}, - [1704] = {.lex_state = 37}, - [1705] = {.lex_state = 876}, - [1706] = {.lex_state = 37}, - [1707] = {.lex_state = 37}, - [1708] = {.lex_state = 37}, - [1709] = {.lex_state = 103}, - [1710] = {.lex_state = 876}, - [1711] = {.lex_state = 37}, - [1712] = {.lex_state = 37}, - [1713] = {.lex_state = 37}, - [1714] = {.lex_state = 876}, - [1715] = {.lex_state = 37}, - [1716] = {.lex_state = 876}, - [1717] = {.lex_state = 876}, - [1718] = {.lex_state = 876}, - [1719] = {.lex_state = 37}, - [1720] = {.lex_state = 37}, - [1721] = {.lex_state = 37}, - [1722] = {.lex_state = 37}, - [1723] = {.lex_state = 37}, - [1724] = {.lex_state = 37}, - [1725] = {.lex_state = 37}, - [1726] = {.lex_state = 37}, - [1727] = {.lex_state = 37}, - [1728] = {.lex_state = 37}, - [1729] = {.lex_state = 37}, - [1730] = {.lex_state = 37}, - [1731] = {.lex_state = 37}, - [1732] = {.lex_state = 37}, - [1733] = {.lex_state = 37}, - [1734] = {.lex_state = 37}, - [1735] = {.lex_state = 37}, - [1736] = {.lex_state = 37}, - [1737] = {.lex_state = 37}, - [1738] = {.lex_state = 37}, - [1739] = {.lex_state = 37}, - [1740] = {.lex_state = 37}, - [1741] = {.lex_state = 37}, - [1742] = {.lex_state = 37}, - [1743] = {.lex_state = 37}, - [1744] = {.lex_state = 37}, - [1745] = {.lex_state = 37}, - [1746] = {.lex_state = 37}, - [1747] = {.lex_state = 37}, - [1748] = {.lex_state = 37}, - [1749] = {.lex_state = 37}, - [1750] = {.lex_state = 37}, - [1751] = {.lex_state = 37}, - [1752] = {.lex_state = 37}, - [1753] = {.lex_state = 37}, - [1754] = {.lex_state = 37}, - [1755] = {.lex_state = 37}, - [1756] = {.lex_state = 37}, - [1757] = {.lex_state = 37}, - [1758] = {.lex_state = 37}, - [1759] = {.lex_state = 103}, - [1760] = {.lex_state = 37}, - [1761] = {.lex_state = 37}, - [1762] = {.lex_state = 37}, - [1763] = {.lex_state = 37}, - [1764] = {.lex_state = 37}, - [1765] = {.lex_state = 37}, - [1766] = {.lex_state = 37}, - [1767] = {.lex_state = 37}, - [1768] = {.lex_state = 37}, - [1769] = {.lex_state = 37}, - [1770] = {.lex_state = 37}, - [1771] = {.lex_state = 37}, - [1772] = {.lex_state = 37}, - [1773] = {.lex_state = 37}, - [1774] = {.lex_state = 37}, - [1775] = {.lex_state = 37}, - [1776] = {.lex_state = 37}, - [1777] = {.lex_state = 37}, - [1778] = {.lex_state = 37}, - [1779] = {.lex_state = 37}, - [1780] = {.lex_state = 37}, - [1781] = {.lex_state = 37}, - [1782] = {.lex_state = 37}, - [1783] = {.lex_state = 37}, - [1784] = {.lex_state = 37}, - [1785] = {.lex_state = 37}, - [1786] = {.lex_state = 37}, - [1787] = {.lex_state = 37}, - [1788] = {.lex_state = 37}, - [1789] = {.lex_state = 37}, - [1790] = {.lex_state = 876}, - [1791] = {.lex_state = 876}, - [1792] = {.lex_state = 37}, - [1793] = {.lex_state = 876}, - [1794] = {.lex_state = 37, .external_lex_state = 5}, - [1795] = {.lex_state = 876}, - [1796] = {.lex_state = 876}, - [1797] = {.lex_state = 876}, - [1798] = {.lex_state = 37}, - [1799] = {.lex_state = 37}, - [1800] = {.lex_state = 37}, - [1801] = {.lex_state = 37}, - [1802] = {.lex_state = 37}, - [1803] = {.lex_state = 876}, - [1804] = {.lex_state = 37}, - [1805] = {.lex_state = 876}, - [1806] = {.lex_state = 87}, - [1807] = {.lex_state = 87}, - [1808] = {.lex_state = 876}, - [1809] = {.lex_state = 876}, - [1810] = {.lex_state = 87}, - [1811] = {.lex_state = 876}, - [1812] = {.lex_state = 87}, - [1813] = {.lex_state = 876}, - [1814] = {.lex_state = 876}, - [1815] = {.lex_state = 876}, - [1816] = {.lex_state = 876}, - [1817] = {.lex_state = 87}, - [1818] = {.lex_state = 87}, - [1819] = {.lex_state = 87}, - [1820] = {.lex_state = 87}, - [1821] = {.lex_state = 87}, - [1822] = {.lex_state = 876}, - [1823] = {.lex_state = 103}, - [1824] = {.lex_state = 87}, - [1825] = {.lex_state = 876}, - [1826] = {.lex_state = 103}, - [1827] = {.lex_state = 876, .external_lex_state = 5}, - [1828] = {.lex_state = 103}, - [1829] = {.lex_state = 103}, - [1830] = {.lex_state = 37}, - [1831] = {.lex_state = 876}, - [1832] = {.lex_state = 103}, - [1833] = {.lex_state = 876, .external_lex_state = 5}, - [1834] = {.lex_state = 876, .external_lex_state = 5}, - [1835] = {.lex_state = 103}, - [1836] = {.lex_state = 876, .external_lex_state = 5}, - [1837] = {.lex_state = 876}, - [1838] = {.lex_state = 37}, - [1839] = {.lex_state = 37}, - [1840] = {.lex_state = 40, .external_lex_state = 6}, - [1841] = {.lex_state = 37}, - [1842] = {.lex_state = 103}, - [1843] = {.lex_state = 876, .external_lex_state = 5}, - [1844] = {.lex_state = 876, .external_lex_state = 5}, - [1845] = {.lex_state = 876, .external_lex_state = 5}, - [1846] = {.lex_state = 876, .external_lex_state = 5}, - [1847] = {.lex_state = 876, .external_lex_state = 5}, - [1848] = {.lex_state = 876, .external_lex_state = 5}, - [1849] = {.lex_state = 876, .external_lex_state = 5}, - [1850] = {.lex_state = 876, .external_lex_state = 5}, - [1851] = {.lex_state = 876, .external_lex_state = 5}, - [1852] = {.lex_state = 876, .external_lex_state = 5}, - [1853] = {.lex_state = 876, .external_lex_state = 5}, - [1854] = {.lex_state = 103}, - [1855] = {.lex_state = 876}, - [1856] = {.lex_state = 876}, - [1857] = {.lex_state = 37}, - [1858] = {.lex_state = 876}, - [1859] = {.lex_state = 876}, - [1860] = {.lex_state = 876}, - [1861] = {.lex_state = 876}, - [1862] = {.lex_state = 876}, - [1863] = {.lex_state = 876}, - [1864] = {.lex_state = 876}, - [1865] = {.lex_state = 876}, - [1866] = {.lex_state = 876}, - [1867] = {.lex_state = 876}, - [1868] = {.lex_state = 876}, - [1869] = {.lex_state = 876}, - [1870] = {.lex_state = 876}, - [1871] = {.lex_state = 876}, - [1872] = {.lex_state = 876}, - [1873] = {.lex_state = 37}, - [1874] = {.lex_state = 876}, - [1875] = {.lex_state = 876}, - [1876] = {.lex_state = 876}, - [1877] = {.lex_state = 876}, - [1878] = {.lex_state = 876}, - [1879] = {.lex_state = 37}, - [1880] = {.lex_state = 876}, - [1881] = {.lex_state = 876}, - [1882] = {.lex_state = 876}, - [1883] = {.lex_state = 876}, - [1884] = {.lex_state = 876}, - [1885] = {.lex_state = 876}, - [1886] = {.lex_state = 876}, - [1887] = {.lex_state = 37}, - [1888] = {.lex_state = 37}, - [1889] = {.lex_state = 876}, - [1890] = {.lex_state = 876}, - [1891] = {.lex_state = 876}, - [1892] = {.lex_state = 37}, - [1893] = {.lex_state = 37}, - [1894] = {.lex_state = 37}, - [1895] = {.lex_state = 876}, - [1896] = {.lex_state = 103}, - [1897] = {.lex_state = 876}, - [1898] = {.lex_state = 37}, - [1899] = {.lex_state = 876}, - [1900] = {.lex_state = 876}, - [1901] = {.lex_state = 103}, - [1902] = {.lex_state = 876}, - [1903] = {.lex_state = 37}, - [1904] = {.lex_state = 37}, - [1905] = {.lex_state = 37}, - [1906] = {.lex_state = 876}, - [1907] = {.lex_state = 876}, - [1908] = {.lex_state = 876}, - [1909] = {.lex_state = 876}, - [1910] = {.lex_state = 37}, - [1911] = {.lex_state = 876}, - [1912] = {.lex_state = 876}, - [1913] = {.lex_state = 876}, - [1914] = {.lex_state = 103}, - [1915] = {.lex_state = 876}, - [1916] = {.lex_state = 876}, - [1917] = {.lex_state = 37}, - [1918] = {.lex_state = 876}, - [1919] = {.lex_state = 876}, - [1920] = {.lex_state = 37}, - [1921] = {.lex_state = 37}, - [1922] = {.lex_state = 41, .external_lex_state = 6}, - [1923] = {.lex_state = 37}, - [1924] = {.lex_state = 876}, - [1925] = {.lex_state = 876}, - [1926] = {.lex_state = 37}, - [1927] = {.lex_state = 876}, - [1928] = {.lex_state = 103}, - [1929] = {.lex_state = 876}, - [1930] = {.lex_state = 84}, - [1931] = {.lex_state = 84}, - [1932] = {.lex_state = 876, .external_lex_state = 5}, - [1933] = {.lex_state = 37}, - [1934] = {.lex_state = 876}, - [1935] = {.lex_state = 103}, - [1936] = {.lex_state = 103}, - [1937] = {.lex_state = 876}, - [1938] = {.lex_state = 876}, - [1939] = {.lex_state = 876}, - [1940] = {.lex_state = 876}, - [1941] = {.lex_state = 103}, - [1942] = {.lex_state = 876}, - [1943] = {.lex_state = 876}, - [1944] = {.lex_state = 876}, - [1945] = {.lex_state = 876}, - [1946] = {.lex_state = 876}, - [1947] = {.lex_state = 88}, - [1948] = {.lex_state = 876}, - [1949] = {.lex_state = 876}, - [1950] = {.lex_state = 88}, - [1951] = {.lex_state = 876}, - [1952] = {.lex_state = 876}, - [1953] = {.lex_state = 103}, - [1954] = {.lex_state = 876}, - [1955] = {.lex_state = 876}, - [1956] = {.lex_state = 876}, - [1957] = {.lex_state = 876}, - [1958] = {.lex_state = 103}, - [1959] = {.lex_state = 40, .external_lex_state = 5}, - [1960] = {.lex_state = 88}, - [1961] = {.lex_state = 876}, - [1962] = {.lex_state = 876}, - [1963] = {.lex_state = 876}, - [1964] = {.lex_state = 876}, - [1965] = {.lex_state = 876}, - [1966] = {.lex_state = 876}, - [1967] = {.lex_state = 40, .external_lex_state = 5}, - [1968] = {.lex_state = 876}, - [1969] = {.lex_state = 876}, - [1970] = {.lex_state = 876}, - [1971] = {.lex_state = 876}, - [1972] = {.lex_state = 876}, - [1973] = {.lex_state = 103}, - [1974] = {.lex_state = 876}, - [1975] = {.lex_state = 88}, - [1976] = {.lex_state = 88}, - [1977] = {.lex_state = 876}, - [1978] = {.lex_state = 876}, - [1979] = {.lex_state = 876}, - [1980] = {.lex_state = 876}, - [1981] = {.lex_state = 103}, - [1982] = {.lex_state = 876}, - [1983] = {.lex_state = 876}, - [1984] = {.lex_state = 88}, - [1985] = {.lex_state = 876}, - [1986] = {.lex_state = 876}, - [1987] = {.lex_state = 88}, - [1988] = {.lex_state = 876}, - [1989] = {.lex_state = 876}, - [1990] = {.lex_state = 876}, - [1991] = {.lex_state = 876}, - [1992] = {.lex_state = 37}, - [1993] = {.lex_state = 876}, - [1994] = {.lex_state = 876}, - [1995] = {.lex_state = 88}, - [1996] = {.lex_state = 876}, - [1997] = {.lex_state = 876}, - [1998] = {.lex_state = 876}, - [1999] = {.lex_state = 103}, - [2000] = {.lex_state = 88}, - [2001] = {.lex_state = 876}, - [2002] = {.lex_state = 876}, - [2003] = {.lex_state = 88}, - [2004] = {.lex_state = 876}, - [2005] = {.lex_state = 876}, - [2006] = {.lex_state = 103}, - [2007] = {.lex_state = 876}, - [2008] = {.lex_state = 876}, - [2009] = {.lex_state = 876}, - [2010] = {.lex_state = 37}, - [2011] = {.lex_state = 37}, - [2012] = {.lex_state = 40}, - [2013] = {.lex_state = 37}, - [2014] = {.lex_state = 876}, - [2015] = {.lex_state = 37}, - [2016] = {.lex_state = 876}, - [2017] = {.lex_state = 37}, - [2018] = {.lex_state = 876}, - [2019] = {.lex_state = 37}, - [2020] = {.lex_state = 876}, - [2021] = {.lex_state = 37}, - [2022] = {.lex_state = 37}, - [2023] = {.lex_state = 37}, - [2024] = {.lex_state = 37}, - [2025] = {.lex_state = 37}, - [2026] = {.lex_state = 37}, - [2027] = {.lex_state = 876}, - [2028] = {.lex_state = 876}, - [2029] = {.lex_state = 876}, - [2030] = {.lex_state = 876}, - [2031] = {.lex_state = 37}, - [2032] = {.lex_state = 37}, - [2033] = {.lex_state = 876}, - [2034] = {.lex_state = 37}, - [2035] = {.lex_state = 37}, - [2036] = {.lex_state = 876}, - [2037] = {.lex_state = 37}, - [2038] = {.lex_state = 37}, - [2039] = {.lex_state = 37}, - [2040] = {.lex_state = 37}, - [2041] = {.lex_state = 876}, - [2042] = {.lex_state = 876}, - [2043] = {.lex_state = 37}, - [2044] = {.lex_state = 37}, - [2045] = {.lex_state = 37}, - [2046] = {.lex_state = 876}, - [2047] = {.lex_state = 876}, - [2048] = {.lex_state = 37}, - [2049] = {.lex_state = 37}, - [2050] = {.lex_state = 876}, - [2051] = {.lex_state = 876}, - [2052] = {.lex_state = 37}, - [2053] = {.lex_state = 876}, - [2054] = {.lex_state = 37}, - [2055] = {.lex_state = 37}, - [2056] = {.lex_state = 876}, - [2057] = {.lex_state = 37}, - [2058] = {.lex_state = 37}, - [2059] = {.lex_state = 876}, - [2060] = {.lex_state = 37}, - [2061] = {.lex_state = 37}, - [2062] = {.lex_state = 876}, - [2063] = {.lex_state = 37}, - [2064] = {.lex_state = 40}, - [2065] = {.lex_state = 876}, - [2066] = {.lex_state = 37}, - [2067] = {.lex_state = 37}, - [2068] = {.lex_state = 37}, - [2069] = {.lex_state = 37}, - [2070] = {.lex_state = 40}, - [2071] = {.lex_state = 876}, - [2072] = {.lex_state = 876}, - [2073] = {.lex_state = 37}, - [2074] = {.lex_state = 876}, - [2075] = {.lex_state = 876}, - [2076] = {.lex_state = 37}, - [2077] = {.lex_state = 876}, - [2078] = {.lex_state = 37}, - [2079] = {.lex_state = 876}, - [2080] = {.lex_state = 876}, - [2081] = {.lex_state = 37}, - [2082] = {.lex_state = 876}, - [2083] = {.lex_state = 37}, - [2084] = {.lex_state = 876}, - [2085] = {.lex_state = 40, .external_lex_state = 5}, - [2086] = {.lex_state = 37}, - [2087] = {.lex_state = 37}, - [2088] = {.lex_state = 876}, - [2089] = {.lex_state = 37}, - [2090] = {.lex_state = 37}, - [2091] = {.lex_state = 37}, - [2092] = {.lex_state = 40}, - [2093] = {.lex_state = 876}, - [2094] = {.lex_state = 37}, - [2095] = {.lex_state = 876}, - [2096] = {.lex_state = 37}, - [2097] = {.lex_state = 37}, - [2098] = {.lex_state = 37}, - [2099] = {.lex_state = 37}, - [2100] = {.lex_state = 876}, - [2101] = {.lex_state = 37}, - [2102] = {.lex_state = 37}, - [2103] = {.lex_state = 37}, - [2104] = {.lex_state = 37}, - [2105] = {.lex_state = 37}, - [2106] = {.lex_state = 876}, - [2107] = {.lex_state = 37}, - [2108] = {.lex_state = 876, .external_lex_state = 5}, - [2109] = {.lex_state = 37}, - [2110] = {.lex_state = 876, .external_lex_state = 5}, - [2111] = {.lex_state = 876}, - [2112] = {.lex_state = 876}, - [2113] = {.lex_state = 876}, - [2114] = {.lex_state = 876}, - [2115] = {.lex_state = 37}, - [2116] = {.lex_state = 37}, - [2117] = {.lex_state = 37}, - [2118] = {.lex_state = 37}, - [2119] = {.lex_state = 37}, - [2120] = {.lex_state = 876}, - [2121] = {.lex_state = 876}, - [2122] = {.lex_state = 51}, - [2123] = {.lex_state = 37}, - [2124] = {.lex_state = 37}, - [2125] = {.lex_state = 37}, - [2126] = {.lex_state = 37}, - [2127] = {.lex_state = 51}, - [2128] = {.lex_state = 876}, - [2129] = {.lex_state = 876}, - [2130] = {.lex_state = 51}, - [2131] = {.lex_state = 51}, - [2132] = {.lex_state = 51}, - [2133] = {.lex_state = 876}, - [2134] = {.lex_state = 876}, - [2135] = {.lex_state = 37}, - [2136] = {.lex_state = 23}, - [2137] = {.lex_state = 41, .external_lex_state = 5}, - [2138] = {.lex_state = 23}, - [2139] = {.lex_state = 37}, - [2140] = {.lex_state = 37}, - [2141] = {.lex_state = 37}, - [2142] = {.lex_state = 876}, - [2143] = {.lex_state = 876}, - [2144] = {.lex_state = 876}, - [2145] = {.lex_state = 51}, - [2146] = {.lex_state = 876}, - [2147] = {.lex_state = 37}, - [2148] = {.lex_state = 40}, - [2149] = {.lex_state = 23}, - [2150] = {.lex_state = 876}, - [2151] = {.lex_state = 876}, - [2152] = {.lex_state = 876}, - [2153] = {.lex_state = 51}, - [2154] = {.lex_state = 51}, - [2155] = {.lex_state = 876}, - [2156] = {.lex_state = 876}, - [2157] = {.lex_state = 876}, - [2158] = {.lex_state = 37}, - [2159] = {.lex_state = 876}, - [2160] = {.lex_state = 876}, - [2161] = {.lex_state = 876}, - [2162] = {.lex_state = 51}, - [2163] = {.lex_state = 51}, - [2164] = {.lex_state = 876}, - [2165] = {.lex_state = 876}, - [2166] = {.lex_state = 37}, - [2167] = {.lex_state = 40}, - [2168] = {.lex_state = 876}, - [2169] = {.lex_state = 876}, - [2170] = {.lex_state = 51}, - [2171] = {.lex_state = 876, .external_lex_state = 5}, - [2172] = {.lex_state = 876}, - [2173] = {.lex_state = 876}, - [2174] = {.lex_state = 51}, - [2175] = {.lex_state = 876}, - [2176] = {.lex_state = 876}, - [2177] = {.lex_state = 876}, - [2178] = {.lex_state = 876}, - [2179] = {.lex_state = 37}, - [2180] = {.lex_state = 876}, - [2181] = {.lex_state = 876}, - [2182] = {.lex_state = 23}, - [2183] = {.lex_state = 41, .external_lex_state = 5}, - [2184] = {.lex_state = 876}, - [2185] = {.lex_state = 37}, - [2186] = {.lex_state = 51}, - [2187] = {.lex_state = 876}, - [2188] = {.lex_state = 876}, - [2189] = {.lex_state = 876}, - [2190] = {.lex_state = 876}, - [2191] = {.lex_state = 51}, - [2192] = {.lex_state = 23}, - [2193] = {.lex_state = 37}, - [2194] = {.lex_state = 876}, - [2195] = {.lex_state = 51}, - [2196] = {.lex_state = 876}, - [2197] = {.lex_state = 23}, - [2198] = {.lex_state = 23}, - [2199] = {.lex_state = 876}, - [2200] = {.lex_state = 876}, - [2201] = {.lex_state = 37}, - [2202] = {.lex_state = 41}, - [2203] = {.lex_state = 876}, - [2204] = {.lex_state = 876}, - [2205] = {.lex_state = 876}, - [2206] = {.lex_state = 876}, - [2207] = {.lex_state = 876}, - [2208] = {.lex_state = 876}, - [2209] = {.lex_state = 876}, - [2210] = {.lex_state = 876}, - [2211] = {.lex_state = 876}, - [2212] = {.lex_state = 876}, - [2213] = {.lex_state = 876}, - [2214] = {.lex_state = 876}, - [2215] = {.lex_state = 876}, - [2216] = {.lex_state = 876}, - [2217] = {.lex_state = 876}, - [2218] = {.lex_state = 876}, - [2219] = {.lex_state = 876}, - [2220] = {.lex_state = 876}, - [2221] = {.lex_state = 876}, - [2222] = {.lex_state = 876}, - [2223] = {.lex_state = 876}, - [2224] = {.lex_state = 876}, - [2225] = {.lex_state = 876}, - [2226] = {.lex_state = 876}, - [2227] = {.lex_state = 876}, - [2228] = {.lex_state = 876}, - [2229] = {.lex_state = 876}, - [2230] = {.lex_state = 876}, - [2231] = {.lex_state = 876}, - [2232] = {.lex_state = 876}, - [2233] = {.lex_state = 876}, - [2234] = {.lex_state = 876}, - [2235] = {.lex_state = 876}, - [2236] = {.lex_state = 876}, - [2237] = {.lex_state = 876}, - [2238] = {.lex_state = 876}, - [2239] = {.lex_state = 876}, - [2240] = {.lex_state = 876}, - [2241] = {.lex_state = 876}, - [2242] = {.lex_state = 41}, - [2243] = {.lex_state = 876}, - [2244] = {.lex_state = 876}, - [2245] = {.lex_state = 41, .external_lex_state = 5}, - [2246] = {.lex_state = 876}, - [2247] = {.lex_state = 876}, - [2248] = {.lex_state = 876}, - [2249] = {.lex_state = 876}, - [2250] = {.lex_state = 103}, - [2251] = {.lex_state = 876}, - [2252] = {.lex_state = 876}, - [2253] = {.lex_state = 876}, - [2254] = {.lex_state = 876}, - [2255] = {.lex_state = 876}, - [2256] = {.lex_state = 876}, - [2257] = {.lex_state = 876}, - [2258] = {.lex_state = 876}, - [2259] = {.lex_state = 876}, - [2260] = {.lex_state = 41}, - [2261] = {.lex_state = 876}, - [2262] = {.lex_state = 876}, - [2263] = {.lex_state = 876}, - [2264] = {.lex_state = 876}, - [2265] = {.lex_state = 876}, - [2266] = {.lex_state = 876}, - [2267] = {.lex_state = 876}, - [2268] = {.lex_state = 876}, - [2269] = {.lex_state = 876}, - [2270] = {.lex_state = 876}, - [2271] = {.lex_state = 876}, - [2272] = {.lex_state = 876}, - [2273] = {.lex_state = 876}, - [2274] = {.lex_state = 876}, - [2275] = {.lex_state = 876}, - [2276] = {.lex_state = 876}, - [2277] = {.lex_state = 876}, - [2278] = {.lex_state = 876}, - [2279] = {.lex_state = 876}, - [2280] = {.lex_state = 876}, - [2281] = {.lex_state = 876}, - [2282] = {.lex_state = 876}, - [2283] = {.lex_state = 876, .external_lex_state = 5}, - [2284] = {.lex_state = 876}, - [2285] = {.lex_state = 876}, - [2286] = {.lex_state = 876}, - [2287] = {.lex_state = 876}, - [2288] = {.lex_state = 876}, - [2289] = {.lex_state = 876}, - [2290] = {.lex_state = 876}, - [2291] = {.lex_state = 876}, - [2292] = {.lex_state = 876}, - [2293] = {.lex_state = 876}, - [2294] = {.lex_state = 876}, - [2295] = {.lex_state = 876}, - [2296] = {.lex_state = 876}, - [2297] = {.lex_state = 876}, - [2298] = {.lex_state = 876}, - [2299] = {.lex_state = 876}, - [2300] = {.lex_state = 876}, - [2301] = {.lex_state = 876}, - [2302] = {.lex_state = 876}, - [2303] = {.lex_state = 876}, - [2304] = {.lex_state = 876}, - [2305] = {.lex_state = 876}, - [2306] = {.lex_state = 876}, - [2307] = {.lex_state = 876}, - [2308] = {.lex_state = 876}, - [2309] = {.lex_state = 876}, - [2310] = {.lex_state = 876}, - [2311] = {.lex_state = 876}, - [2312] = {.lex_state = 41}, - [2313] = {.lex_state = 876}, - [2314] = {.lex_state = 876}, - [2315] = {.lex_state = 876}, - [2316] = {.lex_state = 876}, - [2317] = {.lex_state = 876}, - [2318] = {.lex_state = 876}, - [2319] = {.lex_state = 876}, - [2320] = {.lex_state = 876}, - [2321] = {.lex_state = 876}, - [2322] = {.lex_state = 876}, - [2323] = {.lex_state = 876}, - [2324] = {.lex_state = 876}, - [2325] = {.lex_state = 876}, - [2326] = {.lex_state = 876}, - [2327] = {.lex_state = 876}, - [2328] = {.lex_state = 876}, - [2329] = {.lex_state = 876}, - [2330] = {.lex_state = 876}, - [2331] = {.lex_state = 876}, - [2332] = {.lex_state = 99}, - [2333] = {.lex_state = 99}, - [2334] = {.lex_state = 41}, - [2335] = {.lex_state = 38}, - [2336] = {.lex_state = 84}, - [2337] = {.lex_state = 876, .external_lex_state = 5}, - [2338] = {.lex_state = 876, .external_lex_state = 5}, - [2339] = {.lex_state = 41}, - [2340] = {.lex_state = 38}, - [2341] = {.lex_state = 876, .external_lex_state = 5}, - [2342] = {.lex_state = 38}, - [2343] = {.lex_state = 876, .external_lex_state = 5}, - [2344] = {.lex_state = 876, .external_lex_state = 5}, - [2345] = {.lex_state = 876, .external_lex_state = 5}, - [2346] = {.lex_state = 876}, - [2347] = {.lex_state = 876}, - [2348] = {.lex_state = 38}, - [2349] = {.lex_state = 876}, - [2350] = {.lex_state = 876, .external_lex_state = 5}, - [2351] = {.lex_state = 38}, - [2352] = {.lex_state = 99}, - [2353] = {.lex_state = 23}, - [2354] = {.lex_state = 876, .external_lex_state = 5}, - [2355] = {.lex_state = 876, .external_lex_state = 5}, - [2356] = {.lex_state = 38}, - [2357] = {.lex_state = 876, .external_lex_state = 5}, - [2358] = {.lex_state = 38}, - [2359] = {.lex_state = 38}, - [2360] = {.lex_state = 876, .external_lex_state = 5}, - [2361] = {.lex_state = 23}, - [2362] = {.lex_state = 99}, - [2363] = {.lex_state = 99}, - [2364] = {.lex_state = 23}, - [2365] = {.lex_state = 876, .external_lex_state = 5}, - [2366] = {.lex_state = 876, .external_lex_state = 5}, - [2367] = {.lex_state = 876, .external_lex_state = 5}, - [2368] = {.lex_state = 38}, - [2369] = {.lex_state = 876, .external_lex_state = 5}, - [2370] = {.lex_state = 38}, - [2371] = {.lex_state = 876}, - [2372] = {.lex_state = 83}, - [2373] = {.lex_state = 51}, - [2374] = {.lex_state = 876}, - [2375] = {.lex_state = 876}, - [2376] = {.lex_state = 42}, - [2377] = {.lex_state = 51}, - [2378] = {.lex_state = 51}, - [2379] = {.lex_state = 876}, - [2380] = {.lex_state = 876}, - [2381] = {.lex_state = 876}, - [2382] = {.lex_state = 876}, - [2383] = {.lex_state = 876}, - [2384] = {.lex_state = 876}, - [2385] = {.lex_state = 876}, - [2386] = {.lex_state = 23}, - [2387] = {.lex_state = 51}, - [2388] = {.lex_state = 51}, - [2389] = {.lex_state = 876}, - [2390] = {.lex_state = 51}, - [2391] = {.lex_state = 37}, - [2392] = {.lex_state = 876}, - [2393] = {.lex_state = 51}, - [2394] = {.lex_state = 876}, - [2395] = {.lex_state = 23}, - [2396] = {.lex_state = 51}, - [2397] = {.lex_state = 42}, - [2398] = {.lex_state = 51}, - [2399] = {.lex_state = 83}, - [2400] = {.lex_state = 876}, - [2401] = {.lex_state = 51}, - [2402] = {.lex_state = 876}, - [2403] = {.lex_state = 51}, - [2404] = {.lex_state = 51}, - [2405] = {.lex_state = 876}, - [2406] = {.lex_state = 51}, - [2407] = {.lex_state = 876}, - [2408] = {.lex_state = 876}, - [2409] = {.lex_state = 23}, - [2410] = {.lex_state = 23}, - [2411] = {.lex_state = 51}, - [2412] = {.lex_state = 876}, - [2413] = {.lex_state = 876}, - [2414] = {.lex_state = 51}, - [2415] = {.lex_state = 876}, - [2416] = {.lex_state = 876}, - [2417] = {.lex_state = 876}, - [2418] = {.lex_state = 876}, - [2419] = {.lex_state = 876}, - [2420] = {.lex_state = 42}, - [2421] = {.lex_state = 876}, - [2422] = {.lex_state = 51}, - [2423] = {.lex_state = 876}, - [2424] = {.lex_state = 51}, - [2425] = {.lex_state = 23}, - [2426] = {.lex_state = 876}, - [2427] = {.lex_state = 23}, - [2428] = {.lex_state = 876}, - [2429] = {.lex_state = 51}, + [1618] = {.lex_state = 39}, + [1619] = {.lex_state = 24, .external_lex_state = 4}, + [1620] = {.lex_state = 39}, + [1621] = {.lex_state = 24, .external_lex_state = 4}, + [1622] = {.lex_state = 24, .external_lex_state = 4}, + [1623] = {.lex_state = 24, .external_lex_state = 4}, + [1624] = {.lex_state = 24, .external_lex_state = 4}, + [1625] = {.lex_state = 24, .external_lex_state = 4}, + [1626] = {.lex_state = 24, .external_lex_state = 4}, + [1627] = {.lex_state = 24, .external_lex_state = 4}, + [1628] = {.lex_state = 24, .external_lex_state = 4}, + [1629] = {.lex_state = 24, .external_lex_state = 4}, + [1630] = {.lex_state = 24, .external_lex_state = 4}, + [1631] = {.lex_state = 109}, + [1632] = {.lex_state = 39}, + [1633] = {.lex_state = 39}, + [1634] = {.lex_state = 39}, + [1635] = {.lex_state = 39}, + [1636] = {.lex_state = 100}, + [1637] = {.lex_state = 100}, + [1638] = {.lex_state = 34}, + [1639] = {.lex_state = 100}, + [1640] = {.lex_state = 100}, + [1641] = {.lex_state = 100}, + [1642] = {.lex_state = 100}, + [1643] = {.lex_state = 100}, + [1644] = {.lex_state = 100}, + [1645] = {.lex_state = 100}, + [1646] = {.lex_state = 39}, + [1647] = {.lex_state = 39, .external_lex_state = 5}, + [1648] = {.lex_state = 39}, + [1649] = {.lex_state = 39}, + [1650] = {.lex_state = 100}, + [1651] = {.lex_state = 39}, + [1652] = {.lex_state = 39}, + [1653] = {.lex_state = 100}, + [1654] = {.lex_state = 100}, + [1655] = {.lex_state = 39, .external_lex_state = 5}, + [1656] = {.lex_state = 39}, + [1657] = {.lex_state = 100}, + [1658] = {.lex_state = 100}, + [1659] = {.lex_state = 100}, + [1660] = {.lex_state = 39, .external_lex_state = 5}, + [1661] = {.lex_state = 100}, + [1662] = {.lex_state = 39}, + [1663] = {.lex_state = 100}, + [1664] = {.lex_state = 34}, + [1665] = {.lex_state = 34}, + [1666] = {.lex_state = 34}, + [1667] = {.lex_state = 100}, + [1668] = {.lex_state = 34}, + [1669] = {.lex_state = 100}, + [1670] = {.lex_state = 39, .external_lex_state = 5}, + [1671] = {.lex_state = 39}, + [1672] = {.lex_state = 100}, + [1673] = {.lex_state = 39}, + [1674] = {.lex_state = 100}, + [1675] = {.lex_state = 100}, + [1676] = {.lex_state = 39}, + [1677] = {.lex_state = 39}, + [1678] = {.lex_state = 39}, + [1679] = {.lex_state = 39}, + [1680] = {.lex_state = 39}, + [1681] = {.lex_state = 39}, + [1682] = {.lex_state = 39}, + [1683] = {.lex_state = 39}, + [1684] = {.lex_state = 39}, + [1685] = {.lex_state = 39}, + [1686] = {.lex_state = 39}, + [1687] = {.lex_state = 39}, + [1688] = {.lex_state = 39}, + [1689] = {.lex_state = 39}, + [1690] = {.lex_state = 39}, + [1691] = {.lex_state = 39}, + [1692] = {.lex_state = 39}, + [1693] = {.lex_state = 39}, + [1694] = {.lex_state = 39}, + [1695] = {.lex_state = 39}, + [1696] = {.lex_state = 39}, + [1697] = {.lex_state = 39}, + [1698] = {.lex_state = 882}, + [1699] = {.lex_state = 109}, + [1700] = {.lex_state = 109}, + [1701] = {.lex_state = 882}, + [1702] = {.lex_state = 39}, + [1703] = {.lex_state = 39}, + [1704] = {.lex_state = 39}, + [1705] = {.lex_state = 882}, + [1706] = {.lex_state = 882}, + [1707] = {.lex_state = 882}, + [1708] = {.lex_state = 39}, + [1709] = {.lex_state = 39}, + [1710] = {.lex_state = 39}, + [1711] = {.lex_state = 39}, + [1712] = {.lex_state = 39}, + [1713] = {.lex_state = 109}, + [1714] = {.lex_state = 882}, + [1715] = {.lex_state = 882}, + [1716] = {.lex_state = 882}, + [1717] = {.lex_state = 882}, + [1718] = {.lex_state = 39}, + [1719] = {.lex_state = 39}, + [1720] = {.lex_state = 39}, + [1721] = {.lex_state = 39}, + [1722] = {.lex_state = 39}, + [1723] = {.lex_state = 39}, + [1724] = {.lex_state = 109}, + [1725] = {.lex_state = 109}, + [1726] = {.lex_state = 882}, + [1727] = {.lex_state = 39}, + [1728] = {.lex_state = 39}, + [1729] = {.lex_state = 882}, + [1730] = {.lex_state = 39}, + [1731] = {.lex_state = 882}, + [1732] = {.lex_state = 39}, + [1733] = {.lex_state = 39}, + [1734] = {.lex_state = 39}, + [1735] = {.lex_state = 39}, + [1736] = {.lex_state = 39}, + [1737] = {.lex_state = 39}, + [1738] = {.lex_state = 39}, + [1739] = {.lex_state = 39}, + [1740] = {.lex_state = 39}, + [1741] = {.lex_state = 39}, + [1742] = {.lex_state = 39}, + [1743] = {.lex_state = 39}, + [1744] = {.lex_state = 39}, + [1745] = {.lex_state = 39}, + [1746] = {.lex_state = 39}, + [1747] = {.lex_state = 39}, + [1748] = {.lex_state = 39}, + [1749] = {.lex_state = 39}, + [1750] = {.lex_state = 39}, + [1751] = {.lex_state = 39}, + [1752] = {.lex_state = 39}, + [1753] = {.lex_state = 39}, + [1754] = {.lex_state = 39}, + [1755] = {.lex_state = 39}, + [1756] = {.lex_state = 39}, + [1757] = {.lex_state = 39}, + [1758] = {.lex_state = 39}, + [1759] = {.lex_state = 39}, + [1760] = {.lex_state = 39}, + [1761] = {.lex_state = 39}, + [1762] = {.lex_state = 39}, + [1763] = {.lex_state = 39}, + [1764] = {.lex_state = 39}, + [1765] = {.lex_state = 39}, + [1766] = {.lex_state = 39}, + [1767] = {.lex_state = 39}, + [1768] = {.lex_state = 39}, + [1769] = {.lex_state = 39}, + [1770] = {.lex_state = 39}, + [1771] = {.lex_state = 39}, + [1772] = {.lex_state = 39}, + [1773] = {.lex_state = 39}, + [1774] = {.lex_state = 39}, + [1775] = {.lex_state = 39}, + [1776] = {.lex_state = 39}, + [1777] = {.lex_state = 39}, + [1778] = {.lex_state = 39}, + [1779] = {.lex_state = 39}, + [1780] = {.lex_state = 39}, + [1781] = {.lex_state = 39}, + [1782] = {.lex_state = 39}, + [1783] = {.lex_state = 39}, + [1784] = {.lex_state = 39}, + [1785] = {.lex_state = 39}, + [1786] = {.lex_state = 39}, + [1787] = {.lex_state = 39}, + [1788] = {.lex_state = 39}, + [1789] = {.lex_state = 39}, + [1790] = {.lex_state = 39}, + [1791] = {.lex_state = 109}, + [1792] = {.lex_state = 39}, + [1793] = {.lex_state = 39}, + [1794] = {.lex_state = 39}, + [1795] = {.lex_state = 39}, + [1796] = {.lex_state = 39}, + [1797] = {.lex_state = 39}, + [1798] = {.lex_state = 39}, + [1799] = {.lex_state = 39}, + [1800] = {.lex_state = 39}, + [1801] = {.lex_state = 39}, + [1802] = {.lex_state = 39}, + [1803] = {.lex_state = 39}, + [1804] = {.lex_state = 39}, + [1805] = {.lex_state = 882}, + [1806] = {.lex_state = 882}, + [1807] = {.lex_state = 882}, + [1808] = {.lex_state = 39}, + [1809] = {.lex_state = 882}, + [1810] = {.lex_state = 39}, + [1811] = {.lex_state = 39, .external_lex_state = 5}, + [1812] = {.lex_state = 882}, + [1813] = {.lex_state = 39}, + [1814] = {.lex_state = 882}, + [1815] = {.lex_state = 39}, + [1816] = {.lex_state = 39}, + [1817] = {.lex_state = 39}, + [1818] = {.lex_state = 882}, + [1819] = {.lex_state = 882}, + [1820] = {.lex_state = 882}, + [1821] = {.lex_state = 882}, + [1822] = {.lex_state = 882}, + [1823] = {.lex_state = 93}, + [1824] = {.lex_state = 93}, + [1825] = {.lex_state = 93}, + [1826] = {.lex_state = 882}, + [1827] = {.lex_state = 882}, + [1828] = {.lex_state = 93}, + [1829] = {.lex_state = 93}, + [1830] = {.lex_state = 93}, + [1831] = {.lex_state = 93}, + [1832] = {.lex_state = 93}, + [1833] = {.lex_state = 882}, + [1834] = {.lex_state = 882}, + [1835] = {.lex_state = 109}, + [1836] = {.lex_state = 882}, + [1837] = {.lex_state = 93}, + [1838] = {.lex_state = 93}, + [1839] = {.lex_state = 882}, + [1840] = {.lex_state = 882}, + [1841] = {.lex_state = 882, .external_lex_state = 5}, + [1842] = {.lex_state = 882, .external_lex_state = 5}, + [1843] = {.lex_state = 882, .external_lex_state = 5}, + [1844] = {.lex_state = 109}, + [1845] = {.lex_state = 42, .external_lex_state = 6}, + [1846] = {.lex_state = 882, .external_lex_state = 5}, + [1847] = {.lex_state = 882, .external_lex_state = 5}, + [1848] = {.lex_state = 109}, + [1849] = {.lex_state = 109}, + [1850] = {.lex_state = 882, .external_lex_state = 5}, + [1851] = {.lex_state = 882, .external_lex_state = 5}, + [1852] = {.lex_state = 882, .external_lex_state = 5}, + [1853] = {.lex_state = 39}, + [1854] = {.lex_state = 39}, + [1855] = {.lex_state = 882, .external_lex_state = 5}, + [1856] = {.lex_state = 882, .external_lex_state = 5}, + [1857] = {.lex_state = 39}, + [1858] = {.lex_state = 109}, + [1859] = {.lex_state = 109}, + [1860] = {.lex_state = 39}, + [1861] = {.lex_state = 882, .external_lex_state = 5}, + [1862] = {.lex_state = 109}, + [1863] = {.lex_state = 882, .external_lex_state = 5}, + [1864] = {.lex_state = 109}, + [1865] = {.lex_state = 882, .external_lex_state = 5}, + [1866] = {.lex_state = 882, .external_lex_state = 5}, + [1867] = {.lex_state = 882, .external_lex_state = 5}, + [1868] = {.lex_state = 882}, + [1869] = {.lex_state = 882}, + [1870] = {.lex_state = 39}, + [1871] = {.lex_state = 882}, + [1872] = {.lex_state = 882}, + [1873] = {.lex_state = 882}, + [1874] = {.lex_state = 882}, + [1875] = {.lex_state = 882}, + [1876] = {.lex_state = 882}, + [1877] = {.lex_state = 882}, + [1878] = {.lex_state = 882}, + [1879] = {.lex_state = 882}, + [1880] = {.lex_state = 882}, + [1881] = {.lex_state = 882}, + [1882] = {.lex_state = 882}, + [1883] = {.lex_state = 882}, + [1884] = {.lex_state = 882}, + [1885] = {.lex_state = 39}, + [1886] = {.lex_state = 882}, + [1887] = {.lex_state = 882}, + [1888] = {.lex_state = 882}, + [1889] = {.lex_state = 882}, + [1890] = {.lex_state = 882}, + [1891] = {.lex_state = 882}, + [1892] = {.lex_state = 882}, + [1893] = {.lex_state = 882}, + [1894] = {.lex_state = 882}, + [1895] = {.lex_state = 882}, + [1896] = {.lex_state = 882}, + [1897] = {.lex_state = 882}, + [1898] = {.lex_state = 882}, + [1899] = {.lex_state = 39}, + [1900] = {.lex_state = 882}, + [1901] = {.lex_state = 882}, + [1902] = {.lex_state = 39}, + [1903] = {.lex_state = 39}, + [1904] = {.lex_state = 39}, + [1905] = {.lex_state = 39}, + [1906] = {.lex_state = 109}, + [1907] = {.lex_state = 882}, + [1908] = {.lex_state = 39}, + [1909] = {.lex_state = 39}, + [1910] = {.lex_state = 882}, + [1911] = {.lex_state = 39}, + [1912] = {.lex_state = 882}, + [1913] = {.lex_state = 882}, + [1914] = {.lex_state = 882}, + [1915] = {.lex_state = 882}, + [1916] = {.lex_state = 882}, + [1917] = {.lex_state = 882}, + [1918] = {.lex_state = 882}, + [1919] = {.lex_state = 109}, + [1920] = {.lex_state = 882}, + [1921] = {.lex_state = 39}, + [1922] = {.lex_state = 39}, + [1923] = {.lex_state = 882}, + [1924] = {.lex_state = 882}, + [1925] = {.lex_state = 39}, + [1926] = {.lex_state = 39}, + [1927] = {.lex_state = 882}, + [1928] = {.lex_state = 882}, + [1929] = {.lex_state = 882}, + [1930] = {.lex_state = 39}, + [1931] = {.lex_state = 43, .external_lex_state = 6}, + [1932] = {.lex_state = 109}, + [1933] = {.lex_state = 882}, + [1934] = {.lex_state = 39}, + [1935] = {.lex_state = 39}, + [1936] = {.lex_state = 882}, + [1937] = {.lex_state = 882}, + [1938] = {.lex_state = 39}, + [1939] = {.lex_state = 882}, + [1940] = {.lex_state = 882}, + [1941] = {.lex_state = 882}, + [1942] = {.lex_state = 39}, + [1943] = {.lex_state = 882, .external_lex_state = 5}, + [1944] = {.lex_state = 109}, + [1945] = {.lex_state = 89}, + [1946] = {.lex_state = 89}, + [1947] = {.lex_state = 882}, + [1948] = {.lex_state = 109}, + [1949] = {.lex_state = 882}, + [1950] = {.lex_state = 882}, + [1951] = {.lex_state = 882}, + [1952] = {.lex_state = 109}, + [1953] = {.lex_state = 882}, + [1954] = {.lex_state = 882}, + [1955] = {.lex_state = 882}, + [1956] = {.lex_state = 882}, + [1957] = {.lex_state = 882}, + [1958] = {.lex_state = 882}, + [1959] = {.lex_state = 882}, + [1960] = {.lex_state = 882}, + [1961] = {.lex_state = 882}, + [1962] = {.lex_state = 882}, + [1963] = {.lex_state = 882}, + [1964] = {.lex_state = 882}, + [1965] = {.lex_state = 882}, + [1966] = {.lex_state = 882}, + [1967] = {.lex_state = 882}, + [1968] = {.lex_state = 882}, + [1969] = {.lex_state = 882}, + [1970] = {.lex_state = 882}, + [1971] = {.lex_state = 109}, + [1972] = {.lex_state = 882}, + [1973] = {.lex_state = 109}, + [1974] = {.lex_state = 882}, + [1975] = {.lex_state = 882}, + [1976] = {.lex_state = 94}, + [1977] = {.lex_state = 109}, + [1978] = {.lex_state = 882}, + [1979] = {.lex_state = 882}, + [1980] = {.lex_state = 882}, + [1981] = {.lex_state = 882}, + [1982] = {.lex_state = 94}, + [1983] = {.lex_state = 94}, + [1984] = {.lex_state = 882}, + [1985] = {.lex_state = 882}, + [1986] = {.lex_state = 882}, + [1987] = {.lex_state = 882}, + [1988] = {.lex_state = 882}, + [1989] = {.lex_state = 882}, + [1990] = {.lex_state = 94}, + [1991] = {.lex_state = 882}, + [1992] = {.lex_state = 882}, + [1993] = {.lex_state = 94}, + [1994] = {.lex_state = 882}, + [1995] = {.lex_state = 882}, + [1996] = {.lex_state = 882}, + [1997] = {.lex_state = 882}, + [1998] = {.lex_state = 882}, + [1999] = {.lex_state = 882}, + [2000] = {.lex_state = 882}, + [2001] = {.lex_state = 882}, + [2002] = {.lex_state = 882}, + [2003] = {.lex_state = 94}, + [2004] = {.lex_state = 882}, + [2005] = {.lex_state = 42, .external_lex_state = 5}, + [2006] = {.lex_state = 882}, + [2007] = {.lex_state = 42, .external_lex_state = 5}, + [2008] = {.lex_state = 94}, + [2009] = {.lex_state = 882}, + [2010] = {.lex_state = 882}, + [2011] = {.lex_state = 109}, + [2012] = {.lex_state = 882}, + [2013] = {.lex_state = 109}, + [2014] = {.lex_state = 109}, + [2015] = {.lex_state = 882}, + [2016] = {.lex_state = 39}, + [2017] = {.lex_state = 94}, + [2018] = {.lex_state = 882}, + [2019] = {.lex_state = 882}, + [2020] = {.lex_state = 109}, + [2021] = {.lex_state = 94}, + [2022] = {.lex_state = 94}, + [2023] = {.lex_state = 39}, + [2024] = {.lex_state = 39}, + [2025] = {.lex_state = 39}, + [2026] = {.lex_state = 882}, + [2027] = {.lex_state = 882, .external_lex_state = 5}, + [2028] = {.lex_state = 42}, + [2029] = {.lex_state = 882, .external_lex_state = 5}, + [2030] = {.lex_state = 882}, + [2031] = {.lex_state = 42}, + [2032] = {.lex_state = 42, .external_lex_state = 5}, + [2033] = {.lex_state = 42}, + [2034] = {.lex_state = 882}, + [2035] = {.lex_state = 39}, + [2036] = {.lex_state = 39}, + [2037] = {.lex_state = 882}, + [2038] = {.lex_state = 39}, + [2039] = {.lex_state = 882}, + [2040] = {.lex_state = 39}, + [2041] = {.lex_state = 39}, + [2042] = {.lex_state = 39}, + [2043] = {.lex_state = 39}, + [2044] = {.lex_state = 39}, + [2045] = {.lex_state = 39}, + [2046] = {.lex_state = 39}, + [2047] = {.lex_state = 39}, + [2048] = {.lex_state = 39}, + [2049] = {.lex_state = 882}, + [2050] = {.lex_state = 39}, + [2051] = {.lex_state = 39}, + [2052] = {.lex_state = 882}, + [2053] = {.lex_state = 39}, + [2054] = {.lex_state = 39}, + [2055] = {.lex_state = 882}, + [2056] = {.lex_state = 882}, + [2057] = {.lex_state = 39}, + [2058] = {.lex_state = 39}, + [2059] = {.lex_state = 882}, + [2060] = {.lex_state = 39}, + [2061] = {.lex_state = 882}, + [2062] = {.lex_state = 39}, + [2063] = {.lex_state = 39}, + [2064] = {.lex_state = 39}, + [2065] = {.lex_state = 882}, + [2066] = {.lex_state = 882}, + [2067] = {.lex_state = 39}, + [2068] = {.lex_state = 39}, + [2069] = {.lex_state = 882}, + [2070] = {.lex_state = 882}, + [2071] = {.lex_state = 42}, + [2072] = {.lex_state = 39}, + [2073] = {.lex_state = 39}, + [2074] = {.lex_state = 39}, + [2075] = {.lex_state = 882}, + [2076] = {.lex_state = 882}, + [2077] = {.lex_state = 39}, + [2078] = {.lex_state = 39}, + [2079] = {.lex_state = 882}, + [2080] = {.lex_state = 39}, + [2081] = {.lex_state = 39}, + [2082] = {.lex_state = 882}, + [2083] = {.lex_state = 39}, + [2084] = {.lex_state = 882}, + [2085] = {.lex_state = 39}, + [2086] = {.lex_state = 39}, + [2087] = {.lex_state = 882}, + [2088] = {.lex_state = 39}, + [2089] = {.lex_state = 39}, + [2090] = {.lex_state = 882}, + [2091] = {.lex_state = 39}, + [2092] = {.lex_state = 39}, + [2093] = {.lex_state = 39}, + [2094] = {.lex_state = 882}, + [2095] = {.lex_state = 39}, + [2096] = {.lex_state = 54}, + [2097] = {.lex_state = 39}, + [2098] = {.lex_state = 39}, + [2099] = {.lex_state = 882}, + [2100] = {.lex_state = 39}, + [2101] = {.lex_state = 39}, + [2102] = {.lex_state = 39}, + [2103] = {.lex_state = 882}, + [2104] = {.lex_state = 39}, + [2105] = {.lex_state = 39}, + [2106] = {.lex_state = 882}, + [2107] = {.lex_state = 39}, + [2108] = {.lex_state = 39}, + [2109] = {.lex_state = 882}, + [2110] = {.lex_state = 882}, + [2111] = {.lex_state = 39}, + [2112] = {.lex_state = 39}, + [2113] = {.lex_state = 54}, + [2114] = {.lex_state = 882}, + [2115] = {.lex_state = 882}, + [2116] = {.lex_state = 882}, + [2117] = {.lex_state = 39}, + [2118] = {.lex_state = 882}, + [2119] = {.lex_state = 39}, + [2120] = {.lex_state = 39}, + [2121] = {.lex_state = 39}, + [2122] = {.lex_state = 882}, + [2123] = {.lex_state = 882}, + [2124] = {.lex_state = 882}, + [2125] = {.lex_state = 39}, + [2126] = {.lex_state = 39}, + [2127] = {.lex_state = 882}, + [2128] = {.lex_state = 39}, + [2129] = {.lex_state = 882}, + [2130] = {.lex_state = 882}, + [2131] = {.lex_state = 882}, + [2132] = {.lex_state = 39}, + [2133] = {.lex_state = 882}, + [2134] = {.lex_state = 39}, + [2135] = {.lex_state = 39}, + [2136] = {.lex_state = 882}, + [2137] = {.lex_state = 882}, + [2138] = {.lex_state = 882}, + [2139] = {.lex_state = 882}, + [2140] = {.lex_state = 56}, + [2141] = {.lex_state = 882}, + [2142] = {.lex_state = 882}, + [2143] = {.lex_state = 882}, + [2144] = {.lex_state = 882}, + [2145] = {.lex_state = 23}, + [2146] = {.lex_state = 39}, + [2147] = {.lex_state = 39}, + [2148] = {.lex_state = 882}, + [2149] = {.lex_state = 39}, + [2150] = {.lex_state = 882}, + [2151] = {.lex_state = 882}, + [2152] = {.lex_state = 39}, + [2153] = {.lex_state = 56}, + [2154] = {.lex_state = 56}, + [2155] = {.lex_state = 23}, + [2156] = {.lex_state = 39}, + [2157] = {.lex_state = 882}, + [2158] = {.lex_state = 39}, + [2159] = {.lex_state = 56}, + [2160] = {.lex_state = 56}, + [2161] = {.lex_state = 39}, + [2162] = {.lex_state = 42}, + [2163] = {.lex_state = 56}, + [2164] = {.lex_state = 56}, + [2165] = {.lex_state = 56}, + [2166] = {.lex_state = 23}, + [2167] = {.lex_state = 882}, + [2168] = {.lex_state = 882}, + [2169] = {.lex_state = 56}, + [2170] = {.lex_state = 56}, + [2171] = {.lex_state = 23}, + [2172] = {.lex_state = 42}, + [2173] = {.lex_state = 39}, + [2174] = {.lex_state = 39}, + [2175] = {.lex_state = 882, .external_lex_state = 5}, + [2176] = {.lex_state = 882}, + [2177] = {.lex_state = 882}, + [2178] = {.lex_state = 882}, + [2179] = {.lex_state = 882}, + [2180] = {.lex_state = 56}, + [2181] = {.lex_state = 39}, + [2182] = {.lex_state = 882}, + [2183] = {.lex_state = 39}, + [2184] = {.lex_state = 882}, + [2185] = {.lex_state = 39}, + [2186] = {.lex_state = 23}, + [2187] = {.lex_state = 882}, + [2188] = {.lex_state = 39}, + [2189] = {.lex_state = 882}, + [2190] = {.lex_state = 882}, + [2191] = {.lex_state = 56}, + [2192] = {.lex_state = 882}, + [2193] = {.lex_state = 882}, + [2194] = {.lex_state = 882}, + [2195] = {.lex_state = 882}, + [2196] = {.lex_state = 882}, + [2197] = {.lex_state = 56}, + [2198] = {.lex_state = 882}, + [2199] = {.lex_state = 56}, + [2200] = {.lex_state = 882}, + [2201] = {.lex_state = 882}, + [2202] = {.lex_state = 882}, + [2203] = {.lex_state = 882}, + [2204] = {.lex_state = 882}, + [2205] = {.lex_state = 23}, + [2206] = {.lex_state = 882}, + [2207] = {.lex_state = 23}, + [2208] = {.lex_state = 882}, + [2209] = {.lex_state = 43, .external_lex_state = 5}, + [2210] = {.lex_state = 56}, + [2211] = {.lex_state = 39}, + [2212] = {.lex_state = 882}, + [2213] = {.lex_state = 39}, + [2214] = {.lex_state = 882}, + [2215] = {.lex_state = 43, .external_lex_state = 5}, + [2216] = {.lex_state = 882}, + [2217] = {.lex_state = 882}, + [2218] = {.lex_state = 882}, + [2219] = {.lex_state = 882}, + [2220] = {.lex_state = 90}, + [2221] = {.lex_state = 882}, + [2222] = {.lex_state = 882}, + [2223] = {.lex_state = 90}, + [2224] = {.lex_state = 882}, + [2225] = {.lex_state = 882}, + [2226] = {.lex_state = 882}, + [2227] = {.lex_state = 882}, + [2228] = {.lex_state = 882}, + [2229] = {.lex_state = 882}, + [2230] = {.lex_state = 43, .external_lex_state = 5}, + [2231] = {.lex_state = 882}, + [2232] = {.lex_state = 882}, + [2233] = {.lex_state = 882}, + [2234] = {.lex_state = 882}, + [2235] = {.lex_state = 882}, + [2236] = {.lex_state = 882}, + [2237] = {.lex_state = 43}, + [2238] = {.lex_state = 882}, + [2239] = {.lex_state = 882}, + [2240] = {.lex_state = 882}, + [2241] = {.lex_state = 882}, + [2242] = {.lex_state = 882}, + [2243] = {.lex_state = 43}, + [2244] = {.lex_state = 882}, + [2245] = {.lex_state = 882}, + [2246] = {.lex_state = 882}, + [2247] = {.lex_state = 882}, + [2248] = {.lex_state = 882}, + [2249] = {.lex_state = 882}, + [2250] = {.lex_state = 882}, + [2251] = {.lex_state = 882}, + [2252] = {.lex_state = 882}, + [2253] = {.lex_state = 882}, + [2254] = {.lex_state = 882}, + [2255] = {.lex_state = 882}, + [2256] = {.lex_state = 882}, + [2257] = {.lex_state = 882}, + [2258] = {.lex_state = 882}, + [2259] = {.lex_state = 882}, + [2260] = {.lex_state = 882}, + [2261] = {.lex_state = 882}, + [2262] = {.lex_state = 882}, + [2263] = {.lex_state = 882}, + [2264] = {.lex_state = 882}, + [2265] = {.lex_state = 882}, + [2266] = {.lex_state = 109}, + [2267] = {.lex_state = 882}, + [2268] = {.lex_state = 882}, + [2269] = {.lex_state = 882}, + [2270] = {.lex_state = 882}, + [2271] = {.lex_state = 882}, + [2272] = {.lex_state = 882}, + [2273] = {.lex_state = 882}, + [2274] = {.lex_state = 882}, + [2275] = {.lex_state = 882}, + [2276] = {.lex_state = 882}, + [2277] = {.lex_state = 882}, + [2278] = {.lex_state = 882}, + [2279] = {.lex_state = 882}, + [2280] = {.lex_state = 882}, + [2281] = {.lex_state = 882}, + [2282] = {.lex_state = 882}, + [2283] = {.lex_state = 882}, + [2284] = {.lex_state = 882}, + [2285] = {.lex_state = 882}, + [2286] = {.lex_state = 882}, + [2287] = {.lex_state = 882}, + [2288] = {.lex_state = 882}, + [2289] = {.lex_state = 882}, + [2290] = {.lex_state = 882}, + [2291] = {.lex_state = 882}, + [2292] = {.lex_state = 882}, + [2293] = {.lex_state = 882, .external_lex_state = 5}, + [2294] = {.lex_state = 882}, + [2295] = {.lex_state = 882}, + [2296] = {.lex_state = 882}, + [2297] = {.lex_state = 882}, + [2298] = {.lex_state = 882}, + [2299] = {.lex_state = 882}, + [2300] = {.lex_state = 882}, + [2301] = {.lex_state = 882}, + [2302] = {.lex_state = 882}, + [2303] = {.lex_state = 882}, + [2304] = {.lex_state = 882}, + [2305] = {.lex_state = 882}, + [2306] = {.lex_state = 882}, + [2307] = {.lex_state = 882}, + [2308] = {.lex_state = 882}, + [2309] = {.lex_state = 882}, + [2310] = {.lex_state = 882}, + [2311] = {.lex_state = 882}, + [2312] = {.lex_state = 882}, + [2313] = {.lex_state = 882}, + [2314] = {.lex_state = 882}, + [2315] = {.lex_state = 882}, + [2316] = {.lex_state = 882}, + [2317] = {.lex_state = 882}, + [2318] = {.lex_state = 882}, + [2319] = {.lex_state = 882}, + [2320] = {.lex_state = 882}, + [2321] = {.lex_state = 882}, + [2322] = {.lex_state = 882}, + [2323] = {.lex_state = 882}, + [2324] = {.lex_state = 882}, + [2325] = {.lex_state = 882}, + [2326] = {.lex_state = 882}, + [2327] = {.lex_state = 882}, + [2328] = {.lex_state = 882}, + [2329] = {.lex_state = 882}, + [2330] = {.lex_state = 882}, + [2331] = {.lex_state = 882}, + [2332] = {.lex_state = 882}, + [2333] = {.lex_state = 882}, + [2334] = {.lex_state = 882}, + [2335] = {.lex_state = 882}, + [2336] = {.lex_state = 882}, + [2337] = {.lex_state = 882}, + [2338] = {.lex_state = 43}, + [2339] = {.lex_state = 882}, + [2340] = {.lex_state = 43}, + [2341] = {.lex_state = 882}, + [2342] = {.lex_state = 882}, + [2343] = {.lex_state = 882}, + [2344] = {.lex_state = 882}, + [2345] = {.lex_state = 882}, + [2346] = {.lex_state = 882}, + [2347] = {.lex_state = 882}, + [2348] = {.lex_state = 882}, + [2349] = {.lex_state = 882}, + [2350] = {.lex_state = 40}, + [2351] = {.lex_state = 43}, + [2352] = {.lex_state = 43}, + [2353] = {.lex_state = 882, .external_lex_state = 5}, + [2354] = {.lex_state = 40}, + [2355] = {.lex_state = 105}, + [2356] = {.lex_state = 40}, + [2357] = {.lex_state = 105}, + [2358] = {.lex_state = 40}, + [2359] = {.lex_state = 23}, + [2360] = {.lex_state = 105}, + [2361] = {.lex_state = 882, .external_lex_state = 5}, + [2362] = {.lex_state = 89}, + [2363] = {.lex_state = 882, .external_lex_state = 5}, + [2364] = {.lex_state = 882}, + [2365] = {.lex_state = 23}, + [2366] = {.lex_state = 40}, + [2367] = {.lex_state = 882, .external_lex_state = 5}, + [2368] = {.lex_state = 882, .external_lex_state = 5}, + [2369] = {.lex_state = 882}, + [2370] = {.lex_state = 882, .external_lex_state = 5}, + [2371] = {.lex_state = 40}, + [2372] = {.lex_state = 40}, + [2373] = {.lex_state = 882, .external_lex_state = 5}, + [2374] = {.lex_state = 882, .external_lex_state = 5}, + [2375] = {.lex_state = 882, .external_lex_state = 5}, + [2376] = {.lex_state = 882, .external_lex_state = 5}, + [2377] = {.lex_state = 105}, + [2378] = {.lex_state = 882}, + [2379] = {.lex_state = 882, .external_lex_state = 5}, + [2380] = {.lex_state = 882, .external_lex_state = 5}, + [2381] = {.lex_state = 882, .external_lex_state = 5}, + [2382] = {.lex_state = 882, .external_lex_state = 5}, + [2383] = {.lex_state = 40}, + [2384] = {.lex_state = 23}, + [2385] = {.lex_state = 40}, + [2386] = {.lex_state = 882, .external_lex_state = 5}, + [2387] = {.lex_state = 105}, + [2388] = {.lex_state = 40}, + [2389] = {.lex_state = 882}, + [2390] = {.lex_state = 882}, + [2391] = {.lex_state = 56}, + [2392] = {.lex_state = 882}, + [2393] = {.lex_state = 56}, + [2394] = {.lex_state = 882}, + [2395] = {.lex_state = 882}, + [2396] = {.lex_state = 882}, + [2397] = {.lex_state = 882}, + [2398] = {.lex_state = 882}, + [2399] = {.lex_state = 882}, + [2400] = {.lex_state = 23}, + [2401] = {.lex_state = 882}, + [2402] = {.lex_state = 882}, + [2403] = {.lex_state = 56}, + [2404] = {.lex_state = 44}, + [2405] = {.lex_state = 56}, + [2406] = {.lex_state = 882}, + [2407] = {.lex_state = 882}, + [2408] = {.lex_state = 23}, + [2409] = {.lex_state = 44}, + [2410] = {.lex_state = 56}, + [2411] = {.lex_state = 882}, + [2412] = {.lex_state = 882}, + [2413] = {.lex_state = 56}, + [2414] = {.lex_state = 882}, + [2415] = {.lex_state = 882}, + [2416] = {.lex_state = 882}, + [2417] = {.lex_state = 88}, + [2418] = {.lex_state = 56}, + [2419] = {.lex_state = 882}, + [2420] = {.lex_state = 882}, + [2421] = {.lex_state = 56}, + [2422] = {.lex_state = 882}, + [2423] = {.lex_state = 56}, + [2424] = {.lex_state = 56}, + [2425] = {.lex_state = 882}, + [2426] = {.lex_state = 23}, + [2427] = {.lex_state = 56}, + [2428] = {.lex_state = 56}, + [2429] = {.lex_state = 23}, [2430] = {.lex_state = 23}, - [2431] = {.lex_state = 23}, - [2432] = {.lex_state = 876}, - [2433] = {.lex_state = 51}, - [2434] = {.lex_state = 23}, - [2435] = {.lex_state = 876}, - [2436] = {.lex_state = 51}, - [2437] = {.lex_state = 83}, - [2438] = {.lex_state = 876}, - [2439] = {.lex_state = 83}, - [2440] = {.lex_state = 876}, - [2441] = {.lex_state = 51}, - [2442] = {.lex_state = 876}, - [2443] = {.lex_state = 23}, - [2444] = {.lex_state = 876}, - [2445] = {.lex_state = 23}, - [2446] = {.lex_state = 51}, - [2447] = {.lex_state = 876}, - [2448] = {.lex_state = 51}, - [2449] = {.lex_state = 51}, - [2450] = {.lex_state = 51}, - [2451] = {.lex_state = 42}, - [2452] = {.lex_state = 876}, - [2453] = {.lex_state = 51}, - [2454] = {.lex_state = 876}, - [2455] = {.lex_state = 876}, - [2456] = {.lex_state = 876}, - [2457] = {.lex_state = 876}, - [2458] = {.lex_state = 51}, - [2459] = {.lex_state = 876}, - [2460] = {.lex_state = 51}, - [2461] = {.lex_state = 876, .external_lex_state = 5}, - [2462] = {.lex_state = 876}, - [2463] = {.lex_state = 876}, - [2464] = {.lex_state = 876}, - [2465] = {.lex_state = 876}, - [2466] = {.lex_state = 876}, - [2467] = {.lex_state = 51}, - [2468] = {.lex_state = 51}, - [2469] = {.lex_state = 876}, - [2470] = {.lex_state = 51}, - [2471] = {.lex_state = 876}, - [2472] = {.lex_state = 83}, - [2473] = {.lex_state = 876}, - [2474] = {.lex_state = 876}, - [2475] = {.lex_state = 83}, - [2476] = {.lex_state = 876}, - [2477] = {.lex_state = 876}, - [2478] = {.lex_state = 83}, - [2479] = {.lex_state = 876}, - [2480] = {.lex_state = 876}, - [2481] = {.lex_state = 42}, - [2482] = {.lex_state = 876}, - [2483] = {.lex_state = 876}, - [2484] = {.lex_state = 42}, - [2485] = {.lex_state = 51}, - [2486] = {.lex_state = 51}, - [2487] = {.lex_state = 876}, - [2488] = {.lex_state = 876}, - [2489] = {.lex_state = 42}, - [2490] = {.lex_state = 83}, + [2431] = {.lex_state = 882}, + [2432] = {.lex_state = 882}, + [2433] = {.lex_state = 56}, + [2434] = {.lex_state = 56}, + [2435] = {.lex_state = 882}, + [2436] = {.lex_state = 882}, + [2437] = {.lex_state = 882}, + [2438] = {.lex_state = 882}, + [2439] = {.lex_state = 882}, + [2440] = {.lex_state = 882}, + [2441] = {.lex_state = 23}, + [2442] = {.lex_state = 56}, + [2443] = {.lex_state = 882}, + [2444] = {.lex_state = 44}, + [2445] = {.lex_state = 56}, + [2446] = {.lex_state = 882}, + [2447] = {.lex_state = 56}, + [2448] = {.lex_state = 882}, + [2449] = {.lex_state = 56}, + [2450] = {.lex_state = 23}, + [2451] = {.lex_state = 56}, + [2452] = {.lex_state = 56}, + [2453] = {.lex_state = 44}, + [2454] = {.lex_state = 882}, + [2455] = {.lex_state = 56}, + [2456] = {.lex_state = 88}, + [2457] = {.lex_state = 882}, + [2458] = {.lex_state = 56}, + [2459] = {.lex_state = 23}, + [2460] = {.lex_state = 882}, + [2461] = {.lex_state = 23}, + [2462] = {.lex_state = 56}, + [2463] = {.lex_state = 882}, + [2464] = {.lex_state = 88}, + [2465] = {.lex_state = 56}, + [2466] = {.lex_state = 23}, + [2467] = {.lex_state = 56}, + [2468] = {.lex_state = 44}, + [2469] = {.lex_state = 882}, + [2470] = {.lex_state = 56}, + [2471] = {.lex_state = 88}, + [2472] = {.lex_state = 56}, + [2473] = {.lex_state = 882}, + [2474] = {.lex_state = 56}, + [2475] = {.lex_state = 882}, + [2476] = {.lex_state = 882}, + [2477] = {.lex_state = 44}, + [2478] = {.lex_state = 88}, + [2479] = {.lex_state = 882}, + [2480] = {.lex_state = 882}, + [2481] = {.lex_state = 56}, + [2482] = {.lex_state = 44}, + [2483] = {.lex_state = 882}, + [2484] = {.lex_state = 882}, + [2485] = {.lex_state = 56}, + [2486] = {.lex_state = 56}, + [2487] = {.lex_state = 56}, + [2488] = {.lex_state = 56}, + [2489] = {.lex_state = 882}, + [2490] = {.lex_state = 882}, [2491] = {.lex_state = 23}, - [2492] = {.lex_state = 876}, - [2493] = {.lex_state = 83}, - [2494] = {.lex_state = 51}, - [2495] = {.lex_state = 42}, - [2496] = {.lex_state = 876}, - [2497] = {.lex_state = 51}, - [2498] = {.lex_state = 876}, - [2499] = {.lex_state = 83}, - [2500] = {.lex_state = 51}, - [2501] = {.lex_state = 876}, - [2502] = {.lex_state = 42}, - [2503] = {.lex_state = 51}, - [2504] = {.lex_state = 876}, - [2505] = {.lex_state = 51}, - [2506] = {.lex_state = 51}, - [2507] = {.lex_state = 51}, - [2508] = {.lex_state = 876}, - [2509] = {.lex_state = 23}, - [2510] = {.lex_state = 83}, - [2511] = {.lex_state = 876}, - [2512] = {.lex_state = 876}, - [2513] = {.lex_state = 42}, - [2514] = {.lex_state = 51}, - [2515] = {.lex_state = 51}, - [2516] = {.lex_state = 51}, - [2517] = {.lex_state = 876}, - [2518] = {.lex_state = 51}, - [2519] = {.lex_state = 876}, - [2520] = {.lex_state = 51}, - [2521] = {.lex_state = 876}, - [2522] = {.lex_state = 876}, - [2523] = {.lex_state = 42}, - [2524] = {.lex_state = 42}, - [2525] = {.lex_state = 42}, - [2526] = {.lex_state = 876}, - [2527] = {.lex_state = 876}, - [2528] = {.lex_state = 876}, - [2529] = {.lex_state = 23}, - [2530] = {.lex_state = 876}, - [2531] = {.lex_state = 84}, - [2532] = {.lex_state = 876}, - [2533] = {.lex_state = 876}, - [2534] = {.lex_state = 876}, - [2535] = {.lex_state = 876}, - [2536] = {.lex_state = 876}, - [2537] = {.lex_state = 876}, - [2538] = {.lex_state = 876}, - [2539] = {.lex_state = 876}, - [2540] = {.lex_state = 876}, - [2541] = {.lex_state = 876}, - [2542] = {.lex_state = 876}, - [2543] = {.lex_state = 876}, - [2544] = {.lex_state = 876}, - [2545] = {.lex_state = 876}, - [2546] = {.lex_state = 876}, - [2547] = {.lex_state = 876}, - [2548] = {.lex_state = 876}, - [2549] = {.lex_state = 876}, - [2550] = {.lex_state = 876}, - [2551] = {.lex_state = 876}, - [2552] = {.lex_state = 876}, - [2553] = {.lex_state = 876}, - [2554] = {.lex_state = 876}, - [2555] = {.lex_state = 876}, - [2556] = {.lex_state = 876}, - [2557] = {.lex_state = 876}, - [2558] = {.lex_state = 876}, - [2559] = {.lex_state = 876}, + [2492] = {.lex_state = 23}, + [2493] = {.lex_state = 882}, + [2494] = {.lex_state = 882}, + [2495] = {.lex_state = 882}, + [2496] = {.lex_state = 882}, + [2497] = {.lex_state = 882}, + [2498] = {.lex_state = 882}, + [2499] = {.lex_state = 88}, + [2500] = {.lex_state = 882}, + [2501] = {.lex_state = 882}, + [2502] = {.lex_state = 882}, + [2503] = {.lex_state = 56}, + [2504] = {.lex_state = 882}, + [2505] = {.lex_state = 44}, + [2506] = {.lex_state = 39}, + [2507] = {.lex_state = 882}, + [2508] = {.lex_state = 56}, + [2509] = {.lex_state = 88}, + [2510] = {.lex_state = 882}, + [2511] = {.lex_state = 882, .external_lex_state = 5}, + [2512] = {.lex_state = 882}, + [2513] = {.lex_state = 88}, + [2514] = {.lex_state = 88}, + [2515] = {.lex_state = 88}, + [2516] = {.lex_state = 882}, + [2517] = {.lex_state = 882}, + [2518] = {.lex_state = 44}, + [2519] = {.lex_state = 56}, + [2520] = {.lex_state = 56}, + [2521] = {.lex_state = 88}, + [2522] = {.lex_state = 882}, + [2523] = {.lex_state = 882}, + [2524] = {.lex_state = 56}, + [2525] = {.lex_state = 56}, + [2526] = {.lex_state = 44}, + [2527] = {.lex_state = 56}, + [2528] = {.lex_state = 56}, + [2529] = {.lex_state = 44}, + [2530] = {.lex_state = 882}, + [2531] = {.lex_state = 23}, + [2532] = {.lex_state = 44}, + [2533] = {.lex_state = 882}, + [2534] = {.lex_state = 882}, + [2535] = {.lex_state = 882}, + [2536] = {.lex_state = 882}, + [2537] = {.lex_state = 882}, + [2538] = {.lex_state = 56}, + [2539] = {.lex_state = 56}, + [2540] = {.lex_state = 44}, + [2541] = {.lex_state = 56}, + [2542] = {.lex_state = 882}, + [2543] = {.lex_state = 56}, + [2544] = {.lex_state = 882}, + [2545] = {.lex_state = 882}, + [2546] = {.lex_state = 882}, + [2547] = {.lex_state = 882}, + [2548] = {.lex_state = 882}, + [2549] = {.lex_state = 882}, + [2550] = {.lex_state = 882}, + [2551] = {.lex_state = 882}, + [2552] = {.lex_state = 882}, + [2553] = {.lex_state = 882, .external_lex_state = 5}, + [2554] = {.lex_state = 882}, + [2555] = {.lex_state = 882}, + [2556] = {.lex_state = 882}, + [2557] = {.lex_state = 882}, + [2558] = {.lex_state = 882}, + [2559] = {.lex_state = 882}, [2560] = {.lex_state = 42}, - [2561] = {.lex_state = 876}, - [2562] = {.lex_state = 96}, - [2563] = {.lex_state = 876}, - [2564] = {.lex_state = 876}, - [2565] = {.lex_state = 876}, - [2566] = {.lex_state = 876}, - [2567] = {.lex_state = 876}, - [2568] = {.lex_state = 876}, - [2569] = {.lex_state = 876}, - [2570] = {.lex_state = 876, .external_lex_state = 5}, - [2571] = {.lex_state = 876}, - [2572] = {.lex_state = 876}, - [2573] = {.lex_state = 96}, - [2574] = {.lex_state = 876}, - [2575] = {.lex_state = 876, .external_lex_state = 5}, - [2576] = {.lex_state = 876}, - [2577] = {.lex_state = 876}, - [2578] = {.lex_state = 876}, - [2579] = {.lex_state = 876}, - [2580] = {.lex_state = 876}, - [2581] = {.lex_state = 876}, - [2582] = {.lex_state = 876}, - [2583] = {.lex_state = 876}, - [2584] = {.lex_state = 876}, - [2585] = {.lex_state = 876}, - [2586] = {.lex_state = 876}, - [2587] = {.lex_state = 876}, - [2588] = {.lex_state = 876}, - [2589] = {.lex_state = 876}, - [2590] = {.lex_state = 876}, - [2591] = {.lex_state = 876}, - [2592] = {.lex_state = 876}, - [2593] = {.lex_state = 876}, - [2594] = {.lex_state = 876}, - [2595] = {.lex_state = 876}, - [2596] = {.lex_state = 876}, - [2597] = {.lex_state = 876}, - [2598] = {.lex_state = 876}, - [2599] = {.lex_state = 40}, - [2600] = {.lex_state = 40}, - [2601] = {.lex_state = 876}, - [2602] = {.lex_state = 876}, - [2603] = {.lex_state = 876}, - [2604] = {.lex_state = 876}, - [2605] = {.lex_state = 876}, - [2606] = {.lex_state = 876}, - [2607] = {.lex_state = 876}, - [2608] = {.lex_state = 876}, - [2609] = {.lex_state = 84}, - [2610] = {.lex_state = 876}, - [2611] = {.lex_state = 876}, - [2612] = {.lex_state = 876}, - [2613] = {.lex_state = 876}, - [2614] = {.lex_state = 876}, - [2615] = {.lex_state = 876}, - [2616] = {.lex_state = 876}, - [2617] = {.lex_state = 876}, - [2618] = {.lex_state = 876}, - [2619] = {.lex_state = 876}, - [2620] = {.lex_state = 876}, - [2621] = {.lex_state = 876}, - [2622] = {.lex_state = 876}, - [2623] = {.lex_state = 876}, - [2624] = {.lex_state = 96}, - [2625] = {.lex_state = 876}, - [2626] = {.lex_state = 876}, - [2627] = {.lex_state = 876}, - [2628] = {.lex_state = 876}, - [2629] = {.lex_state = 876}, - [2630] = {.lex_state = 876}, - [2631] = {.lex_state = 876}, - [2632] = {.lex_state = 876}, - [2633] = {.lex_state = 876}, - [2634] = {.lex_state = 876}, - [2635] = {.lex_state = 876}, - [2636] = {.lex_state = 876}, - [2637] = {.lex_state = 876}, - [2638] = {.lex_state = 876}, - [2639] = {.lex_state = 876}, - [2640] = {.lex_state = 876}, - [2641] = {.lex_state = 876}, - [2642] = {.lex_state = 876}, - [2643] = {.lex_state = 876}, - [2644] = {.lex_state = 876}, - [2645] = {.lex_state = 876}, - [2646] = {.lex_state = 876}, - [2647] = {.lex_state = 876, .external_lex_state = 5}, - [2648] = {.lex_state = 876}, - [2649] = {.lex_state = 876}, - [2650] = {.lex_state = 876}, - [2651] = {.lex_state = 876}, - [2652] = {.lex_state = 876}, - [2653] = {.lex_state = 876}, - [2654] = {.lex_state = 876}, - [2655] = {.lex_state = 876}, - [2656] = {.lex_state = 876}, - [2657] = {.lex_state = 876}, - [2658] = {.lex_state = 876}, - [2659] = {.lex_state = 876}, - [2660] = {.lex_state = 876}, - [2661] = {.lex_state = 876}, - [2662] = {.lex_state = 876}, - [2663] = {.lex_state = 876}, - [2664] = {.lex_state = 876}, - [2665] = {.lex_state = 23}, - [2666] = {.lex_state = 876}, - [2667] = {.lex_state = 876}, - [2668] = {.lex_state = 876}, - [2669] = {.lex_state = 40}, - [2670] = {.lex_state = 876}, - [2671] = {.lex_state = 876}, - [2672] = {.lex_state = 876}, - [2673] = {.lex_state = 876}, - [2674] = {.lex_state = 876}, - [2675] = {.lex_state = 876}, - [2676] = {.lex_state = 876}, - [2677] = {.lex_state = 876}, - [2678] = {.lex_state = 876}, - [2679] = {.lex_state = 876}, - [2680] = {.lex_state = 876}, - [2681] = {.lex_state = 876}, - [2682] = {.lex_state = 876}, - [2683] = {.lex_state = 876}, - [2684] = {.lex_state = 876}, - [2685] = {.lex_state = 876}, - [2686] = {.lex_state = 876}, - [2687] = {.lex_state = 876}, - [2688] = {.lex_state = 876}, - [2689] = {.lex_state = 51}, - [2690] = {.lex_state = 876}, - [2691] = {.lex_state = 876}, - [2692] = {.lex_state = 876}, - [2693] = {.lex_state = 876}, - [2694] = {.lex_state = 876}, - [2695] = {.lex_state = 876}, - [2696] = {.lex_state = 876}, - [2697] = {.lex_state = 876}, - [2698] = {.lex_state = 876}, - [2699] = {.lex_state = 876}, - [2700] = {.lex_state = 103}, - [2701] = {.lex_state = 876, .external_lex_state = 5}, - [2702] = {.lex_state = 876}, - [2703] = {.lex_state = 876}, - [2704] = {.lex_state = 876}, - [2705] = {.lex_state = 876}, - [2706] = {.lex_state = 876}, - [2707] = {.lex_state = 876, .external_lex_state = 5}, - [2708] = {.lex_state = 876}, - [2709] = {.lex_state = 876}, - [2710] = {.lex_state = 876}, - [2711] = {.lex_state = 876}, - [2712] = {.lex_state = 876}, - [2713] = {.lex_state = 876}, - [2714] = {.lex_state = 876}, - [2715] = {.lex_state = 876}, - [2716] = {.lex_state = 876}, - [2717] = {.lex_state = 876}, - [2718] = {.lex_state = 876}, - [2719] = {.lex_state = 103}, - [2720] = {.lex_state = 876}, - [2721] = {.lex_state = 103}, - [2722] = {.lex_state = 876}, - [2723] = {.lex_state = 876}, - [2724] = {.lex_state = 876}, - [2725] = {.lex_state = 96}, - [2726] = {.lex_state = 876}, - [2727] = {.lex_state = 876}, - [2728] = {.lex_state = 876}, - [2729] = {.lex_state = 876}, - [2730] = {.lex_state = 876}, - [2731] = {.lex_state = 876}, - [2732] = {.lex_state = 876}, - [2733] = {.lex_state = 876}, - [2734] = {.lex_state = 876}, - [2735] = {.lex_state = 876}, - [2736] = {.lex_state = 876}, - [2737] = {.lex_state = 876}, - [2738] = {.lex_state = 876}, - [2739] = {.lex_state = 876}, - [2740] = {.lex_state = 876}, - [2741] = {.lex_state = 876}, - [2742] = {.lex_state = 876}, - [2743] = {.lex_state = 876}, - [2744] = {.lex_state = 876}, - [2745] = {.lex_state = 876}, - [2746] = {.lex_state = 876}, - [2747] = {.lex_state = 103}, - [2748] = {.lex_state = 876}, - [2749] = {.lex_state = 103}, - [2750] = {.lex_state = 876}, - [2751] = {.lex_state = 876}, - [2752] = {.lex_state = 876}, - [2753] = {.lex_state = 876, .external_lex_state = 5}, - [2754] = {.lex_state = 876}, - [2755] = {.lex_state = 876}, - [2756] = {.lex_state = 876, .external_lex_state = 5}, - [2757] = {.lex_state = 876}, - [2758] = {.lex_state = 876}, - [2759] = {.lex_state = 876, .external_lex_state = 6}, - [2760] = {.lex_state = 103}, - [2761] = {.lex_state = 876}, - [2762] = {.lex_state = 876}, - [2763] = {.lex_state = 103}, - [2764] = {.lex_state = 876, .external_lex_state = 5}, - [2765] = {.lex_state = 876}, - [2766] = {.lex_state = 96}, - [2767] = {.lex_state = 876}, - [2768] = {.lex_state = 876}, - [2769] = {.lex_state = 876}, - [2770] = {.lex_state = 876}, - [2771] = {.lex_state = 876}, - [2772] = {.lex_state = 876}, - [2773] = {.lex_state = 876}, - [2774] = {.lex_state = 101}, - [2775] = {.lex_state = 876}, - [2776] = {.lex_state = 876}, - [2777] = {.lex_state = 876}, - [2778] = {.lex_state = 876}, - [2779] = {.lex_state = 876}, - [2780] = {.lex_state = 876}, - [2781] = {.lex_state = 876}, - [2782] = {.lex_state = 876}, - [2783] = {.lex_state = 876}, - [2784] = {.lex_state = 876, .external_lex_state = 5}, - [2785] = {.lex_state = 876}, - [2786] = {.lex_state = 876}, - [2787] = {.lex_state = 876, .external_lex_state = 5}, - [2788] = {.lex_state = 876}, - [2789] = {.lex_state = 876}, - [2790] = {.lex_state = 876}, - [2791] = {.lex_state = 876}, - [2792] = {.lex_state = 876}, - [2793] = {.lex_state = 876}, - [2794] = {.lex_state = 876}, - [2795] = {.lex_state = 876}, - [2796] = {.lex_state = 37}, - [2797] = {.lex_state = 876, .external_lex_state = 5}, - [2798] = {.lex_state = 876}, - [2799] = {.lex_state = 876}, - [2800] = {.lex_state = 876}, - [2801] = {.lex_state = 876}, - [2802] = {.lex_state = 876}, - [2803] = {.lex_state = 876}, - [2804] = {.lex_state = 876}, - [2805] = {.lex_state = 876}, - [2806] = {.lex_state = 876}, - [2807] = {.lex_state = 876}, - [2808] = {.lex_state = 876}, - [2809] = {.lex_state = 876, .external_lex_state = 5}, - [2810] = {.lex_state = 876}, - [2811] = {.lex_state = 876}, - [2812] = {.lex_state = 876}, - [2813] = {.lex_state = 876}, - [2814] = {.lex_state = 51}, - [2815] = {.lex_state = 876}, - [2816] = {.lex_state = 876}, - [2817] = {.lex_state = 876}, - [2818] = {.lex_state = 876}, - [2819] = {.lex_state = 876}, - [2820] = {.lex_state = 876}, - [2821] = {.lex_state = 876, .external_lex_state = 5}, - [2822] = {.lex_state = 876}, - [2823] = {.lex_state = 876}, - [2824] = {.lex_state = 876}, - [2825] = {.lex_state = 103}, - [2826] = {.lex_state = 876}, - [2827] = {.lex_state = 876}, - [2828] = {.lex_state = 876}, - [2829] = {.lex_state = 876}, - [2830] = {.lex_state = 103}, - [2831] = {.lex_state = 876, .external_lex_state = 5}, - [2832] = {.lex_state = 876}, - [2833] = {.lex_state = 876}, - [2834] = {.lex_state = 876, .external_lex_state = 6}, - [2835] = {.lex_state = 876}, - [2836] = {.lex_state = 103}, - [2837] = {.lex_state = 876}, - [2838] = {.lex_state = 876}, - [2839] = {.lex_state = 103}, - [2840] = {.lex_state = 876}, - [2841] = {.lex_state = 876}, - [2842] = {.lex_state = 876}, - [2843] = {.lex_state = 876}, - [2844] = {.lex_state = 876}, - [2845] = {.lex_state = 103}, - [2846] = {.lex_state = 876}, - [2847] = {.lex_state = 876}, - [2848] = {.lex_state = 876}, - [2849] = {.lex_state = 103}, - [2850] = {.lex_state = 876}, - [2851] = {.lex_state = 876}, - [2852] = {.lex_state = 876}, - [2853] = {.lex_state = 876}, - [2854] = {.lex_state = 876}, - [2855] = {.lex_state = 876}, - [2856] = {.lex_state = 876}, - [2857] = {.lex_state = 876}, - [2858] = {.lex_state = 876}, - [2859] = {.lex_state = 876}, - [2860] = {.lex_state = 876}, - [2861] = {.lex_state = 876}, - [2862] = {.lex_state = 876}, - [2863] = {.lex_state = 876}, - [2864] = {.lex_state = 876}, - [2865] = {.lex_state = 876}, - [2866] = {.lex_state = 876}, - [2867] = {.lex_state = 876}, - [2868] = {.lex_state = 876}, - [2869] = {.lex_state = 876}, - [2870] = {.lex_state = 876}, - [2871] = {.lex_state = 876}, - [2872] = {.lex_state = 876, .external_lex_state = 5}, - [2873] = {.lex_state = 876}, - [2874] = {.lex_state = 876}, - [2875] = {.lex_state = 876}, - [2876] = {.lex_state = 876}, - [2877] = {.lex_state = 876}, - [2878] = {.lex_state = 103}, - [2879] = {.lex_state = 876}, - [2880] = {.lex_state = 876}, - [2881] = {.lex_state = 876}, - [2882] = {.lex_state = 876}, - [2883] = {.lex_state = 876}, - [2884] = {.lex_state = 876, .external_lex_state = 5}, - [2885] = {.lex_state = 876}, - [2886] = {.lex_state = 876}, - [2887] = {.lex_state = 876}, - [2888] = {.lex_state = 876}, - [2889] = {.lex_state = 876}, - [2890] = {.lex_state = 876}, - [2891] = {.lex_state = 876}, - [2892] = {.lex_state = 876}, - [2893] = {.lex_state = 876}, - [2894] = {.lex_state = 876}, - [2895] = {.lex_state = 876}, - [2896] = {.lex_state = 876}, - [2897] = {.lex_state = 876}, - [2898] = {.lex_state = 876}, - [2899] = {.lex_state = 35}, - [2900] = {.lex_state = 103}, - [2901] = {.lex_state = 876}, - [2902] = {.lex_state = 876}, - [2903] = {.lex_state = 33}, - [2904] = {.lex_state = 35}, - [2905] = {.lex_state = 876, .external_lex_state = 7}, - [2906] = {.lex_state = 876}, - [2907] = {.lex_state = 33}, - [2908] = {.lex_state = 35}, - [2909] = {.lex_state = 33}, - [2910] = {.lex_state = 33}, - [2911] = {.lex_state = 35}, - [2912] = {.lex_state = 96}, - [2913] = {.lex_state = 876}, - [2914] = {.lex_state = 33}, - [2915] = {.lex_state = 35}, - [2916] = {.lex_state = 96}, - [2917] = {.lex_state = 33}, - [2918] = {.lex_state = 35}, - [2919] = {.lex_state = 33}, - [2920] = {.lex_state = 876, .external_lex_state = 5}, + [2561] = {.lex_state = 42}, + [2562] = {.lex_state = 882}, + [2563] = {.lex_state = 882}, + [2564] = {.lex_state = 882}, + [2565] = {.lex_state = 882}, + [2566] = {.lex_state = 882}, + [2567] = {.lex_state = 882}, + [2568] = {.lex_state = 882}, + [2569] = {.lex_state = 882}, + [2570] = {.lex_state = 89}, + [2571] = {.lex_state = 882}, + [2572] = {.lex_state = 882}, + [2573] = {.lex_state = 882}, + [2574] = {.lex_state = 102}, + [2575] = {.lex_state = 882}, + [2576] = {.lex_state = 882}, + [2577] = {.lex_state = 882}, + [2578] = {.lex_state = 882}, + [2579] = {.lex_state = 882}, + [2580] = {.lex_state = 882}, + [2581] = {.lex_state = 882}, + [2582] = {.lex_state = 882}, + [2583] = {.lex_state = 882}, + [2584] = {.lex_state = 882}, + [2585] = {.lex_state = 882}, + [2586] = {.lex_state = 882}, + [2587] = {.lex_state = 882}, + [2588] = {.lex_state = 882}, + [2589] = {.lex_state = 882}, + [2590] = {.lex_state = 882}, + [2591] = {.lex_state = 882}, + [2592] = {.lex_state = 882}, + [2593] = {.lex_state = 882}, + [2594] = {.lex_state = 882}, + [2595] = {.lex_state = 882}, + [2596] = {.lex_state = 882}, + [2597] = {.lex_state = 882}, + [2598] = {.lex_state = 882}, + [2599] = {.lex_state = 882}, + [2600] = {.lex_state = 882}, + [2601] = {.lex_state = 882}, + [2602] = {.lex_state = 882}, + [2603] = {.lex_state = 882}, + [2604] = {.lex_state = 882}, + [2605] = {.lex_state = 882}, + [2606] = {.lex_state = 882}, + [2607] = {.lex_state = 882}, + [2608] = {.lex_state = 23}, + [2609] = {.lex_state = 882}, + [2610] = {.lex_state = 89}, + [2611] = {.lex_state = 882}, + [2612] = {.lex_state = 882}, + [2613] = {.lex_state = 882}, + [2614] = {.lex_state = 882}, + [2615] = {.lex_state = 882}, + [2616] = {.lex_state = 882}, + [2617] = {.lex_state = 882}, + [2618] = {.lex_state = 882}, + [2619] = {.lex_state = 882}, + [2620] = {.lex_state = 882}, + [2621] = {.lex_state = 42}, + [2622] = {.lex_state = 23}, + [2623] = {.lex_state = 882}, + [2624] = {.lex_state = 882}, + [2625] = {.lex_state = 882, .external_lex_state = 5}, + [2626] = {.lex_state = 882}, + [2627] = {.lex_state = 882}, + [2628] = {.lex_state = 882}, + [2629] = {.lex_state = 882}, + [2630] = {.lex_state = 882}, + [2631] = {.lex_state = 102}, + [2632] = {.lex_state = 882}, + [2633] = {.lex_state = 882}, + [2634] = {.lex_state = 882}, + [2635] = {.lex_state = 882}, + [2636] = {.lex_state = 882}, + [2637] = {.lex_state = 882}, + [2638] = {.lex_state = 882}, + [2639] = {.lex_state = 882}, + [2640] = {.lex_state = 882}, + [2641] = {.lex_state = 882}, + [2642] = {.lex_state = 882}, + [2643] = {.lex_state = 882}, + [2644] = {.lex_state = 882}, + [2645] = {.lex_state = 882}, + [2646] = {.lex_state = 882}, + [2647] = {.lex_state = 882}, + [2648] = {.lex_state = 882}, + [2649] = {.lex_state = 882}, + [2650] = {.lex_state = 882}, + [2651] = {.lex_state = 882}, + [2652] = {.lex_state = 882}, + [2653] = {.lex_state = 882}, + [2654] = {.lex_state = 882}, + [2655] = {.lex_state = 882}, + [2656] = {.lex_state = 882}, + [2657] = {.lex_state = 882}, + [2658] = {.lex_state = 882}, + [2659] = {.lex_state = 882}, + [2660] = {.lex_state = 882}, + [2661] = {.lex_state = 882}, + [2662] = {.lex_state = 882}, + [2663] = {.lex_state = 882}, + [2664] = {.lex_state = 44}, + [2665] = {.lex_state = 882}, + [2666] = {.lex_state = 882}, + [2667] = {.lex_state = 882}, + [2668] = {.lex_state = 882}, + [2669] = {.lex_state = 882}, + [2670] = {.lex_state = 882}, + [2671] = {.lex_state = 882}, + [2672] = {.lex_state = 882}, + [2673] = {.lex_state = 882}, + [2674] = {.lex_state = 102}, + [2675] = {.lex_state = 882}, + [2676] = {.lex_state = 882}, + [2677] = {.lex_state = 882}, + [2678] = {.lex_state = 882}, + [2679] = {.lex_state = 882}, + [2680] = {.lex_state = 882}, + [2681] = {.lex_state = 882}, + [2682] = {.lex_state = 882}, + [2683] = {.lex_state = 882}, + [2684] = {.lex_state = 882}, + [2685] = {.lex_state = 882}, + [2686] = {.lex_state = 882}, + [2687] = {.lex_state = 882}, + [2688] = {.lex_state = 882}, + [2689] = {.lex_state = 882}, + [2690] = {.lex_state = 882}, + [2691] = {.lex_state = 56}, + [2692] = {.lex_state = 882}, + [2693] = {.lex_state = 882}, + [2694] = {.lex_state = 882, .external_lex_state = 5}, + [2695] = {.lex_state = 882}, + [2696] = {.lex_state = 882}, + [2697] = {.lex_state = 882}, + [2698] = {.lex_state = 882}, + [2699] = {.lex_state = 882}, + [2700] = {.lex_state = 882}, + [2701] = {.lex_state = 882}, + [2702] = {.lex_state = 882}, + [2703] = {.lex_state = 882}, + [2704] = {.lex_state = 882}, + [2705] = {.lex_state = 882}, + [2706] = {.lex_state = 882}, + [2707] = {.lex_state = 882}, + [2708] = {.lex_state = 882}, + [2709] = {.lex_state = 882}, + [2710] = {.lex_state = 882}, + [2711] = {.lex_state = 882}, + [2712] = {.lex_state = 882}, + [2713] = {.lex_state = 882}, + [2714] = {.lex_state = 882, .external_lex_state = 5}, + [2715] = {.lex_state = 882}, + [2716] = {.lex_state = 882, .external_lex_state = 5}, + [2717] = {.lex_state = 882}, + [2718] = {.lex_state = 882}, + [2719] = {.lex_state = 882}, + [2720] = {.lex_state = 882}, + [2721] = {.lex_state = 882}, + [2722] = {.lex_state = 882}, + [2723] = {.lex_state = 882}, + [2724] = {.lex_state = 882}, + [2725] = {.lex_state = 882}, + [2726] = {.lex_state = 109}, + [2727] = {.lex_state = 882}, + [2728] = {.lex_state = 882}, + [2729] = {.lex_state = 882}, + [2730] = {.lex_state = 882}, + [2731] = {.lex_state = 882}, + [2732] = {.lex_state = 882}, + [2733] = {.lex_state = 882}, + [2734] = {.lex_state = 882}, + [2735] = {.lex_state = 882}, + [2736] = {.lex_state = 882}, + [2737] = {.lex_state = 109}, + [2738] = {.lex_state = 882}, + [2739] = {.lex_state = 882}, + [2740] = {.lex_state = 882}, + [2741] = {.lex_state = 109}, + [2742] = {.lex_state = 882}, + [2743] = {.lex_state = 882}, + [2744] = {.lex_state = 882}, + [2745] = {.lex_state = 882}, + [2746] = {.lex_state = 882}, + [2747] = {.lex_state = 882, .external_lex_state = 5}, + [2748] = {.lex_state = 882}, + [2749] = {.lex_state = 882}, + [2750] = {.lex_state = 882}, + [2751] = {.lex_state = 882}, + [2752] = {.lex_state = 109}, + [2753] = {.lex_state = 882}, + [2754] = {.lex_state = 882}, + [2755] = {.lex_state = 882}, + [2756] = {.lex_state = 882}, + [2757] = {.lex_state = 882, .external_lex_state = 5}, + [2758] = {.lex_state = 882}, + [2759] = {.lex_state = 882}, + [2760] = {.lex_state = 882}, + [2761] = {.lex_state = 882}, + [2762] = {.lex_state = 109}, + [2763] = {.lex_state = 882}, + [2764] = {.lex_state = 882}, + [2765] = {.lex_state = 882}, + [2766] = {.lex_state = 882}, + [2767] = {.lex_state = 882}, + [2768] = {.lex_state = 882}, + [2769] = {.lex_state = 882}, + [2770] = {.lex_state = 882}, + [2771] = {.lex_state = 882}, + [2772] = {.lex_state = 882}, + [2773] = {.lex_state = 882}, + [2774] = {.lex_state = 882}, + [2775] = {.lex_state = 882}, + [2776] = {.lex_state = 882}, + [2777] = {.lex_state = 109}, + [2778] = {.lex_state = 882, .external_lex_state = 5}, + [2779] = {.lex_state = 882}, + [2780] = {.lex_state = 882}, + [2781] = {.lex_state = 882}, + [2782] = {.lex_state = 882}, + [2783] = {.lex_state = 882}, + [2784] = {.lex_state = 882}, + [2785] = {.lex_state = 882}, + [2786] = {.lex_state = 882}, + [2787] = {.lex_state = 882}, + [2788] = {.lex_state = 882}, + [2789] = {.lex_state = 882, .external_lex_state = 5}, + [2790] = {.lex_state = 102}, + [2791] = {.lex_state = 882}, + [2792] = {.lex_state = 882}, + [2793] = {.lex_state = 882}, + [2794] = {.lex_state = 882}, + [2795] = {.lex_state = 882}, + [2796] = {.lex_state = 882}, + [2797] = {.lex_state = 882}, + [2798] = {.lex_state = 882}, + [2799] = {.lex_state = 882}, + [2800] = {.lex_state = 882}, + [2801] = {.lex_state = 882}, + [2802] = {.lex_state = 882}, + [2803] = {.lex_state = 882}, + [2804] = {.lex_state = 882, .external_lex_state = 5}, + [2805] = {.lex_state = 882}, + [2806] = {.lex_state = 882}, + [2807] = {.lex_state = 882}, + [2808] = {.lex_state = 882}, + [2809] = {.lex_state = 882}, + [2810] = {.lex_state = 882}, + [2811] = {.lex_state = 882}, + [2812] = {.lex_state = 882}, + [2813] = {.lex_state = 882}, + [2814] = {.lex_state = 882}, + [2815] = {.lex_state = 882}, + [2816] = {.lex_state = 882}, + [2817] = {.lex_state = 882}, + [2818] = {.lex_state = 882}, + [2819] = {.lex_state = 882}, + [2820] = {.lex_state = 882}, + [2821] = {.lex_state = 882}, + [2822] = {.lex_state = 882}, + [2823] = {.lex_state = 56}, + [2824] = {.lex_state = 882}, + [2825] = {.lex_state = 882, .external_lex_state = 5}, + [2826] = {.lex_state = 882}, + [2827] = {.lex_state = 882}, + [2828] = {.lex_state = 109}, + [2829] = {.lex_state = 882}, + [2830] = {.lex_state = 882}, + [2831] = {.lex_state = 882, .external_lex_state = 5}, + [2832] = {.lex_state = 882}, + [2833] = {.lex_state = 882}, + [2834] = {.lex_state = 882}, + [2835] = {.lex_state = 882}, + [2836] = {.lex_state = 882}, + [2837] = {.lex_state = 882}, + [2838] = {.lex_state = 882}, + [2839] = {.lex_state = 882}, + [2840] = {.lex_state = 882}, + [2841] = {.lex_state = 882}, + [2842] = {.lex_state = 882, .external_lex_state = 6}, + [2843] = {.lex_state = 882}, + [2844] = {.lex_state = 882}, + [2845] = {.lex_state = 882}, + [2846] = {.lex_state = 882}, + [2847] = {.lex_state = 882}, + [2848] = {.lex_state = 109}, + [2849] = {.lex_state = 882}, + [2850] = {.lex_state = 882}, + [2851] = {.lex_state = 882, .external_lex_state = 5}, + [2852] = {.lex_state = 882}, + [2853] = {.lex_state = 882}, + [2854] = {.lex_state = 882}, + [2855] = {.lex_state = 882}, + [2856] = {.lex_state = 882}, + [2857] = {.lex_state = 882}, + [2858] = {.lex_state = 882}, + [2859] = {.lex_state = 882}, + [2860] = {.lex_state = 882}, + [2861] = {.lex_state = 882, .external_lex_state = 5}, + [2862] = {.lex_state = 882}, + [2863] = {.lex_state = 882}, + [2864] = {.lex_state = 882}, + [2865] = {.lex_state = 882}, + [2866] = {.lex_state = 882}, + [2867] = {.lex_state = 882}, + [2868] = {.lex_state = 882}, + [2869] = {.lex_state = 882}, + [2870] = {.lex_state = 882}, + [2871] = {.lex_state = 109}, + [2872] = {.lex_state = 882}, + [2873] = {.lex_state = 882}, + [2874] = {.lex_state = 882}, + [2875] = {.lex_state = 882}, + [2876] = {.lex_state = 882}, + [2877] = {.lex_state = 109}, + [2878] = {.lex_state = 882}, + [2879] = {.lex_state = 39}, + [2880] = {.lex_state = 882}, + [2881] = {.lex_state = 882}, + [2882] = {.lex_state = 882}, + [2883] = {.lex_state = 882}, + [2884] = {.lex_state = 882}, + [2885] = {.lex_state = 882}, + [2886] = {.lex_state = 882, .external_lex_state = 5}, + [2887] = {.lex_state = 109}, + [2888] = {.lex_state = 882}, + [2889] = {.lex_state = 882}, + [2890] = {.lex_state = 882}, + [2891] = {.lex_state = 109}, + [2892] = {.lex_state = 882}, + [2893] = {.lex_state = 882}, + [2894] = {.lex_state = 882, .external_lex_state = 5}, + [2895] = {.lex_state = 882}, + [2896] = {.lex_state = 882}, + [2897] = {.lex_state = 882}, + [2898] = {.lex_state = 109}, + [2899] = {.lex_state = 882}, + [2900] = {.lex_state = 882}, + [2901] = {.lex_state = 882}, + [2902] = {.lex_state = 882}, + [2903] = {.lex_state = 882}, + [2904] = {.lex_state = 882}, + [2905] = {.lex_state = 109}, + [2906] = {.lex_state = 882}, + [2907] = {.lex_state = 882}, + [2908] = {.lex_state = 882}, + [2909] = {.lex_state = 882, .external_lex_state = 6}, + [2910] = {.lex_state = 882}, + [2911] = {.lex_state = 102}, + [2912] = {.lex_state = 107}, + [2913] = {.lex_state = 882}, + [2914] = {.lex_state = 882}, + [2915] = {.lex_state = 882}, + [2916] = {.lex_state = 882}, + [2917] = {.lex_state = 882}, + [2918] = {.lex_state = 102}, + [2919] = {.lex_state = 37}, + [2920] = {.lex_state = 35}, [2921] = {.lex_state = 35}, - [2922] = {.lex_state = 33}, - [2923] = {.lex_state = 876}, - [2924] = {.lex_state = 876}, - [2925] = {.lex_state = 33}, - [2926] = {.lex_state = 876}, - [2927] = {.lex_state = 33}, - [2928] = {.lex_state = 876}, - [2929] = {.lex_state = 876}, - [2930] = {.lex_state = 876}, - [2931] = {.lex_state = 876}, - [2932] = {.lex_state = 23}, - [2933] = {.lex_state = 23}, + [2922] = {.lex_state = 37}, + [2923] = {.lex_state = 882}, + [2924] = {.lex_state = 37}, + [2925] = {.lex_state = 35}, + [2926] = {.lex_state = 882}, + [2927] = {.lex_state = 882}, + [2928] = {.lex_state = 109}, + [2929] = {.lex_state = 882}, + [2930] = {.lex_state = 55}, + [2931] = {.lex_state = 109}, + [2932] = {.lex_state = 35}, + [2933] = {.lex_state = 882}, [2934] = {.lex_state = 23}, - [2935] = {.lex_state = 876}, - [2936] = {.lex_state = 23}, - [2937] = {.lex_state = 876}, - [2938] = {.lex_state = 100}, - [2939] = {.lex_state = 876}, - [2940] = {.lex_state = 35}, - [2941] = {.lex_state = 33}, - [2942] = {.lex_state = 876}, - [2943] = {.lex_state = 876}, - [2944] = {.lex_state = 33}, - [2945] = {.lex_state = 876}, - [2946] = {.lex_state = 35}, - [2947] = {.lex_state = 85}, - [2948] = {.lex_state = 876}, - [2949] = {.lex_state = 876}, - [2950] = {.lex_state = 876}, - [2951] = {.lex_state = 876}, - [2952] = {.lex_state = 876}, - [2953] = {.lex_state = 100}, - [2954] = {.lex_state = 876, .external_lex_state = 7}, - [2955] = {.lex_state = 876}, - [2956] = {.lex_state = 876}, - [2957] = {.lex_state = 876}, - [2958] = {.lex_state = 876}, + [2935] = {.lex_state = 882}, + [2936] = {.lex_state = 882, .external_lex_state = 5}, + [2937] = {.lex_state = 882}, + [2938] = {.lex_state = 106}, + [2939] = {.lex_state = 23}, + [2940] = {.lex_state = 106}, + [2941] = {.lex_state = 882}, + [2942] = {.lex_state = 91}, + [2943] = {.lex_state = 882}, + [2944] = {.lex_state = 882}, + [2945] = {.lex_state = 55}, + [2946] = {.lex_state = 882}, + [2947] = {.lex_state = 37}, + [2948] = {.lex_state = 35}, + [2949] = {.lex_state = 35}, + [2950] = {.lex_state = 882}, + [2951] = {.lex_state = 882}, + [2952] = {.lex_state = 882}, + [2953] = {.lex_state = 882}, + [2954] = {.lex_state = 882}, + [2955] = {.lex_state = 882}, + [2956] = {.lex_state = 882}, + [2957] = {.lex_state = 35}, + [2958] = {.lex_state = 37}, [2959] = {.lex_state = 35}, - [2960] = {.lex_state = 876}, - [2961] = {.lex_state = 876}, - [2962] = {.lex_state = 876}, - [2963] = {.lex_state = 876}, - [2964] = {.lex_state = 85}, - [2965] = {.lex_state = 100}, - [2966] = {.lex_state = 41}, - [2967] = {.lex_state = 100}, - [2968] = {.lex_state = 100}, - [2969] = {.lex_state = 876}, - [2970] = {.lex_state = 876}, - [2971] = {.lex_state = 41}, - [2972] = {.lex_state = 96}, - [2973] = {.lex_state = 41}, + [2960] = {.lex_state = 882}, + [2961] = {.lex_state = 37}, + [2962] = {.lex_state = 55}, + [2963] = {.lex_state = 882}, + [2964] = {.lex_state = 882, .external_lex_state = 5}, + [2965] = {.lex_state = 37}, + [2966] = {.lex_state = 35}, + [2967] = {.lex_state = 882, .external_lex_state = 7}, + [2968] = {.lex_state = 882}, + [2969] = {.lex_state = 23}, + [2970] = {.lex_state = 882}, + [2971] = {.lex_state = 882}, + [2972] = {.lex_state = 23}, + [2973] = {.lex_state = 35}, [2974] = {.lex_state = 23}, - [2975] = {.lex_state = 876}, - [2976] = {.lex_state = 50}, - [2977] = {.lex_state = 876}, - [2978] = {.lex_state = 23}, - [2979] = {.lex_state = 876}, - [2980] = {.lex_state = 876}, - [2981] = {.lex_state = 23}, - [2982] = {.lex_state = 876}, - [2983] = {.lex_state = 35}, - [2984] = {.lex_state = 33}, - [2985] = {.lex_state = 23}, - [2986] = {.lex_state = 50}, - [2987] = {.lex_state = 876}, - [2988] = {.lex_state = 876}, - [2989] = {.lex_state = 35}, - [2990] = {.lex_state = 876}, - [2991] = {.lex_state = 33}, - [2992] = {.lex_state = 876}, - [2993] = {.lex_state = 85}, - [2994] = {.lex_state = 876}, - [2995] = {.lex_state = 876}, - [2996] = {.lex_state = 876}, - [2997] = {.lex_state = 50}, - [2998] = {.lex_state = 103}, - [2999] = {.lex_state = 876}, - [3000] = {.lex_state = 103}, - [3001] = {.lex_state = 876}, - [3002] = {.lex_state = 33}, - [3003] = {.lex_state = 50}, - [3004] = {.lex_state = 35}, - [3005] = {.lex_state = 100}, - [3006] = {.lex_state = 876}, - [3007] = {.lex_state = 876}, - [3008] = {.lex_state = 876}, - [3009] = {.lex_state = 33}, - [3010] = {.lex_state = 876}, - [3011] = {.lex_state = 35}, - [3012] = {.lex_state = 876, .external_lex_state = 5}, - [3013] = {.lex_state = 876}, - [3014] = {.lex_state = 876}, - [3015] = {.lex_state = 103}, - [3016] = {.lex_state = 33}, - [3017] = {.lex_state = 35}, - [3018] = {.lex_state = 876}, - [3019] = {.lex_state = 876}, - [3020] = {.lex_state = 103}, - [3021] = {.lex_state = 35}, - [3022] = {.lex_state = 33}, - [3023] = {.lex_state = 50}, - [3024] = {.lex_state = 103}, - [3025] = {.lex_state = 103}, + [2975] = {.lex_state = 882}, + [2976] = {.lex_state = 23}, + [2977] = {.lex_state = 882}, + [2978] = {.lex_state = 106}, + [2979] = {.lex_state = 882}, + [2980] = {.lex_state = 882}, + [2981] = {.lex_state = 35}, + [2982] = {.lex_state = 882}, + [2983] = {.lex_state = 882}, + [2984] = {.lex_state = 882}, + [2985] = {.lex_state = 882}, + [2986] = {.lex_state = 37}, + [2987] = {.lex_state = 882}, + [2988] = {.lex_state = 35}, + [2989] = {.lex_state = 106}, + [2990] = {.lex_state = 882}, + [2991] = {.lex_state = 109}, + [2992] = {.lex_state = 37}, + [2993] = {.lex_state = 37}, + [2994] = {.lex_state = 882}, + [2995] = {.lex_state = 882}, + [2996] = {.lex_state = 35}, + [2997] = {.lex_state = 106}, + [2998] = {.lex_state = 37}, + [2999] = {.lex_state = 882}, + [3000] = {.lex_state = 35}, + [3001] = {.lex_state = 882}, + [3002] = {.lex_state = 882}, + [3003] = {.lex_state = 102}, + [3004] = {.lex_state = 882}, + [3005] = {.lex_state = 106}, + [3006] = {.lex_state = 106}, + [3007] = {.lex_state = 102}, + [3008] = {.lex_state = 37}, + [3009] = {.lex_state = 882}, + [3010] = {.lex_state = 35}, + [3011] = {.lex_state = 37}, + [3012] = {.lex_state = 109}, + [3013] = {.lex_state = 882}, + [3014] = {.lex_state = 37}, + [3015] = {.lex_state = 55}, + [3016] = {.lex_state = 37}, + [3017] = {.lex_state = 23}, + [3018] = {.lex_state = 882}, + [3019] = {.lex_state = 109}, + [3020] = {.lex_state = 882}, + [3021] = {.lex_state = 43}, + [3022] = {.lex_state = 43}, + [3023] = {.lex_state = 882, .external_lex_state = 7}, + [3024] = {.lex_state = 91}, + [3025] = {.lex_state = 882}, [3026] = {.lex_state = 35}, - [3027] = {.lex_state = 33}, - [3028] = {.lex_state = 103}, - [3029] = {.lex_state = 876}, - [3030] = {.lex_state = 876}, - [3031] = {.lex_state = 876}, - [3032] = {.lex_state = 876}, - [3033] = {.lex_state = 876}, - [3034] = {.lex_state = 100}, - [3035] = {.lex_state = 876}, - [3036] = {.lex_state = 876}, - [3037] = {.lex_state = 876}, - [3038] = {.lex_state = 876}, - [3039] = {.lex_state = 876}, - [3040] = {.lex_state = 876}, - [3041] = {.lex_state = 876}, - [3042] = {.lex_state = 102}, - [3043] = {.lex_state = 876}, - [3044] = {.lex_state = 876, .external_lex_state = 5}, - [3045] = {.lex_state = 876, .external_lex_state = 5}, - [3046] = {.lex_state = 876, .external_lex_state = 5}, - [3047] = {.lex_state = 876, .external_lex_state = 5}, - [3048] = {.lex_state = 21}, - [3049] = {.lex_state = 876}, - [3050] = {.lex_state = 876}, - [3051] = {.lex_state = 876}, - [3052] = {.lex_state = 98}, - [3053] = {.lex_state = 876}, - [3054] = {.lex_state = 34}, - [3055] = {.lex_state = 876}, - [3056] = {.lex_state = 876}, - [3057] = {.lex_state = 876}, - [3058] = {.lex_state = 876}, - [3059] = {.lex_state = 876}, - [3060] = {.lex_state = 876}, - [3061] = {.lex_state = 876}, - [3062] = {.lex_state = 876}, - [3063] = {.lex_state = 876}, - [3064] = {.lex_state = 876}, - [3065] = {.lex_state = 876}, - [3066] = {.lex_state = 876}, - [3067] = {.lex_state = 876}, - [3068] = {.lex_state = 876}, - [3069] = {.lex_state = 876, .external_lex_state = 5}, - [3070] = {.lex_state = 876}, - [3071] = {.lex_state = 876}, - [3072] = {.lex_state = 876}, - [3073] = {.lex_state = 21}, - [3074] = {.lex_state = 98}, - [3075] = {.lex_state = 876}, - [3076] = {.lex_state = 23}, - [3077] = {.lex_state = 876}, - [3078] = {.lex_state = 102}, - [3079] = {.lex_state = 876}, - [3080] = {.lex_state = 876}, - [3081] = {.lex_state = 38}, - [3082] = {.lex_state = 876}, - [3083] = {.lex_state = 876}, - [3084] = {.lex_state = 876}, - [3085] = {.lex_state = 876}, - [3086] = {.lex_state = 876}, - [3087] = {.lex_state = 876}, - [3088] = {.lex_state = 876}, - [3089] = {.lex_state = 876}, - [3090] = {.lex_state = 102}, - [3091] = {.lex_state = 876}, - [3092] = {.lex_state = 876}, - [3093] = {.lex_state = 876}, - [3094] = {.lex_state = 876}, - [3095] = {.lex_state = 876}, - [3096] = {.lex_state = 876, .external_lex_state = 5}, - [3097] = {.lex_state = 876}, - [3098] = {.lex_state = 876}, - [3099] = {.lex_state = 876}, - [3100] = {.lex_state = 876}, - [3101] = {.lex_state = 876}, - [3102] = {.lex_state = 876}, - [3103] = {.lex_state = 876}, - [3104] = {.lex_state = 876}, - [3105] = {.lex_state = 876}, - [3106] = {.lex_state = 51}, - [3107] = {.lex_state = 876}, - [3108] = {.lex_state = 21}, - [3109] = {.lex_state = 876, .external_lex_state = 5}, - [3110] = {.lex_state = 876}, - [3111] = {.lex_state = 876, .external_lex_state = 5}, - [3112] = {.lex_state = 876}, - [3113] = {.lex_state = 21}, - [3114] = {.lex_state = 876}, - [3115] = {.lex_state = 876}, - [3116] = {.lex_state = 876}, - [3117] = {.lex_state = 876}, - [3118] = {.lex_state = 102}, - [3119] = {.lex_state = 21}, - [3120] = {.lex_state = 21}, - [3121] = {.lex_state = 876}, - [3122] = {.lex_state = 876}, - [3123] = {.lex_state = 876}, - [3124] = {.lex_state = 876}, - [3125] = {.lex_state = 23}, - [3126] = {.lex_state = 876}, - [3127] = {.lex_state = 102}, - [3128] = {.lex_state = 23, .external_lex_state = 5}, - [3129] = {.lex_state = 876, .external_lex_state = 5}, - [3130] = {.lex_state = 102}, - [3131] = {.lex_state = 876}, - [3132] = {.lex_state = 876}, - [3133] = {.lex_state = 876}, - [3134] = {.lex_state = 876}, - [3135] = {.lex_state = 876}, - [3136] = {.lex_state = 876}, - [3137] = {.lex_state = 876}, - [3138] = {.lex_state = 876}, - [3139] = {.lex_state = 876, .external_lex_state = 5}, - [3140] = {.lex_state = 876, .external_lex_state = 5}, - [3141] = {.lex_state = 23, .external_lex_state = 5}, - [3142] = {.lex_state = 876}, - [3143] = {.lex_state = 876}, - [3144] = {.lex_state = 876}, - [3145] = {.lex_state = 876}, - [3146] = {.lex_state = 876}, - [3147] = {.lex_state = 876}, - [3148] = {.lex_state = 876}, - [3149] = {.lex_state = 876}, - [3150] = {.lex_state = 876}, - [3151] = {.lex_state = 876}, - [3152] = {.lex_state = 876}, - [3153] = {.lex_state = 876}, - [3154] = {.lex_state = 876}, - [3155] = {.lex_state = 876}, - [3156] = {.lex_state = 876, .external_lex_state = 5}, - [3157] = {.lex_state = 23}, - [3158] = {.lex_state = 876}, - [3159] = {.lex_state = 876}, - [3160] = {.lex_state = 876}, - [3161] = {.lex_state = 876}, - [3162] = {.lex_state = 876}, - [3163] = {.lex_state = 876}, - [3164] = {.lex_state = 876}, - [3165] = {.lex_state = 876}, - [3166] = {.lex_state = 876}, - [3167] = {.lex_state = 876}, - [3168] = {.lex_state = 876, .external_lex_state = 5}, - [3169] = {.lex_state = 876}, - [3170] = {.lex_state = 876}, - [3171] = {.lex_state = 876}, - [3172] = {.lex_state = 876}, - [3173] = {.lex_state = 876}, - [3174] = {.lex_state = 876}, - [3175] = {.lex_state = 876}, - [3176] = {.lex_state = 34}, - [3177] = {.lex_state = 876}, - [3178] = {.lex_state = 876}, - [3179] = {.lex_state = 876}, - [3180] = {.lex_state = 876}, - [3181] = {.lex_state = 876}, - [3182] = {.lex_state = 876}, - [3183] = {.lex_state = 876}, - [3184] = {.lex_state = 876}, - [3185] = {.lex_state = 876}, - [3186] = {.lex_state = 876}, - [3187] = {.lex_state = 876}, - [3188] = {.lex_state = 876}, - [3189] = {.lex_state = 876}, - [3190] = {.lex_state = 876}, - [3191] = {.lex_state = 876}, - [3192] = {.lex_state = 876}, - [3193] = {.lex_state = 876}, - [3194] = {.lex_state = 876, .external_lex_state = 5}, - [3195] = {.lex_state = 876}, - [3196] = {.lex_state = 876}, - [3197] = {.lex_state = 876}, - [3198] = {.lex_state = 876}, - [3199] = {.lex_state = 876}, - [3200] = {.lex_state = 876}, - [3201] = {.lex_state = 876}, - [3202] = {.lex_state = 876, .external_lex_state = 5}, - [3203] = {.lex_state = 876}, - [3204] = {.lex_state = 876}, - [3205] = {.lex_state = 876}, - [3206] = {.lex_state = 876}, - [3207] = {.lex_state = 876}, - [3208] = {.lex_state = 876}, - [3209] = {.lex_state = 876}, - [3210] = {.lex_state = 876}, - [3211] = {.lex_state = 876}, - [3212] = {.lex_state = 876}, - [3213] = {.lex_state = 876}, - [3214] = {.lex_state = 876}, - [3215] = {.lex_state = 876}, - [3216] = {.lex_state = 95}, - [3217] = {.lex_state = 876}, - [3218] = {.lex_state = 876}, - [3219] = {.lex_state = 876}, - [3220] = {.lex_state = 876}, - [3221] = {.lex_state = 876}, - [3222] = {.lex_state = 876}, - [3223] = {.lex_state = 876}, - [3224] = {.lex_state = 876}, - [3225] = {.lex_state = 876}, - [3226] = {.lex_state = 876}, - [3227] = {.lex_state = 876}, - [3228] = {.lex_state = 876}, - [3229] = {.lex_state = 876}, - [3230] = {.lex_state = 876}, - [3231] = {.lex_state = 876}, - [3232] = {.lex_state = 876}, - [3233] = {.lex_state = 876, .external_lex_state = 5}, - [3234] = {.lex_state = 876}, - [3235] = {.lex_state = 876}, - [3236] = {.lex_state = 876}, - [3237] = {.lex_state = 876}, - [3238] = {.lex_state = 876}, - [3239] = {.lex_state = 876}, - [3240] = {.lex_state = 876}, - [3241] = {.lex_state = 876}, - [3242] = {.lex_state = 876}, - [3243] = {.lex_state = 876}, - [3244] = {.lex_state = 876}, - [3245] = {.lex_state = 876}, - [3246] = {.lex_state = 876}, - [3247] = {.lex_state = 876}, - [3248] = {.lex_state = 876}, - [3249] = {.lex_state = 876}, - [3250] = {.lex_state = 876}, - [3251] = {.lex_state = 876}, - [3252] = {.lex_state = 876}, - [3253] = {.lex_state = 876}, - [3254] = {.lex_state = 876}, - [3255] = {.lex_state = 876}, - [3256] = {.lex_state = 876}, - [3257] = {.lex_state = 876}, - [3258] = {.lex_state = 21}, - [3259] = {.lex_state = 876}, - [3260] = {.lex_state = 876}, - [3261] = {.lex_state = 876}, - [3262] = {.lex_state = 876}, - [3263] = {.lex_state = 876}, - [3264] = {.lex_state = 876}, - [3265] = {.lex_state = 876}, - [3266] = {.lex_state = 876}, - [3267] = {.lex_state = 876}, - [3268] = {.lex_state = 876}, - [3269] = {.lex_state = 876}, - [3270] = {.lex_state = 876}, - [3271] = {.lex_state = 876}, - [3272] = {.lex_state = 876}, - [3273] = {.lex_state = 876}, - [3274] = {.lex_state = 876}, - [3275] = {.lex_state = 876}, - [3276] = {.lex_state = 876}, - [3277] = {.lex_state = 876}, - [3278] = {.lex_state = 876}, - [3279] = {.lex_state = 876}, - [3280] = {.lex_state = 876}, - [3281] = {.lex_state = 876}, - [3282] = {.lex_state = 876}, - [3283] = {.lex_state = 876, .external_lex_state = 5}, - [3284] = {.lex_state = 876}, - [3285] = {.lex_state = 876}, - [3286] = {.lex_state = 876}, - [3287] = {.lex_state = 876}, - [3288] = {.lex_state = 876}, - [3289] = {.lex_state = 876}, - [3290] = {.lex_state = 876}, - [3291] = {.lex_state = 876}, - [3292] = {.lex_state = 876}, - [3293] = {.lex_state = 876}, - [3294] = {.lex_state = 876}, - [3295] = {.lex_state = 876}, - [3296] = {.lex_state = 876}, - [3297] = {.lex_state = 876}, - [3298] = {.lex_state = 876}, - [3299] = {.lex_state = 876}, - [3300] = {.lex_state = 23}, - [3301] = {.lex_state = 876, .external_lex_state = 5}, - [3302] = {.lex_state = 876}, - [3303] = {.lex_state = 876}, - [3304] = {.lex_state = 98}, - [3305] = {.lex_state = 876}, - [3306] = {.lex_state = 23}, - [3307] = {.lex_state = 876}, - [3308] = {.lex_state = 876}, - [3309] = {.lex_state = 876}, - [3310] = {.lex_state = 21}, - [3311] = {.lex_state = 876}, - [3312] = {.lex_state = 876}, - [3313] = {.lex_state = 876}, - [3314] = {.lex_state = 876}, - [3315] = {.lex_state = 876}, - [3316] = {.lex_state = 876}, - [3317] = {.lex_state = 876}, - [3318] = {.lex_state = 876}, - [3319] = {.lex_state = 876}, - [3320] = {.lex_state = 102}, - [3321] = {.lex_state = 876}, - [3322] = {.lex_state = 876}, - [3323] = {.lex_state = 876}, - [3324] = {.lex_state = 876}, - [3325] = {.lex_state = 38}, - [3326] = {.lex_state = 876}, - [3327] = {.lex_state = 876}, - [3328] = {.lex_state = 876}, - [3329] = {.lex_state = 876}, - [3330] = {.lex_state = 23}, - [3331] = {.lex_state = 21}, - [3332] = {.lex_state = 876}, - [3333] = {.lex_state = 876}, - [3334] = {.lex_state = 876}, - [3335] = {.lex_state = 876}, - [3336] = {.lex_state = 876}, - [3337] = {.lex_state = 876}, - [3338] = {.lex_state = 876}, - [3339] = {.lex_state = 876}, - [3340] = {.lex_state = 876}, - [3341] = {.lex_state = 876}, - [3342] = {.lex_state = 876}, - [3343] = {.lex_state = 876}, - [3344] = {.lex_state = 876}, - [3345] = {.lex_state = 876}, - [3346] = {.lex_state = 23}, - [3347] = {.lex_state = 102}, - [3348] = {.lex_state = 23}, - [3349] = {.lex_state = 876}, - [3350] = {.lex_state = 876}, - [3351] = {.lex_state = 876}, - [3352] = {.lex_state = 876, .external_lex_state = 5}, - [3353] = {.lex_state = 876}, - [3354] = {.lex_state = 876}, - [3355] = {.lex_state = 23, .external_lex_state = 5}, - [3356] = {.lex_state = 876}, - [3357] = {.lex_state = 34}, - [3358] = {.lex_state = 876}, - [3359] = {.lex_state = 876, .external_lex_state = 5}, - [3360] = {.lex_state = 876, .external_lex_state = 5}, - [3361] = {.lex_state = 876}, - [3362] = {.lex_state = 34}, - [3363] = {.lex_state = 876, .external_lex_state = 5}, - [3364] = {.lex_state = 876}, - [3365] = {.lex_state = 876, .external_lex_state = 5}, - [3366] = {.lex_state = 34}, - [3367] = {.lex_state = 876}, - [3368] = {.lex_state = 876}, - [3369] = {.lex_state = 34}, - [3370] = {.lex_state = 876}, - [3371] = {.lex_state = 876, .external_lex_state = 5}, - [3372] = {.lex_state = 876}, - [3373] = {.lex_state = 876}, - [3374] = {.lex_state = 876}, - [3375] = {.lex_state = 876}, - [3376] = {.lex_state = 876}, - [3377] = {.lex_state = 876}, - [3378] = {.lex_state = 876}, - [3379] = {.lex_state = 876}, - [3380] = {.lex_state = 876}, - [3381] = {.lex_state = 876}, - [3382] = {.lex_state = 876}, - [3383] = {.lex_state = 876}, - [3384] = {.lex_state = 876}, - [3385] = {.lex_state = 876}, - [3386] = {.lex_state = 876, .external_lex_state = 5}, - [3387] = {.lex_state = 876}, - [3388] = {.lex_state = 23}, - [3389] = {.lex_state = 876}, - [3390] = {.lex_state = 876}, - [3391] = {.lex_state = 876, .external_lex_state = 5}, - [3392] = {.lex_state = 876}, - [3393] = {.lex_state = 876}, - [3394] = {.lex_state = 38}, - [3395] = {.lex_state = 876}, - [3396] = {.lex_state = 876}, - [3397] = {.lex_state = 876}, - [3398] = {.lex_state = 876}, - [3399] = {.lex_state = 876}, - [3400] = {.lex_state = 876}, - [3401] = {.lex_state = 876}, - [3402] = {.lex_state = 38}, - [3403] = {.lex_state = 876}, - [3404] = {.lex_state = 876}, - [3405] = {.lex_state = 876}, - [3406] = {.lex_state = 876}, - [3407] = {.lex_state = 876}, - [3408] = {.lex_state = 876}, - [3409] = {.lex_state = 876}, - [3410] = {.lex_state = 876}, - [3411] = {.lex_state = 876}, - [3412] = {.lex_state = 876}, - [3413] = {.lex_state = 876}, - [3414] = {.lex_state = 876}, - [3415] = {.lex_state = 876}, - [3416] = {.lex_state = 876}, - [3417] = {.lex_state = 876}, - [3418] = {.lex_state = 876}, - [3419] = {.lex_state = 876}, - [3420] = {.lex_state = 876}, - [3421] = {.lex_state = 876}, - [3422] = {.lex_state = 876}, - [3423] = {.lex_state = 876, .external_lex_state = 5}, - [3424] = {.lex_state = 876, .external_lex_state = 5}, - [3425] = {.lex_state = 876}, - [3426] = {.lex_state = 23}, - [3427] = {.lex_state = 876}, - [3428] = {.lex_state = 876}, - [3429] = {.lex_state = 876}, - [3430] = {.lex_state = 876}, - [3431] = {.lex_state = 23}, - [3432] = {.lex_state = 876, .external_lex_state = 5}, - [3433] = {.lex_state = 876, .external_lex_state = 5}, - [3434] = {.lex_state = 876}, - [3435] = {.lex_state = 876}, - [3436] = {.lex_state = 876}, - [3437] = {.lex_state = 21}, - [3438] = {.lex_state = 876}, - [3439] = {.lex_state = 876}, - [3440] = {.lex_state = 98}, - [3441] = {.lex_state = 876}, - [3442] = {.lex_state = 876}, - [3443] = {.lex_state = 876}, - [3444] = {.lex_state = 876}, - [3445] = {.lex_state = 102}, - [3446] = {.lex_state = 876}, - [3447] = {.lex_state = 876}, - [3448] = {.lex_state = 21}, - [3449] = {.lex_state = 23}, - [3450] = {.lex_state = 38}, - [3451] = {.lex_state = 876}, - [3452] = {.lex_state = 876}, - [3453] = {.lex_state = 876}, - [3454] = {.lex_state = 876}, - [3455] = {.lex_state = 876}, - [3456] = {.lex_state = 876}, - [3457] = {.lex_state = 876}, - [3458] = {.lex_state = 876}, - [3459] = {.lex_state = 876}, - [3460] = {.lex_state = 102}, - [3461] = {.lex_state = 876}, - [3462] = {.lex_state = 23}, - [3463] = {.lex_state = 876, .external_lex_state = 5}, - [3464] = {.lex_state = 876}, - [3465] = {.lex_state = 876}, - [3466] = {.lex_state = 876}, - [3467] = {.lex_state = 876}, - [3468] = {.lex_state = 876}, - [3469] = {.lex_state = 876}, - [3470] = {.lex_state = 35}, - [3471] = {.lex_state = 876}, - [3472] = {.lex_state = 876}, - [3473] = {.lex_state = 33}, - [3474] = {.lex_state = 876}, - [3475] = {.lex_state = 876}, - [3476] = {.lex_state = 876, .external_lex_state = 5}, - [3477] = {.lex_state = 23}, - [3478] = {.lex_state = 876, .external_lex_state = 7}, - [3479] = {.lex_state = 876}, - [3480] = {.lex_state = 98}, - [3481] = {.lex_state = 876}, - [3482] = {.lex_state = 876}, - [3483] = {.lex_state = 34}, - [3484] = {.lex_state = 23}, - [3485] = {.lex_state = 876}, - [3486] = {.lex_state = 876}, - [3487] = {.lex_state = 83}, - [3488] = {.lex_state = 876}, - [3489] = {.lex_state = 876, .external_lex_state = 5}, - [3490] = {.lex_state = 876}, - [3491] = {.lex_state = 876}, - [3492] = {.lex_state = 95}, - [3493] = {.lex_state = 876}, - [3494] = {.lex_state = 876}, - [3495] = {.lex_state = 876}, - [3496] = {.lex_state = 876}, - [3497] = {.lex_state = 876}, - [3498] = {.lex_state = 876}, - [3499] = {.lex_state = 876}, - [3500] = {.lex_state = 38}, - [3501] = {.lex_state = 876}, - [3502] = {.lex_state = 876}, - [3503] = {.lex_state = 876}, - [3504] = {.lex_state = 876}, - [3505] = {.lex_state = 876}, - [3506] = {.lex_state = 876}, - [3507] = {.lex_state = 876}, - [3508] = {.lex_state = 876}, - [3509] = {.lex_state = 876}, - [3510] = {.lex_state = 876}, - [3511] = {.lex_state = 876}, - [3512] = {.lex_state = 876}, - [3513] = {.lex_state = 23}, - [3514] = {.lex_state = 876}, - [3515] = {.lex_state = 876}, - [3516] = {.lex_state = 23}, - [3517] = {.lex_state = 876}, - [3518] = {.lex_state = 876}, - [3519] = {.lex_state = 98}, - [3520] = {.lex_state = 876}, - [3521] = {.lex_state = 98}, - [3522] = {.lex_state = 34}, - [3523] = {.lex_state = 876}, - [3524] = {.lex_state = 876}, - [3525] = {.lex_state = 23}, - [3526] = {.lex_state = 876}, - [3527] = {.lex_state = 876}, - [3528] = {.lex_state = 876}, - [3529] = {.lex_state = 98}, - [3530] = {.lex_state = 876}, - [3531] = {.lex_state = 23}, - [3532] = {.lex_state = 876}, - [3533] = {.lex_state = 876}, - [3534] = {.lex_state = 876}, - [3535] = {.lex_state = 876}, - [3536] = {.lex_state = 876}, + [3027] = {.lex_state = 882}, + [3028] = {.lex_state = 882}, + [3029] = {.lex_state = 882}, + [3030] = {.lex_state = 35}, + [3031] = {.lex_state = 109}, + [3032] = {.lex_state = 882}, + [3033] = {.lex_state = 55}, + [3034] = {.lex_state = 882}, + [3035] = {.lex_state = 43}, + [3036] = {.lex_state = 37}, + [3037] = {.lex_state = 35}, + [3038] = {.lex_state = 37}, + [3039] = {.lex_state = 882}, + [3040] = {.lex_state = 882}, + [3041] = {.lex_state = 882}, + [3042] = {.lex_state = 109}, + [3043] = {.lex_state = 882}, + [3044] = {.lex_state = 882}, + [3045] = {.lex_state = 882}, + [3046] = {.lex_state = 23}, + [3047] = {.lex_state = 35}, + [3048] = {.lex_state = 109}, + [3049] = {.lex_state = 91}, + [3050] = {.lex_state = 882}, + [3051] = {.lex_state = 882}, + [3052] = {.lex_state = 882}, + [3053] = {.lex_state = 882}, + [3054] = {.lex_state = 882}, + [3055] = {.lex_state = 882}, + [3056] = {.lex_state = 882}, + [3057] = {.lex_state = 882}, + [3058] = {.lex_state = 882, .external_lex_state = 5}, + [3059] = {.lex_state = 882}, + [3060] = {.lex_state = 882}, + [3061] = {.lex_state = 36}, + [3062] = {.lex_state = 882}, + [3063] = {.lex_state = 104}, + [3064] = {.lex_state = 882}, + [3065] = {.lex_state = 23}, + [3066] = {.lex_state = 882}, + [3067] = {.lex_state = 882}, + [3068] = {.lex_state = 882}, + [3069] = {.lex_state = 40}, + [3070] = {.lex_state = 882}, + [3071] = {.lex_state = 882}, + [3072] = {.lex_state = 88}, + [3073] = {.lex_state = 101}, + [3074] = {.lex_state = 882}, + [3075] = {.lex_state = 882}, + [3076] = {.lex_state = 882}, + [3077] = {.lex_state = 882, .external_lex_state = 7}, + [3078] = {.lex_state = 35}, + [3079] = {.lex_state = 37}, + [3080] = {.lex_state = 104}, + [3081] = {.lex_state = 882}, + [3082] = {.lex_state = 882}, + [3083] = {.lex_state = 882, .external_lex_state = 5}, + [3084] = {.lex_state = 882}, + [3085] = {.lex_state = 40}, + [3086] = {.lex_state = 882}, + [3087] = {.lex_state = 882}, + [3088] = {.lex_state = 882, .external_lex_state = 5}, + [3089] = {.lex_state = 882, .external_lex_state = 5}, + [3090] = {.lex_state = 40}, + [3091] = {.lex_state = 882}, + [3092] = {.lex_state = 40}, + [3093] = {.lex_state = 882, .external_lex_state = 5}, + [3094] = {.lex_state = 104}, + [3095] = {.lex_state = 882, .external_lex_state = 5}, + [3096] = {.lex_state = 23}, + [3097] = {.lex_state = 36}, + [3098] = {.lex_state = 101}, + [3099] = {.lex_state = 882, .external_lex_state = 5}, + [3100] = {.lex_state = 36}, + [3101] = {.lex_state = 882, .external_lex_state = 5}, + [3102] = {.lex_state = 882, .external_lex_state = 5}, + [3103] = {.lex_state = 882, .external_lex_state = 5}, + [3104] = {.lex_state = 36}, + [3105] = {.lex_state = 882}, + [3106] = {.lex_state = 882}, + [3107] = {.lex_state = 882}, + [3108] = {.lex_state = 882}, + [3109] = {.lex_state = 882}, + [3110] = {.lex_state = 882}, + [3111] = {.lex_state = 882}, + [3112] = {.lex_state = 882}, + [3113] = {.lex_state = 882}, + [3114] = {.lex_state = 882}, + [3115] = {.lex_state = 882}, + [3116] = {.lex_state = 882}, + [3117] = {.lex_state = 882}, + [3118] = {.lex_state = 882}, + [3119] = {.lex_state = 882}, + [3120] = {.lex_state = 882}, + [3121] = {.lex_state = 882}, + [3122] = {.lex_state = 882}, + [3123] = {.lex_state = 882}, + [3124] = {.lex_state = 108}, + [3125] = {.lex_state = 882}, + [3126] = {.lex_state = 882}, + [3127] = {.lex_state = 882}, + [3128] = {.lex_state = 882}, + [3129] = {.lex_state = 882}, + [3130] = {.lex_state = 882}, + [3131] = {.lex_state = 882}, + [3132] = {.lex_state = 882}, + [3133] = {.lex_state = 882}, + [3134] = {.lex_state = 40}, + [3135] = {.lex_state = 882}, + [3136] = {.lex_state = 882}, + [3137] = {.lex_state = 882}, + [3138] = {.lex_state = 882}, + [3139] = {.lex_state = 882}, + [3140] = {.lex_state = 882}, + [3141] = {.lex_state = 882}, + [3142] = {.lex_state = 882}, + [3143] = {.lex_state = 21}, + [3144] = {.lex_state = 882}, + [3145] = {.lex_state = 882}, + [3146] = {.lex_state = 882}, + [3147] = {.lex_state = 882}, + [3148] = {.lex_state = 882}, + [3149] = {.lex_state = 108}, + [3150] = {.lex_state = 882}, + [3151] = {.lex_state = 21}, + [3152] = {.lex_state = 21}, + [3153] = {.lex_state = 882}, + [3154] = {.lex_state = 882}, + [3155] = {.lex_state = 882}, + [3156] = {.lex_state = 882, .external_lex_state = 5}, + [3157] = {.lex_state = 882}, + [3158] = {.lex_state = 882}, + [3159] = {.lex_state = 108}, + [3160] = {.lex_state = 882, .external_lex_state = 5}, + [3161] = {.lex_state = 108}, + [3162] = {.lex_state = 882}, + [3163] = {.lex_state = 882}, + [3164] = {.lex_state = 882}, + [3165] = {.lex_state = 882, .external_lex_state = 5}, + [3166] = {.lex_state = 882}, + [3167] = {.lex_state = 882}, + [3168] = {.lex_state = 882}, + [3169] = {.lex_state = 882}, + [3170] = {.lex_state = 882}, + [3171] = {.lex_state = 23}, + [3172] = {.lex_state = 36}, + [3173] = {.lex_state = 56}, + [3174] = {.lex_state = 104}, + [3175] = {.lex_state = 882}, + [3176] = {.lex_state = 882, .external_lex_state = 5}, + [3177] = {.lex_state = 882}, + [3178] = {.lex_state = 882}, + [3179] = {.lex_state = 882}, + [3180] = {.lex_state = 882}, + [3181] = {.lex_state = 882}, + [3182] = {.lex_state = 882}, + [3183] = {.lex_state = 882}, + [3184] = {.lex_state = 882}, + [3185] = {.lex_state = 882}, + [3186] = {.lex_state = 882}, + [3187] = {.lex_state = 882}, + [3188] = {.lex_state = 882, .external_lex_state = 5}, + [3189] = {.lex_state = 882}, + [3190] = {.lex_state = 882}, + [3191] = {.lex_state = 882}, + [3192] = {.lex_state = 882}, + [3193] = {.lex_state = 21}, + [3194] = {.lex_state = 882}, + [3195] = {.lex_state = 882}, + [3196] = {.lex_state = 882}, + [3197] = {.lex_state = 882}, + [3198] = {.lex_state = 882}, + [3199] = {.lex_state = 882}, + [3200] = {.lex_state = 882}, + [3201] = {.lex_state = 882}, + [3202] = {.lex_state = 882}, + [3203] = {.lex_state = 882}, + [3204] = {.lex_state = 882}, + [3205] = {.lex_state = 882}, + [3206] = {.lex_state = 882, .external_lex_state = 5}, + [3207] = {.lex_state = 882}, + [3208] = {.lex_state = 882}, + [3209] = {.lex_state = 882}, + [3210] = {.lex_state = 882}, + [3211] = {.lex_state = 882}, + [3212] = {.lex_state = 882}, + [3213] = {.lex_state = 882, .external_lex_state = 5}, + [3214] = {.lex_state = 882, .external_lex_state = 5}, + [3215] = {.lex_state = 882}, + [3216] = {.lex_state = 882}, + [3217] = {.lex_state = 882}, + [3218] = {.lex_state = 21}, + [3219] = {.lex_state = 23}, + [3220] = {.lex_state = 882}, + [3221] = {.lex_state = 882}, + [3222] = {.lex_state = 882, .external_lex_state = 5}, + [3223] = {.lex_state = 882}, + [3224] = {.lex_state = 882}, + [3225] = {.lex_state = 882}, + [3226] = {.lex_state = 108}, + [3227] = {.lex_state = 882}, + [3228] = {.lex_state = 21}, + [3229] = {.lex_state = 882}, + [3230] = {.lex_state = 882}, + [3231] = {.lex_state = 882}, + [3232] = {.lex_state = 21}, + [3233] = {.lex_state = 882}, + [3234] = {.lex_state = 882}, + [3235] = {.lex_state = 882, .external_lex_state = 5}, + [3236] = {.lex_state = 882}, + [3237] = {.lex_state = 108}, + [3238] = {.lex_state = 882}, + [3239] = {.lex_state = 882}, + [3240] = {.lex_state = 882, .external_lex_state = 5}, + [3241] = {.lex_state = 882}, + [3242] = {.lex_state = 882, .external_lex_state = 5}, + [3243] = {.lex_state = 882}, + [3244] = {.lex_state = 882}, + [3245] = {.lex_state = 882}, + [3246] = {.lex_state = 36}, + [3247] = {.lex_state = 23}, + [3248] = {.lex_state = 882}, + [3249] = {.lex_state = 882}, + [3250] = {.lex_state = 882, .external_lex_state = 5}, + [3251] = {.lex_state = 882}, + [3252] = {.lex_state = 882, .external_lex_state = 5}, + [3253] = {.lex_state = 882, .external_lex_state = 5}, + [3254] = {.lex_state = 882}, + [3255] = {.lex_state = 882}, + [3256] = {.lex_state = 882}, + [3257] = {.lex_state = 882}, + [3258] = {.lex_state = 882}, + [3259] = {.lex_state = 882}, + [3260] = {.lex_state = 882}, + [3261] = {.lex_state = 882}, + [3262] = {.lex_state = 882}, + [3263] = {.lex_state = 882}, + [3264] = {.lex_state = 882}, + [3265] = {.lex_state = 882}, + [3266] = {.lex_state = 882}, + [3267] = {.lex_state = 882}, + [3268] = {.lex_state = 882}, + [3269] = {.lex_state = 882}, + [3270] = {.lex_state = 882}, + [3271] = {.lex_state = 882}, + [3272] = {.lex_state = 882}, + [3273] = {.lex_state = 882}, + [3274] = {.lex_state = 882}, + [3275] = {.lex_state = 882}, + [3276] = {.lex_state = 882, .external_lex_state = 5}, + [3277] = {.lex_state = 882}, + [3278] = {.lex_state = 882}, + [3279] = {.lex_state = 882}, + [3280] = {.lex_state = 882}, + [3281] = {.lex_state = 882}, + [3282] = {.lex_state = 882}, + [3283] = {.lex_state = 882}, + [3284] = {.lex_state = 23}, + [3285] = {.lex_state = 882}, + [3286] = {.lex_state = 882}, + [3287] = {.lex_state = 882}, + [3288] = {.lex_state = 882}, + [3289] = {.lex_state = 882}, + [3290] = {.lex_state = 882}, + [3291] = {.lex_state = 882}, + [3292] = {.lex_state = 882}, + [3293] = {.lex_state = 882}, + [3294] = {.lex_state = 23}, + [3295] = {.lex_state = 882}, + [3296] = {.lex_state = 882}, + [3297] = {.lex_state = 21}, + [3298] = {.lex_state = 882}, + [3299] = {.lex_state = 882}, + [3300] = {.lex_state = 882}, + [3301] = {.lex_state = 882}, + [3302] = {.lex_state = 882}, + [3303] = {.lex_state = 882}, + [3304] = {.lex_state = 108}, + [3305] = {.lex_state = 882}, + [3306] = {.lex_state = 21}, + [3307] = {.lex_state = 882}, + [3308] = {.lex_state = 882}, + [3309] = {.lex_state = 882}, + [3310] = {.lex_state = 882}, + [3311] = {.lex_state = 882}, + [3312] = {.lex_state = 108}, + [3313] = {.lex_state = 882}, + [3314] = {.lex_state = 882}, + [3315] = {.lex_state = 23}, + [3316] = {.lex_state = 882}, + [3317] = {.lex_state = 882}, + [3318] = {.lex_state = 882, .external_lex_state = 5}, + [3319] = {.lex_state = 882}, + [3320] = {.lex_state = 882}, + [3321] = {.lex_state = 882, .external_lex_state = 5}, + [3322] = {.lex_state = 882}, + [3323] = {.lex_state = 23}, + [3324] = {.lex_state = 104}, + [3325] = {.lex_state = 882}, + [3326] = {.lex_state = 23}, + [3327] = {.lex_state = 882}, + [3328] = {.lex_state = 882}, + [3329] = {.lex_state = 882}, + [3330] = {.lex_state = 36}, + [3331] = {.lex_state = 882}, + [3332] = {.lex_state = 882}, + [3333] = {.lex_state = 882}, + [3334] = {.lex_state = 882}, + [3335] = {.lex_state = 882}, + [3336] = {.lex_state = 882}, + [3337] = {.lex_state = 882}, + [3338] = {.lex_state = 882}, + [3339] = {.lex_state = 882}, + [3340] = {.lex_state = 882}, + [3341] = {.lex_state = 882}, + [3342] = {.lex_state = 23}, + [3343] = {.lex_state = 882}, + [3344] = {.lex_state = 104}, + [3345] = {.lex_state = 882}, + [3346] = {.lex_state = 882}, + [3347] = {.lex_state = 882}, + [3348] = {.lex_state = 882}, + [3349] = {.lex_state = 882}, + [3350] = {.lex_state = 882}, + [3351] = {.lex_state = 23, .external_lex_state = 5}, + [3352] = {.lex_state = 882}, + [3353] = {.lex_state = 882}, + [3354] = {.lex_state = 23, .external_lex_state = 5}, + [3355] = {.lex_state = 882}, + [3356] = {.lex_state = 882}, + [3357] = {.lex_state = 882}, + [3358] = {.lex_state = 882}, + [3359] = {.lex_state = 882}, + [3360] = {.lex_state = 882}, + [3361] = {.lex_state = 882}, + [3362] = {.lex_state = 882}, + [3363] = {.lex_state = 23}, + [3364] = {.lex_state = 882}, + [3365] = {.lex_state = 882}, + [3366] = {.lex_state = 882}, + [3367] = {.lex_state = 882}, + [3368] = {.lex_state = 882}, + [3369] = {.lex_state = 882}, + [3370] = {.lex_state = 882}, + [3371] = {.lex_state = 882}, + [3372] = {.lex_state = 882}, + [3373] = {.lex_state = 882}, + [3374] = {.lex_state = 882}, + [3375] = {.lex_state = 882}, + [3376] = {.lex_state = 882}, + [3377] = {.lex_state = 882}, + [3378] = {.lex_state = 882}, + [3379] = {.lex_state = 882}, + [3380] = {.lex_state = 882}, + [3381] = {.lex_state = 882}, + [3382] = {.lex_state = 882}, + [3383] = {.lex_state = 882}, + [3384] = {.lex_state = 882}, + [3385] = {.lex_state = 882}, + [3386] = {.lex_state = 882}, + [3387] = {.lex_state = 882}, + [3388] = {.lex_state = 882}, + [3389] = {.lex_state = 882}, + [3390] = {.lex_state = 882}, + [3391] = {.lex_state = 882}, + [3392] = {.lex_state = 882}, + [3393] = {.lex_state = 882}, + [3394] = {.lex_state = 882}, + [3395] = {.lex_state = 882}, + [3396] = {.lex_state = 882}, + [3397] = {.lex_state = 882}, + [3398] = {.lex_state = 882}, + [3399] = {.lex_state = 882}, + [3400] = {.lex_state = 882}, + [3401] = {.lex_state = 882}, + [3402] = {.lex_state = 882}, + [3403] = {.lex_state = 882}, + [3404] = {.lex_state = 882}, + [3405] = {.lex_state = 882}, + [3406] = {.lex_state = 882, .external_lex_state = 5}, + [3407] = {.lex_state = 882}, + [3408] = {.lex_state = 882}, + [3409] = {.lex_state = 882}, + [3410] = {.lex_state = 882}, + [3411] = {.lex_state = 882}, + [3412] = {.lex_state = 882}, + [3413] = {.lex_state = 882}, + [3414] = {.lex_state = 882}, + [3415] = {.lex_state = 882}, + [3416] = {.lex_state = 882}, + [3417] = {.lex_state = 882}, + [3418] = {.lex_state = 882}, + [3419] = {.lex_state = 882}, + [3420] = {.lex_state = 882}, + [3421] = {.lex_state = 882}, + [3422] = {.lex_state = 882}, + [3423] = {.lex_state = 882}, + [3424] = {.lex_state = 882}, + [3425] = {.lex_state = 882}, + [3426] = {.lex_state = 882}, + [3427] = {.lex_state = 882}, + [3428] = {.lex_state = 882}, + [3429] = {.lex_state = 882}, + [3430] = {.lex_state = 882}, + [3431] = {.lex_state = 882}, + [3432] = {.lex_state = 882}, + [3433] = {.lex_state = 882}, + [3434] = {.lex_state = 882}, + [3435] = {.lex_state = 882}, + [3436] = {.lex_state = 882}, + [3437] = {.lex_state = 882}, + [3438] = {.lex_state = 882}, + [3439] = {.lex_state = 882}, + [3440] = {.lex_state = 882}, + [3441] = {.lex_state = 882}, + [3442] = {.lex_state = 882}, + [3443] = {.lex_state = 882}, + [3444] = {.lex_state = 882, .external_lex_state = 5}, + [3445] = {.lex_state = 882}, + [3446] = {.lex_state = 882}, + [3447] = {.lex_state = 882}, + [3448] = {.lex_state = 882}, + [3449] = {.lex_state = 882}, + [3450] = {.lex_state = 882}, + [3451] = {.lex_state = 882}, + [3452] = {.lex_state = 882, .external_lex_state = 5}, + [3453] = {.lex_state = 882}, + [3454] = {.lex_state = 882}, + [3455] = {.lex_state = 23}, + [3456] = {.lex_state = 882}, + [3457] = {.lex_state = 882}, + [3458] = {.lex_state = 882}, + [3459] = {.lex_state = 882}, + [3460] = {.lex_state = 21}, + [3461] = {.lex_state = 882}, + [3462] = {.lex_state = 882}, + [3463] = {.lex_state = 882}, + [3464] = {.lex_state = 882}, + [3465] = {.lex_state = 882}, + [3466] = {.lex_state = 882}, + [3467] = {.lex_state = 882}, + [3468] = {.lex_state = 882}, + [3469] = {.lex_state = 882}, + [3470] = {.lex_state = 882}, + [3471] = {.lex_state = 882}, + [3472] = {.lex_state = 882}, + [3473] = {.lex_state = 882}, + [3474] = {.lex_state = 882}, + [3475] = {.lex_state = 108}, + [3476] = {.lex_state = 882}, + [3477] = {.lex_state = 882}, + [3478] = {.lex_state = 882}, + [3479] = {.lex_state = 882}, + [3480] = {.lex_state = 882}, + [3481] = {.lex_state = 882}, + [3482] = {.lex_state = 882}, + [3483] = {.lex_state = 882, .external_lex_state = 5}, + [3484] = {.lex_state = 882}, + [3485] = {.lex_state = 882}, + [3486] = {.lex_state = 882}, + [3487] = {.lex_state = 882}, + [3488] = {.lex_state = 882}, + [3489] = {.lex_state = 882}, + [3490] = {.lex_state = 21}, + [3491] = {.lex_state = 882}, + [3492] = {.lex_state = 882}, + [3493] = {.lex_state = 882}, + [3494] = {.lex_state = 882}, + [3495] = {.lex_state = 882}, + [3496] = {.lex_state = 882}, + [3497] = {.lex_state = 882}, + [3498] = {.lex_state = 882}, + [3499] = {.lex_state = 882}, + [3500] = {.lex_state = 882}, + [3501] = {.lex_state = 882}, + [3502] = {.lex_state = 882}, + [3503] = {.lex_state = 882}, + [3504] = {.lex_state = 882}, + [3505] = {.lex_state = 882}, + [3506] = {.lex_state = 882}, + [3507] = {.lex_state = 882}, + [3508] = {.lex_state = 882}, + [3509] = {.lex_state = 882}, + [3510] = {.lex_state = 882}, + [3511] = {.lex_state = 882}, + [3512] = {.lex_state = 882}, + [3513] = {.lex_state = 882}, + [3514] = {.lex_state = 882}, + [3515] = {.lex_state = 108}, + [3516] = {.lex_state = 882}, + [3517] = {.lex_state = 882}, + [3518] = {.lex_state = 882}, + [3519] = {.lex_state = 40}, + [3520] = {.lex_state = 882}, + [3521] = {.lex_state = 882}, + [3522] = {.lex_state = 882}, + [3523] = {.lex_state = 23}, + [3524] = {.lex_state = 882, .external_lex_state = 5}, + [3525] = {.lex_state = 882}, + [3526] = {.lex_state = 882}, + [3527] = {.lex_state = 882}, + [3528] = {.lex_state = 23}, + [3529] = {.lex_state = 882}, + [3530] = {.lex_state = 882}, + [3531] = {.lex_state = 882}, + [3532] = {.lex_state = 882}, + [3533] = {.lex_state = 36}, + [3534] = {.lex_state = 882}, + [3535] = {.lex_state = 882}, + [3536] = {.lex_state = 882}, [3537] = {.lex_state = 23}, - [3538] = {.lex_state = 23}, - [3539] = {.lex_state = 876}, + [3538] = {.lex_state = 882}, + [3539] = {.lex_state = 882}, [3540] = {.lex_state = 23}, - [3541] = {.lex_state = 876}, - [3542] = {.lex_state = 23}, - [3543] = {.lex_state = 876}, - [3544] = {.lex_state = 876}, - [3545] = {.lex_state = 876}, - [3546] = {.lex_state = 876}, + [3541] = {.lex_state = 23}, + [3542] = {.lex_state = 104}, + [3543] = {.lex_state = 882}, + [3544] = {.lex_state = 882}, + [3545] = {.lex_state = 882}, + [3546] = {.lex_state = 882}, [3547] = {.lex_state = 23}, - [3548] = {.lex_state = 36}, - [3549] = {.lex_state = 876}, - [3550] = {.lex_state = 36}, + [3548] = {.lex_state = 23, .external_lex_state = 5}, + [3549] = {.lex_state = 104}, + [3550] = {.lex_state = 882}, [3551] = {.lex_state = 23}, [3552] = {.lex_state = 23}, - [3553] = {.lex_state = 23}, + [3553] = {.lex_state = 47}, [3554] = {.lex_state = 23}, - [3555] = {.lex_state = 876}, - [3556] = {.lex_state = 876}, - [3557] = {.lex_state = 876}, - [3558] = {.lex_state = 876}, - [3559] = {.lex_state = 876}, - [3560] = {.lex_state = 876}, - [3561] = {.lex_state = 876}, - [3562] = {.lex_state = 876}, - [3563] = {.lex_state = 876}, + [3555] = {.lex_state = 882}, + [3556] = {.lex_state = 882}, + [3557] = {.lex_state = 23}, + [3558] = {.lex_state = 23}, + [3559] = {.lex_state = 882}, + [3560] = {.lex_state = 882}, + [3561] = {.lex_state = 882}, + [3562] = {.lex_state = 882}, + [3563] = {.lex_state = 47}, [3564] = {.lex_state = 23}, - [3565] = {.lex_state = 876}, - [3566] = {.lex_state = 23}, - [3567] = {.lex_state = 876}, - [3568] = {.lex_state = 876}, + [3565] = {.lex_state = 882}, + [3566] = {.lex_state = 882}, + [3567] = {.lex_state = 882}, + [3568] = {.lex_state = 882}, [3569] = {.lex_state = 23}, - [3570] = {.lex_state = 876}, - [3571] = {.lex_state = 876}, - [3572] = {.lex_state = 876}, - [3573] = {.lex_state = 876}, + [3570] = {.lex_state = 882}, + [3571] = {.lex_state = 882}, + [3572] = {.lex_state = 882}, + [3573] = {.lex_state = 882}, [3574] = {.lex_state = 23}, - [3575] = {.lex_state = 876}, - [3576] = {.lex_state = 876}, - [3577] = {.lex_state = 876}, - [3578] = {.lex_state = 876}, - [3579] = {.lex_state = 876}, - [3580] = {.lex_state = 23}, - [3581] = {.lex_state = 876}, - [3582] = {.lex_state = 876}, - [3583] = {.lex_state = 23}, - [3584] = {.lex_state = 23}, - [3585] = {.lex_state = 876}, - [3586] = {.lex_state = 23}, - [3587] = {.lex_state = 876}, + [3575] = {.lex_state = 23}, + [3576] = {.lex_state = 23}, + [3577] = {.lex_state = 882}, + [3578] = {.lex_state = 882}, + [3579] = {.lex_state = 882}, + [3580] = {.lex_state = 882}, + [3581] = {.lex_state = 38}, + [3582] = {.lex_state = 882}, + [3583] = {.lex_state = 882}, + [3584] = {.lex_state = 882}, + [3585] = {.lex_state = 882}, + [3586] = {.lex_state = 882}, + [3587] = {.lex_state = 882}, [3588] = {.lex_state = 23}, [3589] = {.lex_state = 23}, - [3590] = {.lex_state = 876}, - [3591] = {.lex_state = 876}, - [3592] = {.lex_state = 23}, - [3593] = {.lex_state = 876}, - [3594] = {.lex_state = 36}, - [3595] = {.lex_state = 23}, - [3596] = {.lex_state = 23}, - [3597] = {.lex_state = 23}, - [3598] = {.lex_state = 876}, - [3599] = {.lex_state = 876}, - [3600] = {.lex_state = 23}, - [3601] = {.lex_state = 876}, - [3602] = {.lex_state = 876}, + [3590] = {.lex_state = 882}, + [3591] = {.lex_state = 23}, + [3592] = {.lex_state = 882}, + [3593] = {.lex_state = 882}, + [3594] = {.lex_state = 23}, + [3595] = {.lex_state = 882}, + [3596] = {.lex_state = 882}, + [3597] = {.lex_state = 882}, + [3598] = {.lex_state = 882}, + [3599] = {.lex_state = 882}, + [3600] = {.lex_state = 882}, + [3601] = {.lex_state = 38}, + [3602] = {.lex_state = 23}, [3603] = {.lex_state = 23}, - [3604] = {.lex_state = 876}, - [3605] = {.lex_state = 23}, - [3606] = {.lex_state = 23}, + [3604] = {.lex_state = 23}, + [3605] = {.lex_state = 38}, + [3606] = {.lex_state = 882}, [3607] = {.lex_state = 23}, - [3608] = {.lex_state = 36}, - [3609] = {.lex_state = 876}, - [3610] = {.lex_state = 876}, + [3608] = {.lex_state = 23}, + [3609] = {.lex_state = 23}, + [3610] = {.lex_state = 882}, [3611] = {.lex_state = 23}, - [3612] = {.lex_state = 876}, - [3613] = {.lex_state = 876}, - [3614] = {.lex_state = 876}, - [3615] = {.lex_state = 23}, + [3612] = {.lex_state = 882}, + [3613] = {.lex_state = 882}, + [3614] = {.lex_state = 882}, + [3615] = {.lex_state = 882}, [3616] = {.lex_state = 23}, - [3617] = {.lex_state = 876}, - [3618] = {.lex_state = 23}, - [3619] = {.lex_state = 876}, + [3617] = {.lex_state = 882}, + [3618] = {.lex_state = 882}, + [3619] = {.lex_state = 882}, [3620] = {.lex_state = 23}, - [3621] = {.lex_state = 876}, - [3622] = {.lex_state = 876}, - [3623] = {.lex_state = 36}, + [3621] = {.lex_state = 47}, + [3622] = {.lex_state = 882}, + [3623] = {.lex_state = 23}, [3624] = {.lex_state = 23}, - [3625] = {.lex_state = 876}, - [3626] = {.lex_state = 876}, - [3627] = {.lex_state = 876}, - [3628] = {.lex_state = 876}, - [3629] = {.lex_state = 876}, - [3630] = {.lex_state = 23}, - [3631] = {.lex_state = 876}, - [3632] = {.lex_state = 36}, - [3633] = {.lex_state = 876}, - [3634] = {.lex_state = 23}, - [3635] = {.lex_state = 876}, - [3636] = {.lex_state = 23}, - [3637] = {.lex_state = 876}, - [3638] = {.lex_state = 876}, - [3639] = {.lex_state = 876}, - [3640] = {.lex_state = 23}, - [3641] = {.lex_state = 23}, - [3642] = {.lex_state = 876}, - [3643] = {.lex_state = 23}, - [3644] = {.lex_state = 23}, - [3645] = {.lex_state = 876}, - [3646] = {.lex_state = 876}, - [3647] = {.lex_state = 876}, - [3648] = {.lex_state = 876}, - [3649] = {.lex_state = 876}, - [3650] = {.lex_state = 876}, - [3651] = {.lex_state = 876}, - [3652] = {.lex_state = 876}, - [3653] = {.lex_state = 876}, - [3654] = {.lex_state = 876}, - [3655] = {.lex_state = 876}, - [3656] = {.lex_state = 876}, - [3657] = {.lex_state = 876}, - [3658] = {.lex_state = 876}, - [3659] = {.lex_state = 876}, - [3660] = {.lex_state = 36}, - [3661] = {.lex_state = 876}, - [3662] = {.lex_state = 876}, - [3663] = {.lex_state = 876}, - [3664] = {.lex_state = 103}, - [3665] = {.lex_state = 23}, - [3666] = {.lex_state = 876}, - [3667] = {.lex_state = 876}, - [3668] = {.lex_state = 23}, - [3669] = {.lex_state = 876}, - [3670] = {.lex_state = 876}, - [3671] = {.lex_state = 876}, - [3672] = {.lex_state = 876}, - [3673] = {.lex_state = 23}, - [3674] = {.lex_state = 876}, - [3675] = {.lex_state = 876}, - [3676] = {.lex_state = 876}, - [3677] = {.lex_state = 23}, + [3625] = {.lex_state = 23}, + [3626] = {.lex_state = 23}, + [3627] = {.lex_state = 23}, + [3628] = {.lex_state = 882}, + [3629] = {.lex_state = 882}, + [3630] = {.lex_state = 882}, + [3631] = {.lex_state = 23}, + [3632] = {.lex_state = 882}, + [3633] = {.lex_state = 882}, + [3634] = {.lex_state = 882}, + [3635] = {.lex_state = 882}, + [3636] = {.lex_state = 882}, + [3637] = {.lex_state = 23}, + [3638] = {.lex_state = 882}, + [3639] = {.lex_state = 882}, + [3640] = {.lex_state = 882}, + [3641] = {.lex_state = 38}, + [3642] = {.lex_state = 882}, + [3643] = {.lex_state = 882}, + [3644] = {.lex_state = 38}, + [3645] = {.lex_state = 23}, + [3646] = {.lex_state = 882}, + [3647] = {.lex_state = 23}, + [3648] = {.lex_state = 882}, + [3649] = {.lex_state = 38}, + [3650] = {.lex_state = 23}, + [3651] = {.lex_state = 882}, + [3652] = {.lex_state = 882}, + [3653] = {.lex_state = 23}, + [3654] = {.lex_state = 882}, + [3655] = {.lex_state = 882}, + [3656] = {.lex_state = 23}, + [3657] = {.lex_state = 882}, + [3658] = {.lex_state = 882}, + [3659] = {.lex_state = 882}, + [3660] = {.lex_state = 23}, + [3661] = {.lex_state = 23}, + [3662] = {.lex_state = 882}, + [3663] = {.lex_state = 882}, + [3664] = {.lex_state = 23}, + [3665] = {.lex_state = 882}, + [3666] = {.lex_state = 882}, + [3667] = {.lex_state = 23}, + [3668] = {.lex_state = 882}, + [3669] = {.lex_state = 47}, + [3670] = {.lex_state = 882}, + [3671] = {.lex_state = 882}, + [3672] = {.lex_state = 882}, + [3673] = {.lex_state = 882}, + [3674] = {.lex_state = 882}, + [3675] = {.lex_state = 40}, + [3676] = {.lex_state = 882}, + [3677] = {.lex_state = 882}, [3678] = {.lex_state = 23}, - [3679] = {.lex_state = 23}, - [3680] = {.lex_state = 23}, - [3681] = {.lex_state = 876}, - [3682] = {.lex_state = 876}, - [3683] = {.lex_state = 876}, - [3684] = {.lex_state = 23}, + [3679] = {.lex_state = 38}, + [3680] = {.lex_state = 38}, + [3681] = {.lex_state = 882}, + [3682] = {.lex_state = 882}, + [3683] = {.lex_state = 882}, + [3684] = {.lex_state = 109}, [3685] = {.lex_state = 23}, - [3686] = {.lex_state = 876}, - [3687] = {.lex_state = 876}, - [3688] = {.lex_state = 876}, - [3689] = {.lex_state = 23}, - [3690] = {.lex_state = 36}, - [3691] = {.lex_state = 876}, - [3692] = {.lex_state = 23}, + [3686] = {.lex_state = 882}, + [3687] = {.lex_state = 882}, + [3688] = {.lex_state = 38}, + [3689] = {.lex_state = 882}, + [3690] = {.lex_state = 882}, + [3691] = {.lex_state = 23}, + [3692] = {.lex_state = 38}, [3693] = {.lex_state = 23}, - [3694] = {.lex_state = 876}, - [3695] = {.lex_state = 876}, - [3696] = {.lex_state = 876}, - [3697] = {.lex_state = 23}, - [3698] = {.lex_state = 876}, - [3699] = {.lex_state = 876}, - [3700] = {.lex_state = 876}, - [3701] = {.lex_state = 103}, + [3694] = {.lex_state = 882}, + [3695] = {.lex_state = 23}, + [3696] = {.lex_state = 38}, + [3697] = {.lex_state = 109}, + [3698] = {.lex_state = 882}, + [3699] = {.lex_state = 882}, + [3700] = {.lex_state = 23}, + [3701] = {.lex_state = 23}, [3702] = {.lex_state = 23}, - [3703] = {.lex_state = 876}, - [3704] = {.lex_state = 876}, - [3705] = {.lex_state = 36}, - [3706] = {.lex_state = 876}, - [3707] = {.lex_state = 876}, - [3708] = {.lex_state = 876}, - [3709] = {.lex_state = 876}, - [3710] = {.lex_state = 876}, - [3711] = {.lex_state = 36}, + [3703] = {.lex_state = 23}, + [3704] = {.lex_state = 38}, + [3705] = {.lex_state = 882}, + [3706] = {.lex_state = 38}, + [3707] = {.lex_state = 23}, + [3708] = {.lex_state = 47}, + [3709] = {.lex_state = 882}, + [3710] = {.lex_state = 882}, + [3711] = {.lex_state = 882}, [3712] = {.lex_state = 23}, [3713] = {.lex_state = 23}, - [3714] = {.lex_state = 876}, - [3715] = {.lex_state = 876}, - [3716] = {.lex_state = 876}, - [3717] = {.lex_state = 876}, - [3718] = {.lex_state = 876}, - [3719] = {.lex_state = 876}, - [3720] = {.lex_state = 876}, - [3721] = {.lex_state = 36}, - [3722] = {.lex_state = 876}, - [3723] = {.lex_state = 876}, - [3724] = {.lex_state = 876}, + [3714] = {.lex_state = 23}, + [3715] = {.lex_state = 882}, + [3716] = {.lex_state = 882}, + [3717] = {.lex_state = 38}, + [3718] = {.lex_state = 882}, + [3719] = {.lex_state = 882}, + [3720] = {.lex_state = 882}, + [3721] = {.lex_state = 109}, + [3722] = {.lex_state = 23}, + [3723] = {.lex_state = 23}, + [3724] = {.lex_state = 882}, [3725] = {.lex_state = 23}, - [3726] = {.lex_state = 876}, - [3727] = {.lex_state = 38}, - [3728] = {.lex_state = 876}, - [3729] = {.lex_state = 876}, - [3730] = {.lex_state = 876}, - [3731] = {.lex_state = 36}, - [3732] = {.lex_state = 876}, - [3733] = {.lex_state = 876}, - [3734] = {.lex_state = 876}, - [3735] = {.lex_state = 23}, - [3736] = {.lex_state = 23}, - [3737] = {.lex_state = 876}, - [3738] = {.lex_state = 876}, - [3739] = {.lex_state = 876}, - [3740] = {.lex_state = 876}, - [3741] = {.lex_state = 876}, - [3742] = {.lex_state = 876}, - [3743] = {.lex_state = 876}, - [3744] = {.lex_state = 103}, - [3745] = {.lex_state = 37}, - [3746] = {.lex_state = 876}, - [3747] = {.lex_state = 876}, - [3748] = {.lex_state = 876}, - [3749] = {.lex_state = 876}, - [3750] = {.lex_state = 876}, - [3751] = {.lex_state = 23}, - [3752] = {.lex_state = 23}, - [3753] = {.lex_state = 23}, - [3754] = {.lex_state = 876}, - [3755] = {.lex_state = 36}, - [3756] = {.lex_state = 876}, - [3757] = {.lex_state = 876}, - [3758] = {.lex_state = 876}, - [3759] = {.lex_state = 23}, - [3760] = {.lex_state = 23}, - [3761] = {.lex_state = 876}, - [3762] = {.lex_state = 876}, - [3763] = {.lex_state = 876}, - [3764] = {.lex_state = 876}, - [3765] = {.lex_state = 876}, - [3766] = {.lex_state = 876}, - [3767] = {.lex_state = 876}, - [3768] = {.lex_state = 23}, - [3769] = {.lex_state = 876}, - [3770] = {.lex_state = 876}, - [3771] = {.lex_state = 876}, + [3726] = {.lex_state = 23}, + [3727] = {.lex_state = 882}, + [3728] = {.lex_state = 882}, + [3729] = {.lex_state = 882}, + [3730] = {.lex_state = 882}, + [3731] = {.lex_state = 882}, + [3732] = {.lex_state = 23}, + [3733] = {.lex_state = 23}, + [3734] = {.lex_state = 47}, + [3735] = {.lex_state = 882}, + [3736] = {.lex_state = 882}, + [3737] = {.lex_state = 882}, + [3738] = {.lex_state = 23}, + [3739] = {.lex_state = 882}, + [3740] = {.lex_state = 882}, + [3741] = {.lex_state = 23}, + [3742] = {.lex_state = 882}, + [3743] = {.lex_state = 882}, + [3744] = {.lex_state = 882}, + [3745] = {.lex_state = 882}, + [3746] = {.lex_state = 882}, + [3747] = {.lex_state = 882}, + [3748] = {.lex_state = 882}, + [3749] = {.lex_state = 23}, + [3750] = {.lex_state = 882}, + [3751] = {.lex_state = 882}, + [3752] = {.lex_state = 882}, + [3753] = {.lex_state = 882}, + [3754] = {.lex_state = 23}, + [3755] = {.lex_state = 882}, + [3756] = {.lex_state = 23}, + [3757] = {.lex_state = 882}, + [3758] = {.lex_state = 38}, + [3759] = {.lex_state = 882}, + [3760] = {.lex_state = 882}, + [3761] = {.lex_state = 38}, + [3762] = {.lex_state = 882}, + [3763] = {.lex_state = 882}, + [3764] = {.lex_state = 882}, + [3765] = {.lex_state = 882}, + [3766] = {.lex_state = 882}, + [3767] = {.lex_state = 882}, + [3768] = {.lex_state = 882}, + [3769] = {.lex_state = 882}, + [3770] = {.lex_state = 882}, + [3771] = {.lex_state = 23}, [3772] = {.lex_state = 23}, - [3773] = {.lex_state = 876}, - [3774] = {.lex_state = 876}, - [3775] = {.lex_state = 876}, - [3776] = {.lex_state = 876}, - [3777] = {.lex_state = 876}, + [3773] = {.lex_state = 23}, + [3774] = {.lex_state = 23}, + [3775] = {.lex_state = 882}, + [3776] = {.lex_state = 23}, + [3777] = {.lex_state = 23}, [3778] = {.lex_state = 23}, - [3779] = {.lex_state = 876}, - [3780] = {.lex_state = 23}, - [3781] = {.lex_state = 876}, - [3782] = {.lex_state = 876}, - [3783] = {.lex_state = 876}, - [3784] = {.lex_state = 36}, - [3785] = {.lex_state = 876}, - [3786] = {.lex_state = 876}, - [3787] = {.lex_state = 876}, - [3788] = {.lex_state = 876}, - [3789] = {.lex_state = 44}, - [3790] = {.lex_state = 876}, - [3791] = {.lex_state = 876}, - [3792] = {.lex_state = 876}, - [3793] = {.lex_state = 876}, - [3794] = {.lex_state = 23}, - [3795] = {.lex_state = 23}, - [3796] = {.lex_state = 876}, - [3797] = {.lex_state = 876}, - [3798] = {.lex_state = 876}, - [3799] = {.lex_state = 876}, - [3800] = {.lex_state = 876}, - [3801] = {.lex_state = 876}, - [3802] = {.lex_state = 876}, - [3803] = {.lex_state = 876}, - [3804] = {.lex_state = 876}, - [3805] = {.lex_state = 876}, - [3806] = {.lex_state = 876}, - [3807] = {.lex_state = 876}, - [3808] = {.lex_state = 876}, - [3809] = {.lex_state = 876}, - [3810] = {.lex_state = 876}, - [3811] = {.lex_state = 876}, - [3812] = {.lex_state = 876}, - [3813] = {.lex_state = 876}, - [3814] = {.lex_state = 23}, - [3815] = {.lex_state = 876}, - [3816] = {.lex_state = 36}, - [3817] = {.lex_state = 23}, + [3779] = {.lex_state = 882}, + [3780] = {.lex_state = 882}, + [3781] = {.lex_state = 882}, + [3782] = {.lex_state = 882}, + [3783] = {.lex_state = 47}, + [3784] = {.lex_state = 882}, + [3785] = {.lex_state = 23}, + [3786] = {.lex_state = 882}, + [3787] = {.lex_state = 882}, + [3788] = {.lex_state = 23}, + [3789] = {.lex_state = 882}, + [3790] = {.lex_state = 882}, + [3791] = {.lex_state = 882}, + [3792] = {.lex_state = 882}, + [3793] = {.lex_state = 882}, + [3794] = {.lex_state = 882, .external_lex_state = 5}, + [3795] = {.lex_state = 882}, + [3796] = {.lex_state = 882}, + [3797] = {.lex_state = 882}, + [3798] = {.lex_state = 23}, + [3799] = {.lex_state = 882}, + [3800] = {.lex_state = 882}, + [3801] = {.lex_state = 882}, + [3802] = {.lex_state = 882}, + [3803] = {.lex_state = 882}, + [3804] = {.lex_state = 882}, + [3805] = {.lex_state = 23}, + [3806] = {.lex_state = 23}, + [3807] = {.lex_state = 882}, + [3808] = {.lex_state = 882}, + [3809] = {.lex_state = 109}, + [3810] = {.lex_state = 882}, + [3811] = {.lex_state = 882}, + [3812] = {.lex_state = 882}, + [3813] = {.lex_state = 882}, + [3814] = {.lex_state = 47}, + [3815] = {.lex_state = 882}, + [3816] = {.lex_state = 882}, + [3817] = {.lex_state = 882}, [3818] = {.lex_state = 23}, - [3819] = {.lex_state = 23}, + [3819] = {.lex_state = 882}, [3820] = {.lex_state = 23}, - [3821] = {.lex_state = 876}, - [3822] = {.lex_state = 876}, + [3821] = {.lex_state = 38}, + [3822] = {.lex_state = 23}, [3823] = {.lex_state = 23}, - [3824] = {.lex_state = 103}, - [3825] = {.lex_state = 876}, - [3826] = {.lex_state = 876}, - [3827] = {.lex_state = 876}, - [3828] = {.lex_state = 876}, - [3829] = {.lex_state = 44}, - [3830] = {.lex_state = 876}, - [3831] = {.lex_state = 876, .external_lex_state = 5}, + [3824] = {.lex_state = 23}, + [3825] = {.lex_state = 23}, + [3826] = {.lex_state = 38}, + [3827] = {.lex_state = 882}, + [3828] = {.lex_state = 882}, + [3829] = {.lex_state = 109}, + [3830] = {.lex_state = 23, .external_lex_state = 5}, + [3831] = {.lex_state = 882}, [3832] = {.lex_state = 23}, - [3833] = {.lex_state = 876}, - [3834] = {.lex_state = 876}, - [3835] = {.lex_state = 44}, + [3833] = {.lex_state = 882}, + [3834] = {.lex_state = 882}, + [3835] = {.lex_state = 882}, [3836] = {.lex_state = 23}, - [3837] = {.lex_state = 876}, - [3838] = {.lex_state = 876}, - [3839] = {.lex_state = 876}, - [3840] = {.lex_state = 44}, - [3841] = {.lex_state = 876}, + [3837] = {.lex_state = 23}, + [3838] = {.lex_state = 104}, + [3839] = {.lex_state = 882}, + [3840] = {.lex_state = 882}, + [3841] = {.lex_state = 882}, [3842] = {.lex_state = 23}, - [3843] = {.lex_state = 876}, - [3844] = {.lex_state = 876}, - [3845] = {.lex_state = 876}, - [3846] = {.lex_state = 23}, - [3847] = {.lex_state = 876}, - [3848] = {.lex_state = 103}, - [3849] = {.lex_state = 103}, - [3850] = {.lex_state = 876}, + [3843] = {.lex_state = 23}, + [3844] = {.lex_state = 882}, + [3845] = {.lex_state = 23}, + [3846] = {.lex_state = 882}, + [3847] = {.lex_state = 23}, + [3848] = {.lex_state = 882}, + [3849] = {.lex_state = 23}, + [3850] = {.lex_state = 882}, [3851] = {.lex_state = 23}, - [3852] = {.lex_state = 876}, - [3853] = {.lex_state = 44}, - [3854] = {.lex_state = 876}, - [3855] = {.lex_state = 23}, + [3852] = {.lex_state = 109}, + [3853] = {.lex_state = 882}, + [3854] = {.lex_state = 882}, + [3855] = {.lex_state = 882}, [3856] = {.lex_state = 23}, - [3857] = {.lex_state = 876}, - [3858] = {.lex_state = 23}, - [3859] = {.lex_state = 876}, - [3860] = {.lex_state = 876}, - [3861] = {.lex_state = 23}, - [3862] = {.lex_state = 876}, - [3863] = {.lex_state = 876}, - [3864] = {.lex_state = 876}, + [3857] = {.lex_state = 882}, + [3858] = {.lex_state = 882}, + [3859] = {.lex_state = 882}, + [3860] = {.lex_state = 882}, + [3861] = {.lex_state = 882}, + [3862] = {.lex_state = 882}, + [3863] = {.lex_state = 882}, + [3864] = {.lex_state = 882}, [3865] = {.lex_state = 23}, - [3866] = {.lex_state = 876}, - [3867] = {.lex_state = 876}, - [3868] = {.lex_state = 876}, - [3869] = {.lex_state = 876}, - [3870] = {.lex_state = 876}, - [3871] = {.lex_state = 876}, - [3872] = {.lex_state = 876}, - [3873] = {.lex_state = 876}, - [3874] = {.lex_state = 876}, - [3875] = {.lex_state = 23}, - [3876] = {.lex_state = 23}, - [3877] = {.lex_state = 23}, - [3878] = {.lex_state = 36}, - [3879] = {.lex_state = 21}, - [3880] = {.lex_state = 876}, - [3881] = {.lex_state = 876}, - [3882] = {.lex_state = 103}, - [3883] = {.lex_state = 876}, - [3884] = {.lex_state = 876}, - [3885] = {.lex_state = 876}, - [3886] = {.lex_state = 876}, - [3887] = {.lex_state = 876}, - [3888] = {.lex_state = 876}, - [3889] = {.lex_state = 876}, - [3890] = {.lex_state = 23}, - [3891] = {.lex_state = 876}, - [3892] = {.lex_state = 98}, - [3893] = {.lex_state = 36}, - [3894] = {.lex_state = 876}, - [3895] = {.lex_state = 876}, - [3896] = {.lex_state = 876}, - [3897] = {.lex_state = 23}, - [3898] = {.lex_state = 876}, - [3899] = {.lex_state = 23}, - [3900] = {.lex_state = 23}, - [3901] = {.lex_state = 876}, - [3902] = {.lex_state = 876}, - [3903] = {.lex_state = 876}, - [3904] = {.lex_state = 876}, - [3905] = {.lex_state = 876}, + [3866] = {.lex_state = 23}, + [3867] = {.lex_state = 882}, + [3868] = {.lex_state = 882}, + [3869] = {.lex_state = 882}, + [3870] = {.lex_state = 882}, + [3871] = {.lex_state = 882}, + [3872] = {.lex_state = 882}, + [3873] = {.lex_state = 23}, + [3874] = {.lex_state = 882}, + [3875] = {.lex_state = 882}, + [3876] = {.lex_state = 882}, + [3877] = {.lex_state = 882}, + [3878] = {.lex_state = 23}, + [3879] = {.lex_state = 882}, + [3880] = {.lex_state = 23}, + [3881] = {.lex_state = 23}, + [3882] = {.lex_state = 882}, + [3883] = {.lex_state = 882}, + [3884] = {.lex_state = 882}, + [3885] = {.lex_state = 882}, + [3886] = {.lex_state = 882}, + [3887] = {.lex_state = 882}, + [3888] = {.lex_state = 882}, + [3889] = {.lex_state = 882}, + [3890] = {.lex_state = 882}, + [3891] = {.lex_state = 23}, + [3892] = {.lex_state = 882}, + [3893] = {.lex_state = 882}, + [3894] = {.lex_state = 882}, + [3895] = {.lex_state = 882}, + [3896] = {.lex_state = 882}, + [3897] = {.lex_state = 882}, + [3898] = {.lex_state = 882}, + [3899] = {.lex_state = 882}, + [3900] = {.lex_state = 882}, + [3901] = {.lex_state = 882}, + [3902] = {.lex_state = 109}, + [3903] = {.lex_state = 882}, + [3904] = {.lex_state = 23}, + [3905] = {.lex_state = 882}, [3906] = {.lex_state = 23}, - [3907] = {.lex_state = 876}, - [3908] = {.lex_state = 876}, - [3909] = {.lex_state = 876}, - [3910] = {.lex_state = 44}, - [3911] = {.lex_state = 23}, - [3912] = {.lex_state = 876}, - [3913] = {.lex_state = 876}, - [3914] = {.lex_state = 876}, - [3915] = {.lex_state = 876}, - [3916] = {.lex_state = 103}, - [3917] = {.lex_state = 876}, - [3918] = {.lex_state = 876}, - [3919] = {.lex_state = 876}, - [3920] = {.lex_state = 23}, - [3921] = {.lex_state = 44}, - [3922] = {.lex_state = 876}, - [3923] = {.lex_state = 876}, - [3924] = {.lex_state = 23}, + [3907] = {.lex_state = 882}, + [3908] = {.lex_state = 882}, + [3909] = {.lex_state = 38}, + [3910] = {.lex_state = 23}, + [3911] = {.lex_state = 882}, + [3912] = {.lex_state = 104}, + [3913] = {.lex_state = 882}, + [3914] = {.lex_state = 882}, + [3915] = {.lex_state = 882}, + [3916] = {.lex_state = 882}, + [3917] = {.lex_state = 23}, + [3918] = {.lex_state = 882}, + [3919] = {.lex_state = 39}, + [3920] = {.lex_state = 882}, + [3921] = {.lex_state = 882}, + [3922] = {.lex_state = 882}, + [3923] = {.lex_state = 882}, + [3924] = {.lex_state = 882}, [3925] = {.lex_state = 23}, [3926] = {.lex_state = 23}, - [3927] = {.lex_state = 23}, - [3928] = {.lex_state = 23}, - [3929] = {.lex_state = 876}, - [3930] = {.lex_state = 876, .external_lex_state = 5}, - [3931] = {.lex_state = 876}, - [3932] = {.lex_state = 23}, - [3933] = {.lex_state = 876}, - [3934] = {.lex_state = 23}, - [3935] = {.lex_state = 876}, - [3936] = {.lex_state = 36}, - [3937] = {.lex_state = 876}, - [3938] = {.lex_state = 876}, - [3939] = {.lex_state = 876}, - [3940] = {.lex_state = 876}, - [3941] = {.lex_state = 36}, - [3942] = {.lex_state = 876}, - [3943] = {.lex_state = 23}, - [3944] = {.lex_state = 876}, - [3945] = {.lex_state = 876}, - [3946] = {.lex_state = 876}, - [3947] = {.lex_state = 876}, - [3948] = {.lex_state = 44}, - [3949] = {.lex_state = 876}, - [3950] = {.lex_state = 36}, - [3951] = {.lex_state = 876}, - [3952] = {.lex_state = 23}, - [3953] = {.lex_state = 876}, - [3954] = {.lex_state = 876}, - [3955] = {.lex_state = 23}, - [3956] = {.lex_state = 876}, - [3957] = {.lex_state = 876}, - [3958] = {.lex_state = 876}, - [3959] = {.lex_state = 876}, - [3960] = {.lex_state = 876}, - [3961] = {.lex_state = 23}, - [3962] = {.lex_state = 23}, - [3963] = {.lex_state = 876}, - [3964] = {.lex_state = 876}, - [3965] = {.lex_state = 23}, - [3966] = {.lex_state = 23}, - [3967] = {.lex_state = 23}, - [3968] = {.lex_state = 876}, - [3969] = {.lex_state = 876}, - [3970] = {.lex_state = 876}, - [3971] = {.lex_state = 876}, - [3972] = {.lex_state = 876}, - [3973] = {.lex_state = 876}, - [3974] = {.lex_state = 876}, - [3975] = {.lex_state = 876}, - [3976] = {.lex_state = 876}, - [3977] = {.lex_state = 23}, - [3978] = {.lex_state = 876}, - [3979] = {.lex_state = 23}, - [3980] = {.lex_state = 876}, + [3927] = {.lex_state = 882}, + [3928] = {.lex_state = 882}, + [3929] = {.lex_state = 882}, + [3930] = {.lex_state = 882}, + [3931] = {.lex_state = 882}, + [3932] = {.lex_state = 882}, + [3933] = {.lex_state = 882}, + [3934] = {.lex_state = 882}, + [3935] = {.lex_state = 882}, + [3936] = {.lex_state = 109}, + [3937] = {.lex_state = 882}, + [3938] = {.lex_state = 882}, + [3939] = {.lex_state = 882}, + [3940] = {.lex_state = 23}, + [3941] = {.lex_state = 882}, + [3942] = {.lex_state = 882}, + [3943] = {.lex_state = 882}, + [3944] = {.lex_state = 882}, + [3945] = {.lex_state = 882}, + [3946] = {.lex_state = 23}, + [3947] = {.lex_state = 23}, + [3948] = {.lex_state = 882}, + [3949] = {.lex_state = 882}, + [3950] = {.lex_state = 882}, + [3951] = {.lex_state = 23}, + [3952] = {.lex_state = 882}, + [3953] = {.lex_state = 23}, + [3954] = {.lex_state = 882}, + [3955] = {.lex_state = 47}, + [3956] = {.lex_state = 882}, + [3957] = {.lex_state = 882}, + [3958] = {.lex_state = 882}, + [3959] = {.lex_state = 882}, + [3960] = {.lex_state = 882}, + [3961] = {.lex_state = 882}, + [3962] = {.lex_state = 882}, + [3963] = {.lex_state = 23}, + [3964] = {.lex_state = 882}, + [3965] = {.lex_state = 882}, + [3966] = {.lex_state = 882}, + [3967] = {.lex_state = 882, .external_lex_state = 5}, + [3968] = {.lex_state = 23}, + [3969] = {.lex_state = 882}, + [3970] = {.lex_state = 23}, + [3971] = {.lex_state = 882}, + [3972] = {.lex_state = 882}, + [3973] = {.lex_state = 882}, + [3974] = {.lex_state = 882}, + [3975] = {.lex_state = 23}, + [3976] = {.lex_state = 882}, + [3977] = {.lex_state = 882}, + [3978] = {.lex_state = 882}, + [3979] = {.lex_state = 882}, + [3980] = {.lex_state = 882}, [3981] = {.lex_state = 23}, - [3982] = {.lex_state = 876}, - [3983] = {.lex_state = 876}, - [3984] = {.lex_state = 876}, - [3985] = {.lex_state = 876}, - [3986] = {.lex_state = 98}, - [3987] = {.lex_state = 23}, - [3988] = {.lex_state = 23}, - [3989] = {.lex_state = 876}, - [3990] = {.lex_state = 876}, - [3991] = {.lex_state = 876}, - [3992] = {.lex_state = 876}, - [3993] = {.lex_state = 876}, - [3994] = {.lex_state = 876}, - [3995] = {.lex_state = 876}, - [3996] = {.lex_state = 876}, - [3997] = {.lex_state = 876}, - [3998] = {.lex_state = 103}, - [3999] = {.lex_state = 876}, - [4000] = {.lex_state = 876}, - [4001] = {.lex_state = 44}, - [4002] = {.lex_state = 876}, - [4003] = {.lex_state = 876}, - [4004] = {.lex_state = 21}, - [4005] = {.lex_state = 876}, - [4006] = {.lex_state = 876}, - [4007] = {.lex_state = 23}, - [4008] = {.lex_state = 876}, - [4009] = {.lex_state = 876}, - [4010] = {.lex_state = 876}, - [4011] = {.lex_state = 876}, - [4012] = {.lex_state = 876}, - [4013] = {.lex_state = 876}, - [4014] = {.lex_state = 876}, - [4015] = {.lex_state = 876}, - [4016] = {.lex_state = 876}, - [4017] = {.lex_state = 876}, - [4018] = {.lex_state = 876}, - [4019] = {.lex_state = 23}, - [4020] = {.lex_state = 876}, - [4021] = {.lex_state = 23}, - [4022] = {.lex_state = 23}, - [4023] = {.lex_state = 97}, - [4024] = {.lex_state = 876}, - [4025] = {.lex_state = 876}, - [4026] = {.lex_state = 103}, - [4027] = {.lex_state = 97}, - [4028] = {.lex_state = 876}, - [4029] = {.lex_state = 876}, - [4030] = {.lex_state = 876}, - [4031] = {.lex_state = 876}, - [4032] = {.lex_state = 876}, - [4033] = {.lex_state = 876}, - [4034] = {.lex_state = 876}, - [4035] = {.lex_state = 876}, - [4036] = {.lex_state = 876}, - [4037] = {.lex_state = 23}, - [4038] = {.lex_state = 876}, - [4039] = {.lex_state = 876}, - [4040] = {.lex_state = 876}, - [4041] = {.lex_state = 876}, - [4042] = {.lex_state = 876}, - [4043] = {.lex_state = 876}, - [4044] = {.lex_state = 876}, - [4045] = {.lex_state = 23}, - [4046] = {.lex_state = 876}, - [4047] = {.lex_state = 876}, - [4048] = {.lex_state = 876}, - [4049] = {.lex_state = 876}, - [4050] = {.lex_state = 876}, + [3982] = {.lex_state = 23}, + [3983] = {.lex_state = 882}, + [3984] = {.lex_state = 23}, + [3985] = {.lex_state = 882}, + [3986] = {.lex_state = 882}, + [3987] = {.lex_state = 882}, + [3988] = {.lex_state = 882}, + [3989] = {.lex_state = 882}, + [3990] = {.lex_state = 882}, + [3991] = {.lex_state = 882}, + [3992] = {.lex_state = 882}, + [3993] = {.lex_state = 882}, + [3994] = {.lex_state = 882}, + [3995] = {.lex_state = 882}, + [3996] = {.lex_state = 882}, + [3997] = {.lex_state = 882}, + [3998] = {.lex_state = 882}, + [3999] = {.lex_state = 23}, + [4000] = {.lex_state = 882}, + [4001] = {.lex_state = 882}, + [4002] = {.lex_state = 882}, + [4003] = {.lex_state = 882}, + [4004] = {.lex_state = 38}, + [4005] = {.lex_state = 882}, + [4006] = {.lex_state = 23}, + [4007] = {.lex_state = 882}, + [4008] = {.lex_state = 103}, + [4009] = {.lex_state = 23}, + [4010] = {.lex_state = 882}, + [4011] = {.lex_state = 882}, + [4012] = {.lex_state = 23}, + [4013] = {.lex_state = 103}, + [4014] = {.lex_state = 21}, + [4015] = {.lex_state = 882}, + [4016] = {.lex_state = 882}, + [4017] = {.lex_state = 882}, + [4018] = {.lex_state = 882}, + [4019] = {.lex_state = 882}, + [4020] = {.lex_state = 882}, + [4021] = {.lex_state = 882}, + [4022] = {.lex_state = 882}, + [4023] = {.lex_state = 109}, + [4024] = {.lex_state = 882}, + [4025] = {.lex_state = 882}, + [4026] = {.lex_state = 882}, + [4027] = {.lex_state = 882}, + [4028] = {.lex_state = 882}, + [4029] = {.lex_state = 882}, + [4030] = {.lex_state = 882}, + [4031] = {.lex_state = 882}, + [4032] = {.lex_state = 882}, + [4033] = {.lex_state = 882}, + [4034] = {.lex_state = 21}, + [4035] = {.lex_state = 882}, + [4036] = {.lex_state = 882}, + [4037] = {.lex_state = 882}, + [4038] = {.lex_state = 882}, + [4039] = {.lex_state = 882}, + [4040] = {.lex_state = 882}, + [4041] = {.lex_state = 882}, + [4042] = {.lex_state = 882}, + [4043] = {.lex_state = 882}, + [4044] = {.lex_state = 23}, + [4045] = {.lex_state = 882}, + [4046] = {.lex_state = 882}, + [4047] = {.lex_state = 882}, + [4048] = {.lex_state = 23}, + [4049] = {.lex_state = 23}, + [4050] = {.lex_state = 882}, [4051] = {.lex_state = 23}, - [4052] = {.lex_state = 23, .external_lex_state = 5}, - [4053] = {.lex_state = 876}, - [4054] = {.lex_state = 876}, - [4055] = {.lex_state = 876}, - [4056] = {.lex_state = 23}, - [4057] = {.lex_state = 23}, - [4058] = {.lex_state = 876}, - [4059] = {.lex_state = 876}, - [4060] = {.lex_state = 876}, - [4061] = {.lex_state = 876}, - [4062] = {.lex_state = 876}, - [4063] = {.lex_state = 876}, - [4064] = {.lex_state = 876}, - [4065] = {.lex_state = 23}, - [4066] = {.lex_state = 876}, - [4067] = {.lex_state = 876}, - [4068] = {.lex_state = 876}, - [4069] = {.lex_state = 876}, - [4070] = {.lex_state = 876}, - [4071] = {.lex_state = 23}, - [4072] = {.lex_state = 23}, - [4073] = {.lex_state = 876}, + [4052] = {.lex_state = 882}, + [4053] = {.lex_state = 882}, + [4054] = {.lex_state = 109}, + [4055] = {.lex_state = 882}, + [4056] = {.lex_state = 882}, + [4057] = {.lex_state = 882}, + [4058] = {.lex_state = 882}, + [4059] = {.lex_state = 882}, + [4060] = {.lex_state = 882}, + [4061] = {.lex_state = 882}, + [4062] = {.lex_state = 882}, + [4063] = {.lex_state = 882}, + [4064] = {.lex_state = 882}, + [4065] = {.lex_state = 882}, + [4066] = {.lex_state = 882}, + [4067] = {.lex_state = 882}, + [4068] = {.lex_state = 882}, + [4069] = {.lex_state = 882}, + [4070] = {.lex_state = 882}, + [4071] = {.lex_state = 882}, + [4072] = {.lex_state = 882}, + [4073] = {.lex_state = 882}, [4074] = {.lex_state = 23}, - [4075] = {.lex_state = 876}, - [4076] = {.lex_state = 876}, - [4077] = {.lex_state = 876}, - [4078] = {.lex_state = 876}, - [4079] = {.lex_state = 23}, - [4080] = {.lex_state = 876}, - [4081] = {.lex_state = 876}, - [4082] = {.lex_state = 876}, - [4083] = {.lex_state = 876}, - [4084] = {.lex_state = 876}, + [4075] = {.lex_state = 23}, + [4076] = {.lex_state = 882}, + [4077] = {.lex_state = 882}, + [4078] = {.lex_state = 882}, + [4079] = {.lex_state = 882}, + [4080] = {.lex_state = 882}, + [4081] = {.lex_state = 882}, + [4082] = {.lex_state = 882}, + [4083] = {.lex_state = 882}, + [4084] = {.lex_state = 882}, [4085] = {.lex_state = 23}, - [4086] = {.lex_state = 876}, - [4087] = {.lex_state = 876}, - [4088] = {.lex_state = 876}, - [4089] = {.lex_state = 876}, - [4090] = {.lex_state = 876}, - [4091] = {.lex_state = 876}, - [4092] = {.lex_state = 876}, - [4093] = {.lex_state = 876}, - [4094] = {.lex_state = 876}, - [4095] = {.lex_state = 876}, - [4096] = {.lex_state = 876}, - [4097] = {.lex_state = 876}, - [4098] = {.lex_state = 23}, - [4099] = {.lex_state = 876}, - [4100] = {.lex_state = 876}, - [4101] = {.lex_state = 23}, - [4102] = {.lex_state = 876}, - [4103] = {.lex_state = 876}, - [4104] = {.lex_state = 23}, - [4105] = {.lex_state = 876}, - [4106] = {.lex_state = 876}, - [4107] = {.lex_state = 876}, - [4108] = {.lex_state = 23}, - [4109] = {.lex_state = 23}, - [4110] = {.lex_state = 876}, - [4111] = {.lex_state = 876}, - [4112] = {.lex_state = 876}, - [4113] = {.lex_state = 876}, - [4114] = {.lex_state = 876}, - [4115] = {.lex_state = 876}, + [4086] = {.lex_state = 882}, + [4087] = {.lex_state = 882}, + [4088] = {.lex_state = 23}, + [4089] = {.lex_state = 882}, + [4090] = {.lex_state = 23}, + [4091] = {.lex_state = 882}, + [4092] = {.lex_state = 23}, + [4093] = {.lex_state = 23}, + [4094] = {.lex_state = 882}, + [4095] = {.lex_state = 882}, + [4096] = {.lex_state = 23}, + [4097] = {.lex_state = 23}, + [4098] = {.lex_state = 882}, + [4099] = {.lex_state = 882}, + [4100] = {.lex_state = 23}, + [4101] = {.lex_state = 882}, + [4102] = {.lex_state = 882}, + [4103] = {.lex_state = 23}, + [4104] = {.lex_state = 882}, + [4105] = {.lex_state = 882}, + [4106] = {.lex_state = 882}, + [4107] = {.lex_state = 40}, + [4108] = {.lex_state = 40}, + [4109] = {.lex_state = 882}, + [4110] = {.lex_state = 882}, + [4111] = {.lex_state = 882}, + [4112] = {.lex_state = 882}, + [4113] = {.lex_state = 882}, + [4114] = {.lex_state = 23}, + [4115] = {.lex_state = 882}, [4116] = {.lex_state = 23}, - [4117] = {.lex_state = 23}, - [4118] = {.lex_state = 876}, - [4119] = {.lex_state = 876}, - [4120] = {.lex_state = 876}, - [4121] = {.lex_state = 38}, - [4122] = {.lex_state = 876}, - [4123] = {.lex_state = 23}, + [4117] = {.lex_state = 882}, + [4118] = {.lex_state = 23}, + [4119] = {.lex_state = 882}, + [4120] = {.lex_state = 882}, + [4121] = {.lex_state = 23}, + [4122] = {.lex_state = 882}, + [4123] = {.lex_state = 882}, [4124] = {.lex_state = 23}, - [4125] = {.lex_state = 38}, - [4126] = {.lex_state = 876}, - [4127] = {.lex_state = 23}, - [4128] = {.lex_state = 876}, - [4129] = {.lex_state = 876}, - [4130] = {.lex_state = 876}, - [4131] = {.lex_state = 876}, - [4132] = {.lex_state = 23}, - [4133] = {.lex_state = 876}, - [4134] = {.lex_state = 23}, - [4135] = {.lex_state = 38}, - [4136] = {.lex_state = 876}, - [4137] = {.lex_state = 876}, - [4138] = {.lex_state = 876}, - [4139] = {.lex_state = 38}, - [4140] = {.lex_state = 876}, - [4141] = {.lex_state = 876}, - [4142] = {.lex_state = 876}, - [4143] = {.lex_state = 876}, - [4144] = {.lex_state = 876}, - [4145] = {.lex_state = 876}, - [4146] = {.lex_state = 876}, - [4147] = {.lex_state = 876}, - [4148] = {.lex_state = 876}, - [4149] = {.lex_state = 876}, - [4150] = {.lex_state = 876}, - [4151] = {.lex_state = 876}, - [4152] = {.lex_state = 876}, + [4125] = {.lex_state = 882}, + [4126] = {.lex_state = 882}, + [4127] = {.lex_state = 882}, + [4128] = {.lex_state = 882}, + [4129] = {.lex_state = 882}, + [4130] = {.lex_state = 23}, + [4131] = {.lex_state = 882}, + [4132] = {.lex_state = 882}, + [4133] = {.lex_state = 882}, + [4134] = {.lex_state = 882}, + [4135] = {.lex_state = 882}, + [4136] = {.lex_state = 47}, + [4137] = {.lex_state = 882}, + [4138] = {.lex_state = 882}, + [4139] = {.lex_state = 882}, + [4140] = {.lex_state = 882}, + [4141] = {.lex_state = 882}, + [4142] = {.lex_state = 882}, + [4143] = {.lex_state = 882}, + [4144] = {.lex_state = 882}, + [4145] = {.lex_state = 882}, + [4146] = {.lex_state = 882}, + [4147] = {.lex_state = 23}, + [4148] = {.lex_state = 882}, + [4149] = {.lex_state = 882}, + [4150] = {.lex_state = 23}, + [4151] = {.lex_state = 882}, + [4152] = {.lex_state = 23}, [4153] = {.lex_state = 23}, - [4154] = {.lex_state = 876}, - [4155] = {.lex_state = 876}, - [4156] = {.lex_state = 876}, - [4157] = {.lex_state = 876}, - [4158] = {.lex_state = 876}, - [4159] = {.lex_state = 44}, - [4160] = {.lex_state = 876}, - [4161] = {.lex_state = 23}, - [4162] = {.lex_state = 23}, - [4163] = {.lex_state = 23}, - [4164] = {.lex_state = 876}, - [4165] = {.lex_state = 23}, - [4166] = {.lex_state = 876}, - [4167] = {.lex_state = 23}, - [4168] = {.lex_state = 876}, - [4169] = {.lex_state = 876}, - [4170] = {.lex_state = 876}, - [4171] = {.lex_state = 876}, - [4172] = {.lex_state = 44}, - [4173] = {.lex_state = 876}, - [4174] = {.lex_state = 876}, - [4175] = {.lex_state = 876}, - [4176] = {.lex_state = 876}, - [4177] = {.lex_state = 876}, - [4178] = {.lex_state = 44}, - [4179] = {.lex_state = 876}, - [4180] = {.lex_state = 23}, - [4181] = {.lex_state = 876}, - [4182] = {.lex_state = 876}, - [4183] = {.lex_state = 876}, - [4184] = {.lex_state = 876}, - [4185] = {.lex_state = 876}, - [4186] = {.lex_state = 876}, - [4187] = {.lex_state = 876}, - [4188] = {.lex_state = 876}, - [4189] = {.lex_state = 876}, - [4190] = {.lex_state = 876}, - [4191] = {.lex_state = 876}, - [4192] = {.lex_state = 876}, - [4193] = {.lex_state = 876}, - [4194] = {.lex_state = 876}, - [4195] = {.lex_state = 876}, - [4196] = {.lex_state = 876}, - [4197] = {.lex_state = 876}, - [4198] = {.lex_state = 876}, - [4199] = {.lex_state = 876}, - [4200] = {.lex_state = 876}, - [4201] = {.lex_state = 876}, - [4202] = {.lex_state = 876}, - [4203] = {.lex_state = 876}, - [4204] = {.lex_state = 876}, - [4205] = {.lex_state = 23}, - [4206] = {.lex_state = 876}, - [4207] = {.lex_state = 876}, - [4208] = {.lex_state = 876}, - [4209] = {.lex_state = 876}, + [4154] = {.lex_state = 23}, + [4155] = {.lex_state = 882}, + [4156] = {.lex_state = 882}, + [4157] = {.lex_state = 882}, + [4158] = {.lex_state = 40}, + [4159] = {.lex_state = 882}, + [4160] = {.lex_state = 882}, + [4161] = {.lex_state = 882}, + [4162] = {.lex_state = 882}, + [4163] = {.lex_state = 882}, + [4164] = {.lex_state = 23}, + [4165] = {.lex_state = 882}, + [4166] = {.lex_state = 882}, + [4167] = {.lex_state = 882}, + [4168] = {.lex_state = 882}, + [4169] = {.lex_state = 882}, + [4170] = {.lex_state = 882}, + [4171] = {.lex_state = 882}, + [4172] = {.lex_state = 882}, + [4173] = {.lex_state = 882}, + [4174] = {.lex_state = 882}, + [4175] = {.lex_state = 40}, + [4176] = {.lex_state = 882}, + [4177] = {.lex_state = 882}, + [4178] = {.lex_state = 40}, + [4179] = {.lex_state = 882}, + [4180] = {.lex_state = 882}, + [4181] = {.lex_state = 882}, + [4182] = {.lex_state = 882}, + [4183] = {.lex_state = 882}, + [4184] = {.lex_state = 882}, + [4185] = {.lex_state = 882}, + [4186] = {.lex_state = 23}, + [4187] = {.lex_state = 882}, + [4188] = {.lex_state = 23}, + [4189] = {.lex_state = 882}, + [4190] = {.lex_state = 882}, + [4191] = {.lex_state = 882}, + [4192] = {.lex_state = 882}, + [4193] = {.lex_state = 882}, + [4194] = {.lex_state = 882}, + [4195] = {.lex_state = 882}, + [4196] = {.lex_state = 882}, + [4197] = {.lex_state = 882}, + [4198] = {.lex_state = 882}, + [4199] = {.lex_state = 882}, + [4200] = {.lex_state = 882}, + [4201] = {.lex_state = 23}, + [4202] = {.lex_state = 882}, + [4203] = {.lex_state = 882}, + [4204] = {.lex_state = 882}, + [4205] = {.lex_state = 882}, + [4206] = {.lex_state = 882}, + [4207] = {.lex_state = 882}, + [4208] = {.lex_state = 882}, + [4209] = {.lex_state = 882}, [4210] = {.lex_state = 23}, - [4211] = {.lex_state = 876}, - [4212] = {.lex_state = 23}, - [4213] = {.lex_state = 876}, - [4214] = {.lex_state = 23}, - [4215] = {.lex_state = 876}, - [4216] = {.lex_state = 876}, - [4217] = {.lex_state = 23}, - [4218] = {.lex_state = 876}, - [4219] = {.lex_state = 876}, - [4220] = {.lex_state = 23}, - [4221] = {.lex_state = 876}, - [4222] = {.lex_state = 44}, - [4223] = {.lex_state = 876}, - [4224] = {.lex_state = 876}, - [4225] = {.lex_state = 876}, - [4226] = {.lex_state = 876}, - [4227] = {.lex_state = 876}, - [4228] = {.lex_state = 876}, + [4211] = {.lex_state = 23}, + [4212] = {.lex_state = 882}, + [4213] = {.lex_state = 882}, + [4214] = {.lex_state = 40}, + [4215] = {.lex_state = 23}, + [4216] = {.lex_state = 23}, + [4217] = {.lex_state = 40}, + [4218] = {.lex_state = 882}, + [4219] = {.lex_state = 882}, + [4220] = {.lex_state = 882}, + [4221] = {.lex_state = 882}, + [4222] = {.lex_state = 23}, + [4223] = {.lex_state = 23}, + [4224] = {.lex_state = 882}, + [4225] = {.lex_state = 882}, + [4226] = {.lex_state = 882}, + [4227] = {.lex_state = 23}, + [4228] = {.lex_state = 882}, [4229] = {.lex_state = 23}, - [4230] = {.lex_state = 876}, - [4231] = {.lex_state = 23}, - [4232] = {.lex_state = 876}, - [4233] = {.lex_state = 876}, - [4234] = {.lex_state = 876}, - [4235] = {.lex_state = 23}, - [4236] = {.lex_state = 876}, - [4237] = {.lex_state = 876}, - [4238] = {.lex_state = 23}, - [4239] = {.lex_state = 23}, - [4240] = {.lex_state = 876}, - [4241] = {.lex_state = 876}, - [4242] = {.lex_state = 23}, - [4243] = {.lex_state = 23}, - [4244] = {.lex_state = 23}, + [4230] = {.lex_state = 882}, + [4231] = {.lex_state = 882}, + [4232] = {.lex_state = 882}, + [4233] = {.lex_state = 882}, + [4234] = {.lex_state = 882}, + [4235] = {.lex_state = 882}, + [4236] = {.lex_state = 882}, + [4237] = {.lex_state = 882}, + [4238] = {.lex_state = 882}, + [4239] = {.lex_state = 882}, + [4240] = {.lex_state = 882}, + [4241] = {.lex_state = 882}, + [4242] = {.lex_state = 882}, + [4243] = {.lex_state = 882}, + [4244] = {.lex_state = 882}, [4245] = {.lex_state = 23}, - [4246] = {.lex_state = 876}, - [4247] = {.lex_state = 23}, - [4248] = {.lex_state = 23}, + [4246] = {.lex_state = 882}, + [4247] = {.lex_state = 882}, + [4248] = {.lex_state = 882}, [4249] = {.lex_state = 23}, - [4250] = {.lex_state = 876}, - [4251] = {.lex_state = 876}, - [4252] = {.lex_state = 876}, - [4253] = {.lex_state = 876}, - [4254] = {.lex_state = 876}, - [4255] = {.lex_state = 876}, - [4256] = {.lex_state = 876}, - [4257] = {.lex_state = 876}, - [4258] = {.lex_state = 876}, - [4259] = {.lex_state = 876}, - [4260] = {.lex_state = 876}, - [4261] = {.lex_state = 23}, - [4262] = {.lex_state = 876}, - [4263] = {.lex_state = 876}, - [4264] = {.lex_state = 876}, - [4265] = {.lex_state = 876}, - [4266] = {.lex_state = 876}, - [4267] = {.lex_state = 876}, + [4250] = {.lex_state = 882}, + [4251] = {.lex_state = 882}, + [4252] = {.lex_state = 23}, + [4253] = {.lex_state = 23}, + [4254] = {.lex_state = 882}, + [4255] = {.lex_state = 882}, + [4256] = {.lex_state = 882}, + [4257] = {.lex_state = 882}, + [4258] = {.lex_state = 882}, + [4259] = {.lex_state = 23}, + [4260] = {.lex_state = 882}, + [4261] = {.lex_state = 882}, + [4262] = {.lex_state = 23}, + [4263] = {.lex_state = 882}, + [4264] = {.lex_state = 882}, + [4265] = {.lex_state = 47}, + [4266] = {.lex_state = 882}, + [4267] = {.lex_state = 882}, [4268] = {.lex_state = 23}, - [4269] = {.lex_state = 876}, - [4270] = {.lex_state = 876}, - [4271] = {.lex_state = 876}, - [4272] = {.lex_state = 23}, - [4273] = {.lex_state = 23}, - [4274] = {.lex_state = 876}, - [4275] = {.lex_state = 23}, - [4276] = {.lex_state = 876}, - [4277] = {.lex_state = 23}, - [4278] = {.lex_state = 876}, - [4279] = {.lex_state = 23}, - [4280] = {.lex_state = 876}, - [4281] = {.lex_state = 876}, - [4282] = {.lex_state = 876}, - [4283] = {.lex_state = 876}, - [4284] = {.lex_state = 876}, - [4285] = {.lex_state = 38}, - [4286] = {.lex_state = 876}, - [4287] = {.lex_state = 876}, - [4288] = {.lex_state = 876}, - [4289] = {.lex_state = 876}, - [4290] = {.lex_state = 876}, - [4291] = {.lex_state = 876}, - [4292] = {.lex_state = 38}, - [4293] = {.lex_state = 876}, - [4294] = {.lex_state = 23}, - [4295] = {.lex_state = 876}, - [4296] = {.lex_state = 23}, - [4297] = {.lex_state = 876}, - [4298] = {.lex_state = 876}, - [4299] = {.lex_state = 23}, - [4300] = {.lex_state = 876}, - [4301] = {.lex_state = 23}, - [4302] = {.lex_state = 44}, - [4303] = {.lex_state = 876}, + [4269] = {.lex_state = 23}, + [4270] = {.lex_state = 882}, + [4271] = {.lex_state = 47}, + [4272] = {.lex_state = 882}, + [4273] = {.lex_state = 882}, + [4274] = {.lex_state = 882}, + [4275] = {.lex_state = 882}, + [4276] = {.lex_state = 882}, + [4277] = {.lex_state = 882}, + [4278] = {.lex_state = 882}, + [4279] = {.lex_state = 882}, + [4280] = {.lex_state = 882}, + [4281] = {.lex_state = 882}, + [4282] = {.lex_state = 882}, + [4283] = {.lex_state = 882}, + [4284] = {.lex_state = 882}, + [4285] = {.lex_state = 882}, + [4286] = {.lex_state = 882}, + [4287] = {.lex_state = 882}, + [4288] = {.lex_state = 23}, + [4289] = {.lex_state = 882}, + [4290] = {.lex_state = 882}, + [4291] = {.lex_state = 882}, + [4292] = {.lex_state = 23}, + [4293] = {.lex_state = 882}, + [4294] = {.lex_state = 882}, + [4295] = {.lex_state = 23}, + [4296] = {.lex_state = 882}, + [4297] = {.lex_state = 23}, + [4298] = {.lex_state = 23}, + [4299] = {.lex_state = 882}, + [4300] = {.lex_state = 882}, + [4301] = {.lex_state = 882}, + [4302] = {.lex_state = 882}, + [4303] = {.lex_state = 882}, [4304] = {.lex_state = 23}, - [4305] = {.lex_state = 876}, - [4306] = {.lex_state = 876}, - [4307] = {.lex_state = 876}, - [4308] = {.lex_state = 876}, - [4309] = {.lex_state = 876}, - [4310] = {.lex_state = 876}, - [4311] = {.lex_state = 876}, - [4312] = {.lex_state = 876}, - [4313] = {.lex_state = 876}, - [4314] = {.lex_state = 876}, - [4315] = {.lex_state = 876}, - [4316] = {.lex_state = 876}, - [4317] = {.lex_state = 876}, - [4318] = {.lex_state = 876}, - [4319] = {.lex_state = 876}, - [4320] = {.lex_state = 876}, - [4321] = {.lex_state = 876}, - [4322] = {.lex_state = 876}, - [4323] = {.lex_state = 876}, - [4324] = {.lex_state = 876}, - [4325] = {.lex_state = 876}, - [4326] = {.lex_state = 876}, + [4305] = {.lex_state = 47}, + [4306] = {.lex_state = 23}, + [4307] = {.lex_state = 882}, + [4308] = {.lex_state = 882}, + [4309] = {.lex_state = 882}, + [4310] = {.lex_state = 882}, + [4311] = {.lex_state = 882}, + [4312] = {.lex_state = 882}, + [4313] = {.lex_state = 882}, + [4314] = {.lex_state = 882}, + [4315] = {.lex_state = 882}, + [4316] = {.lex_state = 882}, + [4317] = {.lex_state = 882}, + [4318] = {.lex_state = 882}, + [4319] = {.lex_state = 23}, + [4320] = {.lex_state = 882}, + [4321] = {.lex_state = 23}, + [4322] = {.lex_state = 882}, + [4323] = {.lex_state = 882}, + [4324] = {.lex_state = 23}, + [4325] = {.lex_state = 23}, + [4326] = {.lex_state = 882}, [4327] = {.lex_state = 23}, - [4328] = {.lex_state = 876}, - [4329] = {.lex_state = 876}, - [4330] = {.lex_state = 876}, - [4331] = {.lex_state = 876}, - [4332] = {.lex_state = 876}, - [4333] = {.lex_state = 876}, - [4334] = {.lex_state = 876}, - [4335] = {.lex_state = 23}, - [4336] = {.lex_state = 876}, - [4337] = {.lex_state = 23}, - [4338] = {.lex_state = 876}, - [4339] = {.lex_state = 38}, - [4340] = {.lex_state = 876}, - [4341] = {.lex_state = 876}, - [4342] = {.lex_state = 37}, - [4343] = {.lex_state = 876}, - [4344] = {.lex_state = 38}, - [4345] = {.lex_state = 38}, - [4346] = {.lex_state = 876}, - [4347] = {.lex_state = 876}, - [4348] = {.lex_state = 876}, - [4349] = {.lex_state = 876}, - [4350] = {.lex_state = 876}, - [4351] = {.lex_state = 876}, - [4352] = {.lex_state = 23}, - [4353] = {.lex_state = 876}, - [4354] = {.lex_state = 876}, - [4355] = {.lex_state = 876}, - [4356] = {.lex_state = 23}, + [4328] = {.lex_state = 23}, + [4329] = {.lex_state = 23}, + [4330] = {.lex_state = 882}, + [4331] = {.lex_state = 882}, + [4332] = {.lex_state = 882}, + [4333] = {.lex_state = 882}, + [4334] = {.lex_state = 23}, + [4335] = {.lex_state = 882}, + [4336] = {.lex_state = 882}, + [4337] = {.lex_state = 882}, + [4338] = {.lex_state = 882}, + [4339] = {.lex_state = 882}, + [4340] = {.lex_state = 882}, + [4341] = {.lex_state = 882}, + [4342] = {.lex_state = 47}, + [4343] = {.lex_state = 882}, + [4344] = {.lex_state = 882}, + [4345] = {.lex_state = 882}, + [4346] = {.lex_state = 882}, + [4347] = {.lex_state = 882}, + [4348] = {.lex_state = 882}, + [4349] = {.lex_state = 882}, + [4350] = {.lex_state = 23}, + [4351] = {.lex_state = 882}, + [4352] = {.lex_state = 882}, + [4353] = {.lex_state = 882}, + [4354] = {.lex_state = 882}, + [4355] = {.lex_state = 23}, + [4356] = {.lex_state = 882}, [4357] = {.lex_state = 23}, - [4358] = {.lex_state = 876}, - [4359] = {.lex_state = 876}, - [4360] = {.lex_state = 876}, - [4361] = {.lex_state = 23}, - [4362] = {.lex_state = 876}, - [4363] = {.lex_state = 876}, - [4364] = {.lex_state = 876}, - [4365] = {.lex_state = 876}, - [4366] = {.lex_state = 876}, - [4367] = {.lex_state = 876}, - [4368] = {.lex_state = 876}, - [4369] = {.lex_state = 876}, - [4370] = {.lex_state = 876}, - [4371] = {.lex_state = 876}, - [4372] = {.lex_state = 876}, - [4373] = {.lex_state = 876}, - [4374] = {.lex_state = 876}, - [4375] = {.lex_state = 876}, - [4376] = {.lex_state = 876}, - [4377] = {.lex_state = 876}, - [4378] = {.lex_state = 876}, - [4379] = {.lex_state = 876}, - [4380] = {.lex_state = 876}, - [4381] = {.lex_state = 876}, - [4382] = {.lex_state = 876}, - [4383] = {.lex_state = 876}, - [4384] = {.lex_state = 876}, - [4385] = {.lex_state = 876}, - [4386] = {.lex_state = 876}, - [4387] = {.lex_state = 876}, - [4388] = {.lex_state = 876}, - [4389] = {.lex_state = 876}, - [4390] = {.lex_state = 876}, - [4391] = {.lex_state = 876}, - [4392] = {.lex_state = 23}, - [4393] = {.lex_state = 876}, - [4394] = {.lex_state = 876}, - [4395] = {.lex_state = 876}, - [4396] = {.lex_state = 38}, - [4397] = {.lex_state = 876}, - [4398] = {.lex_state = 876}, - [4399] = {.lex_state = 876}, - [4400] = {.lex_state = 876}, - [4401] = {.lex_state = 876}, - [4402] = {.lex_state = 23}, - [4403] = {.lex_state = 876}, - [4404] = {.lex_state = 876}, - [4405] = {.lex_state = 876}, - [4406] = {.lex_state = 876}, - [4407] = {.lex_state = 876}, - [4408] = {.lex_state = 876}, - [4409] = {.lex_state = 876}, - [4410] = {.lex_state = 876}, - [4411] = {.lex_state = 876}, - [4412] = {.lex_state = 23}, - [4413] = {.lex_state = 876}, - [4414] = {.lex_state = 876}, - [4415] = {.lex_state = 876}, - [4416] = {.lex_state = 876}, - [4417] = {.lex_state = 876}, - [4418] = {.lex_state = 876}, - [4419] = {.lex_state = 876}, - [4420] = {.lex_state = 876}, - [4421] = {.lex_state = 876}, - [4422] = {.lex_state = 876}, - [4423] = {.lex_state = 876}, - [4424] = {.lex_state = 876}, - [4425] = {.lex_state = 876}, - [4426] = {.lex_state = 876}, - [4427] = {.lex_state = 876}, - [4428] = {.lex_state = 876}, - [4429] = {.lex_state = 876}, - [4430] = {.lex_state = 876}, - [4431] = {.lex_state = 876}, - [4432] = {.lex_state = 876}, + [4358] = {.lex_state = 882}, + [4359] = {.lex_state = 882}, + [4360] = {.lex_state = 882}, + [4361] = {.lex_state = 882}, + [4362] = {.lex_state = 882}, + [4363] = {.lex_state = 882}, + [4364] = {.lex_state = 882}, + [4365] = {.lex_state = 882}, + [4366] = {.lex_state = 882}, + [4367] = {.lex_state = 882}, + [4368] = {.lex_state = 882}, + [4369] = {.lex_state = 882}, + [4370] = {.lex_state = 882}, + [4371] = {.lex_state = 882}, + [4372] = {.lex_state = 882}, + [4373] = {.lex_state = 882}, + [4374] = {.lex_state = 882}, + [4375] = {.lex_state = 882}, + [4376] = {.lex_state = 882}, + [4377] = {.lex_state = 882}, + [4378] = {.lex_state = 882}, + [4379] = {.lex_state = 882}, + [4380] = {.lex_state = 882}, + [4381] = {.lex_state = 882}, + [4382] = {.lex_state = 882}, + [4383] = {.lex_state = 882}, + [4384] = {.lex_state = 882}, + [4385] = {.lex_state = 882}, + [4386] = {.lex_state = 882}, + [4387] = {.lex_state = 23}, + [4388] = {.lex_state = 882}, + [4389] = {.lex_state = 882}, + [4390] = {.lex_state = 882}, + [4391] = {.lex_state = 882}, + [4392] = {.lex_state = 882}, + [4393] = {.lex_state = 882}, + [4394] = {.lex_state = 882}, + [4395] = {.lex_state = 882}, + [4396] = {.lex_state = 882}, + [4397] = {.lex_state = 882}, + [4398] = {.lex_state = 882}, + [4399] = {.lex_state = 882}, + [4400] = {.lex_state = 882}, + [4401] = {.lex_state = 882}, + [4402] = {.lex_state = 882}, + [4403] = {.lex_state = 882}, + [4404] = {.lex_state = 882}, + [4405] = {.lex_state = 882}, + [4406] = {.lex_state = 882}, + [4407] = {.lex_state = 882}, + [4408] = {.lex_state = 882}, + [4409] = {.lex_state = 882}, + [4410] = {.lex_state = 882}, + [4411] = {.lex_state = 882}, + [4412] = {.lex_state = 882}, + [4413] = {.lex_state = 39}, + [4414] = {.lex_state = 40}, + [4415] = {.lex_state = 40}, + [4416] = {.lex_state = 882}, + [4417] = {.lex_state = 882}, + [4418] = {.lex_state = 882}, + [4419] = {.lex_state = 23}, + [4420] = {.lex_state = 882}, + [4421] = {.lex_state = 23}, + [4422] = {.lex_state = 23}, + [4423] = {.lex_state = 882}, + [4424] = {.lex_state = 882}, + [4425] = {.lex_state = 882}, + [4426] = {.lex_state = 882}, + [4427] = {.lex_state = 882}, + [4428] = {.lex_state = 882}, + [4429] = {.lex_state = 882}, + [4430] = {.lex_state = 882}, + [4431] = {.lex_state = 882}, + [4432] = {.lex_state = 882}, [4433] = {.lex_state = 23}, - [4434] = {.lex_state = 876}, - [4435] = {.lex_state = 876}, - [4436] = {.lex_state = 23}, - [4437] = {.lex_state = 876}, - [4438] = {.lex_state = 876}, - [4439] = {.lex_state = 876}, - [4440] = {.lex_state = 876}, - [4441] = {.lex_state = 876}, - [4442] = {.lex_state = 876}, - [4443] = {.lex_state = 876}, - [4444] = {.lex_state = 876}, - [4445] = {.lex_state = 876}, - [4446] = {.lex_state = 23}, - [4447] = {.lex_state = 876}, - [4448] = {.lex_state = 876}, - [4449] = {.lex_state = 876}, - [4450] = {.lex_state = 876}, - [4451] = {.lex_state = 876}, - [4452] = {.lex_state = 876}, - [4453] = {.lex_state = 876}, - [4454] = {.lex_state = 876}, - [4455] = {.lex_state = 23}, - [4456] = {.lex_state = 876}, - [4457] = {.lex_state = 876}, - [4458] = {.lex_state = 876}, - [4459] = {.lex_state = 44}, - [4460] = {.lex_state = 876}, - [4461] = {.lex_state = 876}, - [4462] = {.lex_state = 23}, - [4463] = {.lex_state = 876}, - [4464] = {.lex_state = 876}, - [4465] = {.lex_state = 876}, - [4466] = {.lex_state = 876}, - [4467] = {.lex_state = 876}, - [4468] = {.lex_state = 23}, - [4469] = {.lex_state = 23}, - [4470] = {.lex_state = 23}, - [4471] = {.lex_state = 876}, - [4472] = {.lex_state = 23}, - [4473] = {.lex_state = 876}, - [4474] = {.lex_state = 23}, - [4475] = {.lex_state = 876}, - [4476] = {.lex_state = 23}, - [4477] = {.lex_state = 23}, - [4478] = {.lex_state = 23}, - [4479] = {.lex_state = 23}, - [4480] = {.lex_state = 23}, - [4481] = {.lex_state = 876}, - [4482] = {.lex_state = 23}, - [4483] = {.lex_state = 23}, - [4484] = {.lex_state = 876}, - [4485] = {.lex_state = 876}, - [4486] = {.lex_state = 876}, - [4487] = {.lex_state = 38}, - [4488] = {.lex_state = 876}, - [4489] = {.lex_state = 38}, - [4490] = {.lex_state = 876}, - [4491] = {.lex_state = 876}, - [4492] = {.lex_state = 38}, - [4493] = {.lex_state = 38}, - [4494] = {.lex_state = 876}, - [4495] = {.lex_state = 876}, - [4496] = {.lex_state = 876}, - [4497] = {.lex_state = 876}, - [4498] = {.lex_state = 23}, - [4499] = {.lex_state = 876}, - [4500] = {.lex_state = 876}, - [4501] = {.lex_state = 876}, - [4502] = {.lex_state = 876}, - [4503] = {.lex_state = 38}, - [4504] = {.lex_state = 38}, - [4505] = {.lex_state = 876}, - [4506] = {.lex_state = 876}, - [4507] = {.lex_state = 876}, - [4508] = {.lex_state = 876}, - [4509] = {.lex_state = 876}, - [4510] = {.lex_state = 876}, - [4511] = {.lex_state = 876}, - [4512] = {.lex_state = 23}, - [4513] = {.lex_state = 876}, - [4514] = {.lex_state = 876}, - [4515] = {.lex_state = 23}, - [4516] = {.lex_state = 876}, - [4517] = {.lex_state = 876}, - [4518] = {.lex_state = 23}, + [4434] = {.lex_state = 882}, + [4435] = {.lex_state = 882}, + [4436] = {.lex_state = 882}, + [4437] = {.lex_state = 882}, + [4438] = {.lex_state = 882}, + [4439] = {.lex_state = 882}, + [4440] = {.lex_state = 882}, + [4441] = {.lex_state = 882}, + [4442] = {.lex_state = 47}, + [4443] = {.lex_state = 882}, + [4444] = {.lex_state = 882}, + [4445] = {.lex_state = 882}, + [4446] = {.lex_state = 882}, + [4447] = {.lex_state = 882}, + [4448] = {.lex_state = 882}, + [4449] = {.lex_state = 23}, + [4450] = {.lex_state = 882}, + [4451] = {.lex_state = 882}, + [4452] = {.lex_state = 882}, + [4453] = {.lex_state = 882}, + [4454] = {.lex_state = 23}, + [4455] = {.lex_state = 882}, + [4456] = {.lex_state = 882}, + [4457] = {.lex_state = 882}, + [4458] = {.lex_state = 882}, + [4459] = {.lex_state = 882}, + [4460] = {.lex_state = 882}, + [4461] = {.lex_state = 882}, + [4462] = {.lex_state = 882}, + [4463] = {.lex_state = 882}, + [4464] = {.lex_state = 23}, + [4465] = {.lex_state = 882}, + [4466] = {.lex_state = 23}, + [4467] = {.lex_state = 882}, + [4468] = {.lex_state = 882}, + [4469] = {.lex_state = 882}, + [4470] = {.lex_state = 882}, + [4471] = {.lex_state = 882}, + [4472] = {.lex_state = 882}, + [4473] = {.lex_state = 882}, + [4474] = {.lex_state = 882}, + [4475] = {.lex_state = 23}, + [4476] = {.lex_state = 882}, + [4477] = {.lex_state = 882}, + [4478] = {.lex_state = 882}, + [4479] = {.lex_state = 882}, + [4480] = {.lex_state = 882}, + [4481] = {.lex_state = 882}, + [4482] = {.lex_state = 882}, + [4483] = {.lex_state = 882}, + [4484] = {.lex_state = 882}, + [4485] = {.lex_state = 882}, + [4486] = {.lex_state = 882}, + [4487] = {.lex_state = 40}, + [4488] = {.lex_state = 882}, + [4489] = {.lex_state = 23}, + [4490] = {.lex_state = 23}, + [4491] = {.lex_state = 882}, + [4492] = {.lex_state = 23}, + [4493] = {.lex_state = 882}, + [4494] = {.lex_state = 882}, + [4495] = {.lex_state = 882}, + [4496] = {.lex_state = 23}, + [4497] = {.lex_state = 23}, + [4498] = {.lex_state = 882}, + [4499] = {.lex_state = 23}, + [4500] = {.lex_state = 23}, + [4501] = {.lex_state = 882}, + [4502] = {.lex_state = 23}, + [4503] = {.lex_state = 23}, + [4504] = {.lex_state = 882}, + [4505] = {.lex_state = 882}, + [4506] = {.lex_state = 23}, + [4507] = {.lex_state = 882}, + [4508] = {.lex_state = 882}, + [4509] = {.lex_state = 882}, + [4510] = {.lex_state = 882}, + [4511] = {.lex_state = 882}, + [4512] = {.lex_state = 40}, + [4513] = {.lex_state = 40}, + [4514] = {.lex_state = 882}, + [4515] = {.lex_state = 882}, + [4516] = {.lex_state = 882}, + [4517] = {.lex_state = 882}, + [4518] = {.lex_state = 882}, [4519] = {.lex_state = 23}, - [4520] = {.lex_state = 876}, - [4521] = {.lex_state = 876}, - [4522] = {.lex_state = 23}, - [4523] = {.lex_state = 23}, - [4524] = {.lex_state = 23}, - [4525] = {.lex_state = 23}, - [4526] = {.lex_state = 876}, - [4527] = {.lex_state = 23}, - [4528] = {.lex_state = 876}, - [4529] = {.lex_state = 876}, - [4530] = {.lex_state = 23}, - [4531] = {.lex_state = 876}, - [4532] = {.lex_state = 876}, - [4533] = {.lex_state = 38}, - [4534] = {.lex_state = 38}, - [4535] = {.lex_state = 876}, - [4536] = {.lex_state = 876}, - [4537] = {.lex_state = 876}, + [4520] = {.lex_state = 882}, + [4521] = {.lex_state = 882}, + [4522] = {.lex_state = 882}, + [4523] = {.lex_state = 40}, + [4524] = {.lex_state = 40}, + [4525] = {.lex_state = 882}, + [4526] = {.lex_state = 882}, + [4527] = {.lex_state = 882}, + [4528] = {.lex_state = 882}, + [4529] = {.lex_state = 882}, + [4530] = {.lex_state = 882}, + [4531] = {.lex_state = 882}, + [4532] = {.lex_state = 882}, + [4533] = {.lex_state = 882}, + [4534] = {.lex_state = 23}, + [4535] = {.lex_state = 23}, + [4536] = {.lex_state = 882}, + [4537] = {.lex_state = 882}, [4538] = {.lex_state = 23}, - [4539] = {.lex_state = 876}, - [4540] = {.lex_state = 876}, - [4541] = {.lex_state = 876}, - [4542] = {.lex_state = 38}, - [4543] = {.lex_state = 38}, - [4544] = {.lex_state = 876}, - [4545] = {.lex_state = 876}, - [4546] = {.lex_state = 876}, - [4547] = {.lex_state = 876}, - [4548] = {.lex_state = 23}, - [4549] = {.lex_state = 876}, - [4550] = {.lex_state = 876}, - [4551] = {.lex_state = 23}, - [4552] = {.lex_state = 23}, - [4553] = {.lex_state = 876}, - [4554] = {.lex_state = 23}, - [4555] = {.lex_state = 876}, - [4556] = {.lex_state = 23}, + [4539] = {.lex_state = 23}, + [4540] = {.lex_state = 882}, + [4541] = {.lex_state = 882}, + [4542] = {.lex_state = 882}, + [4543] = {.lex_state = 882}, + [4544] = {.lex_state = 23}, + [4545] = {.lex_state = 23}, + [4546] = {.lex_state = 23}, + [4547] = {.lex_state = 882}, + [4548] = {.lex_state = 47}, + [4549] = {.lex_state = 882}, + [4550] = {.lex_state = 882}, + [4551] = {.lex_state = 882}, + [4552] = {.lex_state = 882}, + [4553] = {.lex_state = 40}, + [4554] = {.lex_state = 40}, + [4555] = {.lex_state = 882}, + [4556] = {.lex_state = 882}, [4557] = {.lex_state = 23}, [4558] = {.lex_state = 23}, - [4559] = {.lex_state = 876}, - [4560] = {.lex_state = 876}, - [4561] = {.lex_state = 876}, - [4562] = {.lex_state = 876}, - [4563] = {.lex_state = 876}, - [4564] = {.lex_state = 876}, - [4565] = {.lex_state = 876}, - [4566] = {.lex_state = 38}, - [4567] = {.lex_state = 38}, - [4568] = {.lex_state = 876}, - [4569] = {.lex_state = 876}, - [4570] = {.lex_state = 23}, - [4571] = {.lex_state = 876}, - [4572] = {.lex_state = 876}, - [4573] = {.lex_state = 876}, - [4574] = {.lex_state = 876}, - [4575] = {.lex_state = 38}, - [4576] = {.lex_state = 38}, - [4577] = {.lex_state = 876}, - [4578] = {.lex_state = 876}, - [4579] = {.lex_state = 876}, - [4580] = {.lex_state = 23}, - [4581] = {.lex_state = 876}, - [4582] = {.lex_state = 876}, - [4583] = {.lex_state = 23}, - [4584] = {.lex_state = 23}, - [4585] = {.lex_state = 876}, - [4586] = {.lex_state = 23}, - [4587] = {.lex_state = 876}, - [4588] = {.lex_state = 876}, - [4589] = {.lex_state = 23}, - [4590] = {.lex_state = 23}, - [4591] = {.lex_state = 876}, - [4592] = {.lex_state = 876}, + [4559] = {.lex_state = 23}, + [4560] = {.lex_state = 882}, + [4561] = {.lex_state = 23}, + [4562] = {.lex_state = 40}, + [4563] = {.lex_state = 40}, + [4564] = {.lex_state = 882}, + [4565] = {.lex_state = 882}, + [4566] = {.lex_state = 23}, + [4567] = {.lex_state = 882}, + [4568] = {.lex_state = 23}, + [4569] = {.lex_state = 882}, + [4570] = {.lex_state = 882}, + [4571] = {.lex_state = 23}, + [4572] = {.lex_state = 23}, + [4573] = {.lex_state = 882}, + [4574] = {.lex_state = 40}, + [4575] = {.lex_state = 40}, + [4576] = {.lex_state = 882}, + [4577] = {.lex_state = 23}, + [4578] = {.lex_state = 23}, + [4579] = {.lex_state = 882}, + [4580] = {.lex_state = 882}, + [4581] = {.lex_state = 23}, + [4582] = {.lex_state = 882}, + [4583] = {.lex_state = 882}, + [4584] = {.lex_state = 882}, + [4585] = {.lex_state = 23}, + [4586] = {.lex_state = 40}, + [4587] = {.lex_state = 40}, + [4588] = {.lex_state = 882}, + [4589] = {.lex_state = 882}, + [4590] = {.lex_state = 882}, + [4591] = {.lex_state = 882}, + [4592] = {.lex_state = 23}, [4593] = {.lex_state = 23}, - [4594] = {.lex_state = 876}, - [4595] = {.lex_state = 876}, - [4596] = {.lex_state = 876}, - [4597] = {.lex_state = 876}, - [4598] = {.lex_state = 38}, - [4599] = {.lex_state = 38}, - [4600] = {.lex_state = 876}, - [4601] = {.lex_state = 876}, - [4602] = {.lex_state = 876}, - [4603] = {.lex_state = 876}, - [4604] = {.lex_state = 876}, - [4605] = {.lex_state = 876}, - [4606] = {.lex_state = 876}, - [4607] = {.lex_state = 38}, - [4608] = {.lex_state = 38}, - [4609] = {.lex_state = 876}, - [4610] = {.lex_state = 876}, - [4611] = {.lex_state = 876}, - [4612] = {.lex_state = 876}, - [4613] = {.lex_state = 876}, - [4614] = {.lex_state = 876}, - [4615] = {.lex_state = 876}, - [4616] = {.lex_state = 876}, - [4617] = {.lex_state = 23}, - [4618] = {.lex_state = 23}, - [4619] = {.lex_state = 876}, - [4620] = {.lex_state = 23}, - [4621] = {.lex_state = 889}, - [4622] = {.lex_state = 876}, - [4623] = {.lex_state = 23}, - [4624] = {.lex_state = 23}, - [4625] = {.lex_state = 23}, - [4626] = {.lex_state = 876}, - [4627] = {.lex_state = 876}, - [4628] = {.lex_state = 876}, - [4629] = {.lex_state = 23}, - [4630] = {.lex_state = 23}, - [4631] = {.lex_state = 23}, - [4632] = {.lex_state = 23}, - [4633] = {.lex_state = 876}, - [4634] = {.lex_state = 876}, - [4635] = {.lex_state = 876}, - [4636] = {.lex_state = 876}, - [4637] = {.lex_state = 876}, - [4638] = {.lex_state = 876}, - [4639] = {.lex_state = 876}, - [4640] = {.lex_state = 876}, - [4641] = {.lex_state = 876}, - [4642] = {.lex_state = 876}, - [4643] = {.lex_state = 876}, - [4644] = {.lex_state = 876}, - [4645] = {.lex_state = 876}, - [4646] = {.lex_state = 876}, - [4647] = {.lex_state = 876}, - [4648] = {.lex_state = 23}, + [4594] = {.lex_state = 882}, + [4595] = {.lex_state = 40}, + [4596] = {.lex_state = 40}, + [4597] = {.lex_state = 882}, + [4598] = {.lex_state = 882}, + [4599] = {.lex_state = 882}, + [4600] = {.lex_state = 23}, + [4601] = {.lex_state = 882}, + [4602] = {.lex_state = 882}, + [4603] = {.lex_state = 23}, + [4604] = {.lex_state = 23}, + [4605] = {.lex_state = 882}, + [4606] = {.lex_state = 23}, + [4607] = {.lex_state = 882}, + [4608] = {.lex_state = 882}, + [4609] = {.lex_state = 23}, + [4610] = {.lex_state = 23}, + [4611] = {.lex_state = 882}, + [4612] = {.lex_state = 23}, + [4613] = {.lex_state = 882}, + [4614] = {.lex_state = 882}, + [4615] = {.lex_state = 882}, + [4616] = {.lex_state = 882}, + [4617] = {.lex_state = 882}, + [4618] = {.lex_state = 40}, + [4619] = {.lex_state = 40}, + [4620] = {.lex_state = 882}, + [4621] = {.lex_state = 882}, + [4622] = {.lex_state = 882}, + [4623] = {.lex_state = 882}, + [4624] = {.lex_state = 882}, + [4625] = {.lex_state = 882}, + [4626] = {.lex_state = 882}, + [4627] = {.lex_state = 40}, + [4628] = {.lex_state = 40}, + [4629] = {.lex_state = 882}, + [4630] = {.lex_state = 882}, + [4631] = {.lex_state = 882}, + [4632] = {.lex_state = 882}, + [4633] = {.lex_state = 882}, + [4634] = {.lex_state = 882}, + [4635] = {.lex_state = 882}, + [4636] = {.lex_state = 882}, + [4637] = {.lex_state = 23}, + [4638] = {.lex_state = 23}, + [4639] = {.lex_state = 882}, + [4640] = {.lex_state = 23}, + [4641] = {.lex_state = 23}, + [4642] = {.lex_state = 882}, + [4643] = {.lex_state = 23}, + [4644] = {.lex_state = 23}, + [4645] = {.lex_state = 23}, + [4646] = {.lex_state = 882}, + [4647] = {.lex_state = 882}, + [4648] = {.lex_state = 882}, [4649] = {.lex_state = 23}, - [4650] = {.lex_state = 876}, + [4650] = {.lex_state = 23}, [4651] = {.lex_state = 23}, [4652] = {.lex_state = 23}, - [4653] = {.lex_state = 23}, - [4654] = {.lex_state = 23}, - [4655] = {.lex_state = 23}, - [4656] = {.lex_state = 876}, - [4657] = {.lex_state = 876}, - [4658] = {.lex_state = 876}, - [4659] = {.lex_state = 23}, + [4653] = {.lex_state = 882}, + [4654] = {.lex_state = 882}, + [4655] = {.lex_state = 882}, + [4656] = {.lex_state = 882}, + [4657] = {.lex_state = 882}, + [4658] = {.lex_state = 882}, + [4659] = {.lex_state = 882}, [4660] = {.lex_state = 23}, - [4661] = {.lex_state = 23}, - [4662] = {.lex_state = 23}, - [4663] = {.lex_state = 23}, - [4664] = {.lex_state = 876}, - [4665] = {.lex_state = 876}, - [4666] = {.lex_state = 876}, - [4667] = {.lex_state = 23}, - [4668] = {.lex_state = 23}, - [4669] = {.lex_state = 23}, - [4670] = {.lex_state = 876}, - [4671] = {.lex_state = 23}, - [4672] = {.lex_state = 23}, - [4673] = {.lex_state = 876}, - [4674] = {.lex_state = 876}, - [4675] = {.lex_state = 23}, + [4661] = {.lex_state = 895}, + [4662] = {.lex_state = 882}, + [4663] = {.lex_state = 882}, + [4664] = {.lex_state = 882}, + [4665] = {.lex_state = 882}, + [4666] = {.lex_state = 882}, + [4667] = {.lex_state = 882}, + [4668] = {.lex_state = 882}, + [4669] = {.lex_state = 882}, + [4670] = {.lex_state = 882}, + [4671] = {.lex_state = 882}, + [4672] = {.lex_state = 882}, + [4673] = {.lex_state = 23}, + [4674] = {.lex_state = 23}, + [4675] = {.lex_state = 882}, [4676] = {.lex_state = 23}, [4677] = {.lex_state = 23}, - [4678] = {.lex_state = 876}, - [4679] = {.lex_state = 876}, - [4680] = {.lex_state = 876}, + [4678] = {.lex_state = 23}, + [4679] = {.lex_state = 23}, + [4680] = {.lex_state = 23}, [4681] = {.lex_state = 23}, [4682] = {.lex_state = 23}, [4683] = {.lex_state = 23}, [4684] = {.lex_state = 23}, - [4685] = {.lex_state = 876}, - [4686] = {.lex_state = 876}, - [4687] = {.lex_state = 876}, - [4688] = {.lex_state = 47}, + [4685] = {.lex_state = 882}, + [4686] = {.lex_state = 882}, + [4687] = {.lex_state = 23}, + [4688] = {.lex_state = 23}, [4689] = {.lex_state = 23}, - [4690] = {.lex_state = 23}, - [4691] = {.lex_state = 23}, - [4692] = {.lex_state = 876}, - [4693] = {.lex_state = 876}, - [4694] = {.lex_state = 876}, + [4690] = {.lex_state = 882}, + [4691] = {.lex_state = 882}, + [4692] = {.lex_state = 23}, + [4693] = {.lex_state = 23}, + [4694] = {.lex_state = 882}, [4695] = {.lex_state = 23}, [4696] = {.lex_state = 23}, [4697] = {.lex_state = 23}, - [4698] = {.lex_state = 876}, - [4699] = {.lex_state = 876}, - [4700] = {.lex_state = 876}, - [4701] = {.lex_state = 876}, - [4702] = {.lex_state = 876}, - [4703] = {.lex_state = 876}, - [4704] = {.lex_state = 876}, - [4705] = {.lex_state = 23}, - [4706] = {.lex_state = 23}, - [4707] = {.lex_state = 876}, - [4708] = {.lex_state = 876}, + [4698] = {.lex_state = 882}, + [4699] = {.lex_state = 882}, + [4700] = {.lex_state = 882}, + [4701] = {.lex_state = 23}, + [4702] = {.lex_state = 23}, + [4703] = {.lex_state = 23}, + [4704] = {.lex_state = 882}, + [4705] = {.lex_state = 882}, + [4706] = {.lex_state = 882}, + [4707] = {.lex_state = 23}, + [4708] = {.lex_state = 882}, [4709] = {.lex_state = 23}, [4710] = {.lex_state = 23}, - [4711] = {.lex_state = 876}, - [4712] = {.lex_state = 44}, - [4713] = {.lex_state = 876}, - [4714] = {.lex_state = 104}, - [4715] = {(TSStateId)(-1)}, - [4716] = {(TSStateId)(-1)}, - [4717] = {(TSStateId)(-1)}, - [4718] = {(TSStateId)(-1)}, + [4711] = {.lex_state = 23}, + [4712] = {.lex_state = 882}, + [4713] = {.lex_state = 51}, + [4714] = {.lex_state = 882}, + [4715] = {.lex_state = 23}, + [4716] = {.lex_state = 23}, + [4717] = {.lex_state = 23}, + [4718] = {.lex_state = 23}, + [4719] = {.lex_state = 882}, + [4720] = {.lex_state = 882}, + [4721] = {.lex_state = 882}, + [4722] = {.lex_state = 882}, + [4723] = {.lex_state = 882}, + [4724] = {.lex_state = 882}, + [4725] = {.lex_state = 882}, + [4726] = {.lex_state = 882}, + [4727] = {.lex_state = 23}, + [4728] = {.lex_state = 23}, + [4729] = {.lex_state = 882}, + [4730] = {.lex_state = 882}, + [4731] = {.lex_state = 23}, + [4732] = {.lex_state = 23}, + [4733] = {.lex_state = 882}, + [4734] = {.lex_state = 110}, + [4735] = {(TSStateId)(-1)}, + [4736] = {(TSStateId)(-1)}, + [4737] = {(TSStateId)(-1)}, + [4738] = {(TSStateId)(-1)}, }; enum { @@ -26219,6 +26529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_definition_token3] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [aux_sym_argument_mode_token1] = ACTIONS(1), + [aux_sym_function_call_token1] = ACTIONS(1), [aux_sym_if_statement_token1] = ACTIONS(1), [aux_sym_if_statement_token2] = ACTIONS(1), [aux_sym_else_if_statement_token1] = ACTIONS(1), @@ -26292,7 +26603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(1), [aux_sym_query_tuning_token4] = ACTIONS(1), [aux_sym_query_tuning_token5] = ACTIONS(1), - [aux_sym_query_tuning_token6] = ACTIONS(1), [aux_sym_sort_order_token1] = ACTIONS(1), [aux_sym_sort_order_token2] = ACTIONS(1), [aux_sym_sort_order_token3] = ACTIONS(1), @@ -26341,49 +26651,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__and_operator] = ACTIONS(1), }, [1] = { - [sym_source_code] = STATE(4700), + [sym_source_code] = STATE(4723), [sym_comment] = STATE(1), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(1), - [sym_assignment] = STATE(4698), - [sym_variable_definition] = STATE(1158), - [sym_variable_assignment] = STATE(1158), - [sym_buffer_definition] = STATE(1158), - [sym_query_definition] = STATE(1158), - [sym_function_call_statement] = STATE(1158), - [sym_function_call] = STATE(4693), - [sym_if_statement] = STATE(1158), - [sym_label] = STATE(1163), - [sym_repeat_statement] = STATE(1158), - [sym_procedure_statement] = STATE(1158), - [sym_procedure_parameter_definition] = STATE(1158), - [sym_function_statement] = STATE(1158), - [sym_return_statement] = STATE(1158), - [sym_interface_statement] = STATE(1158), - [sym_using_statement] = STATE(1158), - [sym_class_statement] = STATE(1158), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1158), - [sym_input_close_statement] = STATE(1158), - [sym_output_close_statement] = STATE(1158), - [sym__stream_statement] = STATE(1158), - [sym_input_stream_statement] = STATE(1169), - [sym_output_stream_statement] = STATE(1169), - [sym_do_block] = STATE(1158), - [sym_case_statement] = STATE(1158), - [sym_for_statement] = STATE(1158), - [sym_find_statement] = STATE(1158), - [sym_abl_statement] = STATE(1158), - [sym_assign_statement] = STATE(1158), - [sym_catch_statement] = STATE(1158), - [sym_finally_statement] = STATE(1158), - [sym_accumulate_statement] = STATE(1158), - [sym_undo_statement] = STATE(1158), - [sym_error_scope_statement] = STATE(1158), - [sym_temp_table_definition] = STATE(1158), - [sym_on_statement] = STATE(1158), - [sym__statement] = STATE(1175), - [aux_sym_source_code_repeat1] = STATE(266), + [sym_assignment] = STATE(4720), + [sym_variable_definition] = STATE(1150), + [sym_variable_assignment] = STATE(1150), + [sym_buffer_definition] = STATE(1150), + [sym_query_definition] = STATE(1150), + [sym_function_call_statement] = STATE(1150), + [sym_function_call] = STATE(4719), + [sym_if_statement] = STATE(1150), + [sym_label] = STATE(1151), + [sym_repeat_statement] = STATE(1150), + [sym_procedure_statement] = STATE(1150), + [sym_procedure_parameter_definition] = STATE(1150), + [sym_function_statement] = STATE(1150), + [sym_return_statement] = STATE(1150), + [sym_interface_statement] = STATE(1150), + [sym_using_statement] = STATE(1150), + [sym_class_statement] = STATE(1150), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1150), + [sym_input_close_statement] = STATE(1150), + [sym_output_close_statement] = STATE(1150), + [sym__stream_statement] = STATE(1150), + [sym_input_stream_statement] = STATE(1155), + [sym_output_stream_statement] = STATE(1155), + [sym_do_block] = STATE(1150), + [sym_case_statement] = STATE(1150), + [sym_for_statement] = STATE(1150), + [sym_find_statement] = STATE(1150), + [sym_abl_statement] = STATE(1150), + [sym_assign_statement] = STATE(1150), + [sym_catch_statement] = STATE(1150), + [sym_finally_statement] = STATE(1150), + [sym_accumulate_statement] = STATE(1150), + [sym_undo_statement] = STATE(1150), + [sym_error_scope_statement] = STATE(1150), + [sym_temp_table_definition] = STATE(1150), + [sym_on_statement] = STATE(1150), + [sym__statement] = STATE(1156), + [aux_sym_source_code_repeat1] = STATE(277), [ts_builtin_sym_end] = ACTIONS(9), [sym_identifier] = ACTIONS(11), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -26417,8 +26727,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [2] = { [sym_comment] = STATE(2), [sym_include] = STATE(2), - [aux_sym_qualified_name_repeat1] = STATE(9), - [aux_sym_object_access_repeat1] = STATE(8), + [aux_sym_qualified_name_repeat1] = STATE(4), + [aux_sym_object_access_repeat1] = STATE(9), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(63), @@ -26451,6 +26761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(67), [aux_sym_variable_tuning_token6] = ACTIONS(67), [anon_sym_COMMA] = ACTIONS(67), + [aux_sym_function_call_token1] = ACTIONS(67), [aux_sym_if_statement_token2] = ACTIONS(67), [aux_sym_else_if_statement_token1] = ACTIONS(67), [anon_sym_COLON] = ACTIONS(67), @@ -26487,7 +26798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(67), [aux_sym_query_tuning_token4] = ACTIONS(67), [aux_sym_query_tuning_token5] = ACTIONS(67), - [aux_sym_query_tuning_token6] = ACTIONS(67), [aux_sym_of_token1] = ACTIONS(67), [aux_sym_field_definition_token1] = ACTIONS(67), [aux_sym_index_definition_token1] = ACTIONS(67), @@ -26500,8 +26810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [3] = { [sym_comment] = STATE(3), [sym_include] = STATE(3), - [aux_sym_qualified_name_repeat1] = STATE(9), - [aux_sym_object_access_repeat1] = STATE(8), + [aux_sym_qualified_name_repeat1] = STATE(4), + [aux_sym_object_access_repeat1] = STATE(9), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(75), @@ -26534,6 +26844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(77), [aux_sym_variable_tuning_token6] = ACTIONS(77), [anon_sym_COMMA] = ACTIONS(77), + [aux_sym_function_call_token1] = ACTIONS(77), [aux_sym_if_statement_token2] = ACTIONS(77), [aux_sym_else_if_statement_token1] = ACTIONS(77), [anon_sym_COLON] = ACTIONS(77), @@ -26570,7 +26881,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(77), [aux_sym_query_tuning_token4] = ACTIONS(77), [aux_sym_query_tuning_token5] = ACTIONS(77), - [aux_sym_query_tuning_token6] = ACTIONS(77), [aux_sym_of_token1] = ACTIONS(77), [aux_sym_field_definition_token1] = ACTIONS(77), [aux_sym_index_definition_token1] = ACTIONS(77), @@ -26583,7 +26893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [4] = { [sym_comment] = STATE(4), [sym_include] = STATE(4), - [aux_sym_qualified_name_repeat1] = STATE(4), + [aux_sym_qualified_name_repeat1] = STATE(8), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(79), @@ -26616,6 +26926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(81), [aux_sym_variable_tuning_token6] = ACTIONS(81), [anon_sym_COMMA] = ACTIONS(81), + [aux_sym_function_call_token1] = ACTIONS(81), [aux_sym_if_statement_token2] = ACTIONS(81), [aux_sym_else_if_statement_token1] = ACTIONS(81), [anon_sym_COLON] = ACTIONS(81), @@ -26652,343 +26963,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(81), [aux_sym_query_tuning_token4] = ACTIONS(81), [aux_sym_query_tuning_token5] = ACTIONS(81), - [aux_sym_query_tuning_token6] = ACTIONS(81), [aux_sym_of_token1] = ACTIONS(81), [aux_sym_field_definition_token1] = ACTIONS(81), [aux_sym_index_definition_token1] = ACTIONS(81), [aux_sym_on_statement_token1] = ACTIONS(81), - [sym__namedot] = ACTIONS(83), + [sym__namedot] = ACTIONS(71), [sym__or_operator] = ACTIONS(81), [sym__and_operator] = ACTIONS(81), }, [5] = { [sym_comment] = STATE(5), [sym_include] = STATE(5), - [aux_sym_qualified_name_repeat1] = STATE(9), + [aux_sym_qualified_name_repeat1] = STATE(4), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(86), + [anon_sym_SLASH] = ACTIONS(83), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(88), - [sym__terminator] = ACTIONS(88), - [anon_sym_LPAREN] = ACTIONS(88), - [anon_sym_RPAREN] = ACTIONS(88), - [anon_sym_PLUS] = ACTIONS(88), - [anon_sym_DASH] = ACTIONS(88), - [anon_sym_LT] = ACTIONS(86), - [anon_sym_LT_EQ] = ACTIONS(88), - [anon_sym_LT_GT] = ACTIONS(88), - [anon_sym_EQ] = ACTIONS(88), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_GT_EQ] = ACTIONS(88), - [aux_sym__comparison_operator_token1] = ACTIONS(88), - [aux_sym__comparison_operator_token2] = ACTIONS(88), - [aux_sym__comparison_operator_token3] = ACTIONS(88), - [aux_sym__comparison_operator_token4] = ACTIONS(88), - [aux_sym__comparison_operator_token5] = ACTIONS(88), - [aux_sym__comparison_operator_token6] = ACTIONS(88), - [aux_sym__comparison_operator_token7] = ACTIONS(88), - [aux_sym__comparison_operator_token8] = ACTIONS(88), - [aux_sym__comparison_operator_token9] = ACTIONS(88), - [aux_sym_variable_tuning_token1] = ACTIONS(88), - [aux_sym_variable_tuning_token2] = ACTIONS(88), - [aux_sym_variable_tuning_token3] = ACTIONS(88), - [aux_sym_variable_tuning_token4] = ACTIONS(88), - [aux_sym_variable_tuning_token5] = ACTIONS(88), - [aux_sym_variable_tuning_token6] = ACTIONS(88), - [anon_sym_COMMA] = ACTIONS(88), - [aux_sym_if_statement_token2] = ACTIONS(88), - [aux_sym_else_if_statement_token1] = ACTIONS(88), - [anon_sym_COLON] = ACTIONS(88), - [aux_sym_while_phrase_token1] = ACTIONS(88), - [aux_sym_property_tuning_token1] = ACTIONS(88), - [aux_sym_event_definition_token1] = ACTIONS(88), - [aux_sym_using_statement_token1] = ACTIONS(88), - [aux_sym_input_stream_tuning_token1] = ACTIONS(88), - [aux_sym_input_stream_tuning_token2] = ACTIONS(88), - [aux_sym_input_stream_tuning_token3] = ACTIONS(88), - [aux_sym_input_stream_tuning_token4] = ACTIONS(88), - [aux_sym_input_stream_tuning_token5] = ACTIONS(88), - [aux_sym_input_stream_tuning_token6] = ACTIONS(88), - [aux_sym_input_stream_tuning_token7] = ACTIONS(88), - [aux_sym_input_stream_tuning_token8] = ACTIONS(88), - [aux_sym_input_stream_tuning_token9] = ACTIONS(88), - [aux_sym_input_stream_tuning_token11] = ACTIONS(88), - [aux_sym_output_stream_tuning_token1] = ACTIONS(88), - [aux_sym_output_stream_tuning_token2] = ACTIONS(88), - [aux_sym_output_stream_tuning_token3] = ACTIONS(88), - [aux_sym_output_stream_tuning_token4] = ACTIONS(88), - [aux_sym_output_stream_tuning_token5] = ACTIONS(88), - [aux_sym_output_stream_tuning_token6] = ACTIONS(88), - [aux_sym_output_stream_tuning_token7] = ACTIONS(88), - [aux_sym_output_stream_tuning_token8] = ACTIONS(88), - [aux_sym_output_stream_statement_token1] = ACTIONS(88), - [aux_sym_on_error_phrase_token1] = ACTIONS(88), - [aux_sym_stop_after_phrase_token1] = ACTIONS(88), - [aux_sym_do_tuning_token1] = ACTIONS(88), - [anon_sym_BY] = ACTIONS(88), - [aux_sym_where_clause_token1] = ACTIONS(88), - [aux_sym_query_tuning_token1] = ACTIONS(88), - [aux_sym_query_tuning_token2] = ACTIONS(88), - [aux_sym_query_tuning_token3] = ACTIONS(88), - [aux_sym_query_tuning_token4] = ACTIONS(88), - [aux_sym_query_tuning_token5] = ACTIONS(88), - [aux_sym_query_tuning_token6] = ACTIONS(88), - [aux_sym_of_token1] = ACTIONS(88), - [aux_sym_field_definition_token1] = ACTIONS(88), - [aux_sym_index_definition_token1] = ACTIONS(88), - [aux_sym_on_statement_token1] = ACTIONS(88), + [anon_sym_STAR] = ACTIONS(85), + [sym__terminator] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_EQ] = ACTIONS(85), + [aux_sym__comparison_operator_token1] = ACTIONS(85), + [aux_sym__comparison_operator_token2] = ACTIONS(85), + [aux_sym__comparison_operator_token3] = ACTIONS(85), + [aux_sym__comparison_operator_token4] = ACTIONS(85), + [aux_sym__comparison_operator_token5] = ACTIONS(85), + [aux_sym__comparison_operator_token6] = ACTIONS(85), + [aux_sym__comparison_operator_token7] = ACTIONS(85), + [aux_sym__comparison_operator_token8] = ACTIONS(85), + [aux_sym__comparison_operator_token9] = ACTIONS(85), + [aux_sym_variable_tuning_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token2] = ACTIONS(85), + [aux_sym_variable_tuning_token3] = ACTIONS(85), + [aux_sym_variable_tuning_token4] = ACTIONS(85), + [aux_sym_variable_tuning_token5] = ACTIONS(85), + [aux_sym_variable_tuning_token6] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [aux_sym_function_call_token1] = ACTIONS(85), + [aux_sym_if_statement_token2] = ACTIONS(85), + [aux_sym_else_if_statement_token1] = ACTIONS(85), + [anon_sym_COLON] = ACTIONS(85), + [aux_sym_while_phrase_token1] = ACTIONS(85), + [aux_sym_property_tuning_token1] = ACTIONS(85), + [aux_sym_event_definition_token1] = ACTIONS(85), + [aux_sym_using_statement_token1] = ACTIONS(85), + [aux_sym_input_stream_tuning_token1] = ACTIONS(85), + [aux_sym_input_stream_tuning_token2] = ACTIONS(85), + [aux_sym_input_stream_tuning_token3] = ACTIONS(85), + [aux_sym_input_stream_tuning_token4] = ACTIONS(85), + [aux_sym_input_stream_tuning_token5] = ACTIONS(85), + [aux_sym_input_stream_tuning_token6] = ACTIONS(85), + [aux_sym_input_stream_tuning_token7] = ACTIONS(85), + [aux_sym_input_stream_tuning_token8] = ACTIONS(85), + [aux_sym_input_stream_tuning_token9] = ACTIONS(85), + [aux_sym_input_stream_tuning_token11] = ACTIONS(85), + [aux_sym_output_stream_tuning_token1] = ACTIONS(85), + [aux_sym_output_stream_tuning_token2] = ACTIONS(85), + [aux_sym_output_stream_tuning_token3] = ACTIONS(85), + [aux_sym_output_stream_tuning_token4] = ACTIONS(85), + [aux_sym_output_stream_tuning_token5] = ACTIONS(85), + [aux_sym_output_stream_tuning_token6] = ACTIONS(85), + [aux_sym_output_stream_tuning_token7] = ACTIONS(85), + [aux_sym_output_stream_tuning_token8] = ACTIONS(85), + [aux_sym_output_stream_statement_token1] = ACTIONS(85), + [aux_sym_on_error_phrase_token1] = ACTIONS(85), + [aux_sym_stop_after_phrase_token1] = ACTIONS(85), + [aux_sym_do_tuning_token1] = ACTIONS(85), + [anon_sym_BY] = ACTIONS(85), + [aux_sym_where_clause_token1] = ACTIONS(85), + [aux_sym_query_tuning_token1] = ACTIONS(85), + [aux_sym_query_tuning_token2] = ACTIONS(85), + [aux_sym_query_tuning_token3] = ACTIONS(85), + [aux_sym_query_tuning_token4] = ACTIONS(85), + [aux_sym_query_tuning_token5] = ACTIONS(85), + [aux_sym_of_token1] = ACTIONS(85), + [aux_sym_field_definition_token1] = ACTIONS(85), + [aux_sym_index_definition_token1] = ACTIONS(85), + [aux_sym_on_statement_token1] = ACTIONS(85), [sym__namedot] = ACTIONS(71), - [sym__or_operator] = ACTIONS(88), - [sym__and_operator] = ACTIONS(88), + [sym__or_operator] = ACTIONS(85), + [sym__and_operator] = ACTIONS(85), }, [6] = { [sym_comment] = STATE(6), [sym_include] = STATE(6), - [aux_sym_object_access_repeat1] = STATE(6), + [aux_sym_qualified_name_repeat1] = STATE(4), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(90), + [anon_sym_SLASH] = ACTIONS(87), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(92), - [sym__terminator] = ACTIONS(92), - [anon_sym_LPAREN] = ACTIONS(92), - [anon_sym_RPAREN] = ACTIONS(92), - [anon_sym_PLUS] = ACTIONS(92), - [anon_sym_DASH] = ACTIONS(92), - [anon_sym_LT] = ACTIONS(90), - [anon_sym_LT_EQ] = ACTIONS(92), - [anon_sym_LT_GT] = ACTIONS(92), - [anon_sym_EQ] = ACTIONS(92), - [anon_sym_GT] = ACTIONS(90), - [anon_sym_GT_EQ] = ACTIONS(92), - [aux_sym__comparison_operator_token1] = ACTIONS(92), - [aux_sym__comparison_operator_token2] = ACTIONS(92), - [aux_sym__comparison_operator_token3] = ACTIONS(92), - [aux_sym__comparison_operator_token4] = ACTIONS(92), - [aux_sym__comparison_operator_token5] = ACTIONS(92), - [aux_sym__comparison_operator_token6] = ACTIONS(92), - [aux_sym__comparison_operator_token7] = ACTIONS(92), - [aux_sym__comparison_operator_token8] = ACTIONS(92), - [aux_sym__comparison_operator_token9] = ACTIONS(92), - [aux_sym_variable_tuning_token1] = ACTIONS(92), - [aux_sym_variable_tuning_token2] = ACTIONS(92), - [aux_sym_variable_tuning_token3] = ACTIONS(92), - [aux_sym_variable_tuning_token4] = ACTIONS(92), - [aux_sym_variable_tuning_token5] = ACTIONS(92), - [aux_sym_variable_tuning_token6] = ACTIONS(92), - [anon_sym_COMMA] = ACTIONS(92), - [aux_sym_if_statement_token2] = ACTIONS(92), - [aux_sym_else_if_statement_token1] = ACTIONS(92), - [anon_sym_COLON] = ACTIONS(92), - [aux_sym_while_phrase_token1] = ACTIONS(92), - [aux_sym_property_tuning_token1] = ACTIONS(92), - [aux_sym_event_definition_token1] = ACTIONS(92), - [aux_sym_using_statement_token1] = ACTIONS(92), - [aux_sym_input_stream_tuning_token1] = ACTIONS(92), - [aux_sym_input_stream_tuning_token2] = ACTIONS(92), - [aux_sym_input_stream_tuning_token3] = ACTIONS(92), - [aux_sym_input_stream_tuning_token4] = ACTIONS(92), - [aux_sym_input_stream_tuning_token5] = ACTIONS(92), - [aux_sym_input_stream_tuning_token6] = ACTIONS(92), - [aux_sym_input_stream_tuning_token7] = ACTIONS(92), - [aux_sym_input_stream_tuning_token8] = ACTIONS(92), - [aux_sym_input_stream_tuning_token9] = ACTIONS(92), - [aux_sym_input_stream_tuning_token11] = ACTIONS(92), - [aux_sym_output_stream_tuning_token1] = ACTIONS(92), - [aux_sym_output_stream_tuning_token2] = ACTIONS(92), - [aux_sym_output_stream_tuning_token3] = ACTIONS(92), - [aux_sym_output_stream_tuning_token4] = ACTIONS(92), - [aux_sym_output_stream_tuning_token5] = ACTIONS(92), - [aux_sym_output_stream_tuning_token6] = ACTIONS(92), - [aux_sym_output_stream_tuning_token7] = ACTIONS(92), - [aux_sym_output_stream_tuning_token8] = ACTIONS(92), - [aux_sym_output_stream_statement_token1] = ACTIONS(92), - [aux_sym_on_error_phrase_token1] = ACTIONS(92), - [aux_sym_stop_after_phrase_token1] = ACTIONS(92), - [aux_sym_do_tuning_token1] = ACTIONS(92), - [anon_sym_BY] = ACTIONS(92), - [aux_sym_where_clause_token1] = ACTIONS(92), - [aux_sym_query_tuning_token1] = ACTIONS(92), - [aux_sym_query_tuning_token2] = ACTIONS(92), - [aux_sym_query_tuning_token3] = ACTIONS(92), - [aux_sym_query_tuning_token4] = ACTIONS(92), - [aux_sym_query_tuning_token5] = ACTIONS(92), - [aux_sym_query_tuning_token6] = ACTIONS(92), - [aux_sym_of_token1] = ACTIONS(92), - [aux_sym_field_definition_token1] = ACTIONS(92), - [aux_sym_index_definition_token1] = ACTIONS(92), - [aux_sym_on_statement_token1] = ACTIONS(92), - [sym__namecolon] = ACTIONS(94), - [sym__or_operator] = ACTIONS(92), - [sym__and_operator] = ACTIONS(92), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RPAREN] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_EQ] = ACTIONS(89), + [aux_sym__comparison_operator_token1] = ACTIONS(89), + [aux_sym__comparison_operator_token2] = ACTIONS(89), + [aux_sym__comparison_operator_token3] = ACTIONS(89), + [aux_sym__comparison_operator_token4] = ACTIONS(89), + [aux_sym__comparison_operator_token5] = ACTIONS(89), + [aux_sym__comparison_operator_token6] = ACTIONS(89), + [aux_sym__comparison_operator_token7] = ACTIONS(89), + [aux_sym__comparison_operator_token8] = ACTIONS(89), + [aux_sym__comparison_operator_token9] = ACTIONS(89), + [aux_sym_variable_tuning_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token2] = ACTIONS(89), + [aux_sym_variable_tuning_token3] = ACTIONS(89), + [aux_sym_variable_tuning_token4] = ACTIONS(89), + [aux_sym_variable_tuning_token5] = ACTIONS(89), + [aux_sym_variable_tuning_token6] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [aux_sym_function_call_token1] = ACTIONS(89), + [aux_sym_if_statement_token2] = ACTIONS(89), + [aux_sym_else_if_statement_token1] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [aux_sym_while_phrase_token1] = ACTIONS(89), + [aux_sym_property_tuning_token1] = ACTIONS(89), + [aux_sym_event_definition_token1] = ACTIONS(89), + [aux_sym_using_statement_token1] = ACTIONS(89), + [aux_sym_input_stream_tuning_token1] = ACTIONS(89), + [aux_sym_input_stream_tuning_token2] = ACTIONS(89), + [aux_sym_input_stream_tuning_token3] = ACTIONS(89), + [aux_sym_input_stream_tuning_token4] = ACTIONS(89), + [aux_sym_input_stream_tuning_token5] = ACTIONS(89), + [aux_sym_input_stream_tuning_token6] = ACTIONS(89), + [aux_sym_input_stream_tuning_token7] = ACTIONS(89), + [aux_sym_input_stream_tuning_token8] = ACTIONS(89), + [aux_sym_input_stream_tuning_token9] = ACTIONS(89), + [aux_sym_input_stream_tuning_token11] = ACTIONS(89), + [aux_sym_output_stream_tuning_token1] = ACTIONS(89), + [aux_sym_output_stream_tuning_token2] = ACTIONS(89), + [aux_sym_output_stream_tuning_token3] = ACTIONS(89), + [aux_sym_output_stream_tuning_token4] = ACTIONS(89), + [aux_sym_output_stream_tuning_token5] = ACTIONS(89), + [aux_sym_output_stream_tuning_token6] = ACTIONS(89), + [aux_sym_output_stream_tuning_token7] = ACTIONS(89), + [aux_sym_output_stream_tuning_token8] = ACTIONS(89), + [aux_sym_output_stream_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_token1] = ACTIONS(89), + [aux_sym_stop_after_phrase_token1] = ACTIONS(89), + [aux_sym_do_tuning_token1] = ACTIONS(89), + [anon_sym_BY] = ACTIONS(89), + [aux_sym_where_clause_token1] = ACTIONS(89), + [aux_sym_query_tuning_token1] = ACTIONS(89), + [aux_sym_query_tuning_token2] = ACTIONS(89), + [aux_sym_query_tuning_token3] = ACTIONS(89), + [aux_sym_query_tuning_token4] = ACTIONS(89), + [aux_sym_query_tuning_token5] = ACTIONS(89), + [aux_sym_of_token1] = ACTIONS(89), + [aux_sym_field_definition_token1] = ACTIONS(89), + [aux_sym_index_definition_token1] = ACTIONS(89), + [aux_sym_on_statement_token1] = ACTIONS(89), + [sym__namedot] = ACTIONS(71), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, [7] = { [sym_comment] = STATE(7), [sym_include] = STATE(7), - [aux_sym_qualified_name_repeat1] = STATE(9), + [aux_sym_object_access_repeat1] = STATE(7), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(97), + [anon_sym_SLASH] = ACTIONS(91), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(99), - [sym__terminator] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(99), - [anon_sym_RPAREN] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(99), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_LT_GT] = ACTIONS(99), - [anon_sym_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [aux_sym__comparison_operator_token1] = ACTIONS(99), - [aux_sym__comparison_operator_token2] = ACTIONS(99), - [aux_sym__comparison_operator_token3] = ACTIONS(99), - [aux_sym__comparison_operator_token4] = ACTIONS(99), - [aux_sym__comparison_operator_token5] = ACTIONS(99), - [aux_sym__comparison_operator_token6] = ACTIONS(99), - [aux_sym__comparison_operator_token7] = ACTIONS(99), - [aux_sym__comparison_operator_token8] = ACTIONS(99), - [aux_sym__comparison_operator_token9] = ACTIONS(99), - [aux_sym_variable_tuning_token1] = ACTIONS(99), - [aux_sym_variable_tuning_token2] = ACTIONS(99), - [aux_sym_variable_tuning_token3] = ACTIONS(99), - [aux_sym_variable_tuning_token4] = ACTIONS(99), - [aux_sym_variable_tuning_token5] = ACTIONS(99), - [aux_sym_variable_tuning_token6] = ACTIONS(99), - [anon_sym_COMMA] = ACTIONS(99), - [aux_sym_if_statement_token2] = ACTIONS(99), - [aux_sym_else_if_statement_token1] = ACTIONS(99), - [anon_sym_COLON] = ACTIONS(99), - [aux_sym_while_phrase_token1] = ACTIONS(99), - [aux_sym_property_tuning_token1] = ACTIONS(99), - [aux_sym_event_definition_token1] = ACTIONS(99), - [aux_sym_using_statement_token1] = ACTIONS(99), - [aux_sym_input_stream_tuning_token1] = ACTIONS(99), - [aux_sym_input_stream_tuning_token2] = ACTIONS(99), - [aux_sym_input_stream_tuning_token3] = ACTIONS(99), - [aux_sym_input_stream_tuning_token4] = ACTIONS(99), - [aux_sym_input_stream_tuning_token5] = ACTIONS(99), - [aux_sym_input_stream_tuning_token6] = ACTIONS(99), - [aux_sym_input_stream_tuning_token7] = ACTIONS(99), - [aux_sym_input_stream_tuning_token8] = ACTIONS(99), - [aux_sym_input_stream_tuning_token9] = ACTIONS(99), - [aux_sym_input_stream_tuning_token11] = ACTIONS(99), - [aux_sym_output_stream_tuning_token1] = ACTIONS(99), - [aux_sym_output_stream_tuning_token2] = ACTIONS(99), - [aux_sym_output_stream_tuning_token3] = ACTIONS(99), - [aux_sym_output_stream_tuning_token4] = ACTIONS(99), - [aux_sym_output_stream_tuning_token5] = ACTIONS(99), - [aux_sym_output_stream_tuning_token6] = ACTIONS(99), - [aux_sym_output_stream_tuning_token7] = ACTIONS(99), - [aux_sym_output_stream_tuning_token8] = ACTIONS(99), - [aux_sym_output_stream_statement_token1] = ACTIONS(99), - [aux_sym_on_error_phrase_token1] = ACTIONS(99), - [aux_sym_stop_after_phrase_token1] = ACTIONS(99), - [aux_sym_do_tuning_token1] = ACTIONS(99), - [anon_sym_BY] = ACTIONS(99), - [aux_sym_where_clause_token1] = ACTIONS(99), - [aux_sym_query_tuning_token1] = ACTIONS(99), - [aux_sym_query_tuning_token2] = ACTIONS(99), - [aux_sym_query_tuning_token3] = ACTIONS(99), - [aux_sym_query_tuning_token4] = ACTIONS(99), - [aux_sym_query_tuning_token5] = ACTIONS(99), - [aux_sym_query_tuning_token6] = ACTIONS(99), - [aux_sym_of_token1] = ACTIONS(99), - [aux_sym_field_definition_token1] = ACTIONS(99), - [aux_sym_index_definition_token1] = ACTIONS(99), - [aux_sym_on_statement_token1] = ACTIONS(99), - [sym__namedot] = ACTIONS(71), - [sym__or_operator] = ACTIONS(99), - [sym__and_operator] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(93), + [sym__terminator] = ACTIONS(93), + [anon_sym_LPAREN] = ACTIONS(93), + [anon_sym_RPAREN] = ACTIONS(93), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(91), + [anon_sym_LT_EQ] = ACTIONS(93), + [anon_sym_LT_GT] = ACTIONS(93), + [anon_sym_EQ] = ACTIONS(93), + [anon_sym_GT] = ACTIONS(91), + [anon_sym_GT_EQ] = ACTIONS(93), + [aux_sym__comparison_operator_token1] = ACTIONS(93), + [aux_sym__comparison_operator_token2] = ACTIONS(93), + [aux_sym__comparison_operator_token3] = ACTIONS(93), + [aux_sym__comparison_operator_token4] = ACTIONS(93), + [aux_sym__comparison_operator_token5] = ACTIONS(93), + [aux_sym__comparison_operator_token6] = ACTIONS(93), + [aux_sym__comparison_operator_token7] = ACTIONS(93), + [aux_sym__comparison_operator_token8] = ACTIONS(93), + [aux_sym__comparison_operator_token9] = ACTIONS(93), + [aux_sym_variable_tuning_token1] = ACTIONS(93), + [aux_sym_variable_tuning_token2] = ACTIONS(93), + [aux_sym_variable_tuning_token3] = ACTIONS(93), + [aux_sym_variable_tuning_token4] = ACTIONS(93), + [aux_sym_variable_tuning_token5] = ACTIONS(93), + [aux_sym_variable_tuning_token6] = ACTIONS(93), + [anon_sym_COMMA] = ACTIONS(93), + [aux_sym_function_call_token1] = ACTIONS(93), + [aux_sym_if_statement_token2] = ACTIONS(93), + [aux_sym_else_if_statement_token1] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(93), + [aux_sym_while_phrase_token1] = ACTIONS(93), + [aux_sym_property_tuning_token1] = ACTIONS(93), + [aux_sym_event_definition_token1] = ACTIONS(93), + [aux_sym_using_statement_token1] = ACTIONS(93), + [aux_sym_input_stream_tuning_token1] = ACTIONS(93), + [aux_sym_input_stream_tuning_token2] = ACTIONS(93), + [aux_sym_input_stream_tuning_token3] = ACTIONS(93), + [aux_sym_input_stream_tuning_token4] = ACTIONS(93), + [aux_sym_input_stream_tuning_token5] = ACTIONS(93), + [aux_sym_input_stream_tuning_token6] = ACTIONS(93), + [aux_sym_input_stream_tuning_token7] = ACTIONS(93), + [aux_sym_input_stream_tuning_token8] = ACTIONS(93), + [aux_sym_input_stream_tuning_token9] = ACTIONS(93), + [aux_sym_input_stream_tuning_token11] = ACTIONS(93), + [aux_sym_output_stream_tuning_token1] = ACTIONS(93), + [aux_sym_output_stream_tuning_token2] = ACTIONS(93), + [aux_sym_output_stream_tuning_token3] = ACTIONS(93), + [aux_sym_output_stream_tuning_token4] = ACTIONS(93), + [aux_sym_output_stream_tuning_token5] = ACTIONS(93), + [aux_sym_output_stream_tuning_token6] = ACTIONS(93), + [aux_sym_output_stream_tuning_token7] = ACTIONS(93), + [aux_sym_output_stream_tuning_token8] = ACTIONS(93), + [aux_sym_output_stream_statement_token1] = ACTIONS(93), + [aux_sym_on_error_phrase_token1] = ACTIONS(93), + [aux_sym_stop_after_phrase_token1] = ACTIONS(93), + [aux_sym_do_tuning_token1] = ACTIONS(93), + [anon_sym_BY] = ACTIONS(93), + [aux_sym_where_clause_token1] = ACTIONS(93), + [aux_sym_query_tuning_token1] = ACTIONS(93), + [aux_sym_query_tuning_token2] = ACTIONS(93), + [aux_sym_query_tuning_token3] = ACTIONS(93), + [aux_sym_query_tuning_token4] = ACTIONS(93), + [aux_sym_query_tuning_token5] = ACTIONS(93), + [aux_sym_of_token1] = ACTIONS(93), + [aux_sym_field_definition_token1] = ACTIONS(93), + [aux_sym_index_definition_token1] = ACTIONS(93), + [aux_sym_on_statement_token1] = ACTIONS(93), + [sym__namecolon] = ACTIONS(95), + [sym__or_operator] = ACTIONS(93), + [sym__and_operator] = ACTIONS(93), }, [8] = { [sym_comment] = STATE(8), [sym_include] = STATE(8), - [aux_sym_object_access_repeat1] = STATE(6), + [aux_sym_qualified_name_repeat1] = STATE(8), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(101), + [anon_sym_SLASH] = ACTIONS(98), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(103), - [sym__terminator] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(101), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_LT_GT] = ACTIONS(103), - [anon_sym_EQ] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(101), - [anon_sym_GT_EQ] = ACTIONS(103), - [aux_sym__comparison_operator_token1] = ACTIONS(103), - [aux_sym__comparison_operator_token2] = ACTIONS(103), - [aux_sym__comparison_operator_token3] = ACTIONS(103), - [aux_sym__comparison_operator_token4] = ACTIONS(103), - [aux_sym__comparison_operator_token5] = ACTIONS(103), - [aux_sym__comparison_operator_token6] = ACTIONS(103), - [aux_sym__comparison_operator_token7] = ACTIONS(103), - [aux_sym__comparison_operator_token8] = ACTIONS(103), - [aux_sym__comparison_operator_token9] = ACTIONS(103), - [aux_sym_variable_tuning_token1] = ACTIONS(103), - [aux_sym_variable_tuning_token2] = ACTIONS(103), - [aux_sym_variable_tuning_token3] = ACTIONS(103), - [aux_sym_variable_tuning_token4] = ACTIONS(103), - [aux_sym_variable_tuning_token5] = ACTIONS(103), - [aux_sym_variable_tuning_token6] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(103), - [aux_sym_if_statement_token2] = ACTIONS(103), - [aux_sym_else_if_statement_token1] = ACTIONS(103), - [anon_sym_COLON] = ACTIONS(103), - [aux_sym_while_phrase_token1] = ACTIONS(103), - [aux_sym_property_tuning_token1] = ACTIONS(103), - [aux_sym_event_definition_token1] = ACTIONS(103), - [aux_sym_using_statement_token1] = ACTIONS(103), - [aux_sym_input_stream_tuning_token1] = ACTIONS(103), - [aux_sym_input_stream_tuning_token2] = ACTIONS(103), - [aux_sym_input_stream_tuning_token3] = ACTIONS(103), - [aux_sym_input_stream_tuning_token4] = ACTIONS(103), - [aux_sym_input_stream_tuning_token5] = ACTIONS(103), - [aux_sym_input_stream_tuning_token6] = ACTIONS(103), - [aux_sym_input_stream_tuning_token7] = ACTIONS(103), - [aux_sym_input_stream_tuning_token8] = ACTIONS(103), - [aux_sym_input_stream_tuning_token9] = ACTIONS(103), - [aux_sym_input_stream_tuning_token11] = ACTIONS(103), - [aux_sym_output_stream_tuning_token1] = ACTIONS(103), - [aux_sym_output_stream_tuning_token2] = ACTIONS(103), - [aux_sym_output_stream_tuning_token3] = ACTIONS(103), - [aux_sym_output_stream_tuning_token4] = ACTIONS(103), - [aux_sym_output_stream_tuning_token5] = ACTIONS(103), - [aux_sym_output_stream_tuning_token6] = ACTIONS(103), - [aux_sym_output_stream_tuning_token7] = ACTIONS(103), - [aux_sym_output_stream_tuning_token8] = ACTIONS(103), - [aux_sym_output_stream_statement_token1] = ACTIONS(103), - [aux_sym_on_error_phrase_token1] = ACTIONS(103), - [aux_sym_stop_after_phrase_token1] = ACTIONS(103), - [aux_sym_do_tuning_token1] = ACTIONS(103), - [anon_sym_BY] = ACTIONS(103), - [aux_sym_where_clause_token1] = ACTIONS(103), - [aux_sym_query_tuning_token1] = ACTIONS(103), - [aux_sym_query_tuning_token2] = ACTIONS(103), - [aux_sym_query_tuning_token3] = ACTIONS(103), - [aux_sym_query_tuning_token4] = ACTIONS(103), - [aux_sym_query_tuning_token5] = ACTIONS(103), - [aux_sym_query_tuning_token6] = ACTIONS(103), - [aux_sym_of_token1] = ACTIONS(103), - [aux_sym_field_definition_token1] = ACTIONS(103), - [aux_sym_index_definition_token1] = ACTIONS(103), - [aux_sym_on_statement_token1] = ACTIONS(103), - [sym__namecolon] = ACTIONS(73), - [sym__or_operator] = ACTIONS(103), - [sym__and_operator] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(100), + [sym__terminator] = ACTIONS(100), + [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_RPAREN] = ACTIONS(100), + [anon_sym_PLUS] = ACTIONS(100), + [anon_sym_DASH] = ACTIONS(100), + [anon_sym_LT] = ACTIONS(98), + [anon_sym_LT_EQ] = ACTIONS(100), + [anon_sym_LT_GT] = ACTIONS(100), + [anon_sym_EQ] = ACTIONS(100), + [anon_sym_GT] = ACTIONS(98), + [anon_sym_GT_EQ] = ACTIONS(100), + [aux_sym__comparison_operator_token1] = ACTIONS(100), + [aux_sym__comparison_operator_token2] = ACTIONS(100), + [aux_sym__comparison_operator_token3] = ACTIONS(100), + [aux_sym__comparison_operator_token4] = ACTIONS(100), + [aux_sym__comparison_operator_token5] = ACTIONS(100), + [aux_sym__comparison_operator_token6] = ACTIONS(100), + [aux_sym__comparison_operator_token7] = ACTIONS(100), + [aux_sym__comparison_operator_token8] = ACTIONS(100), + [aux_sym__comparison_operator_token9] = ACTIONS(100), + [aux_sym_variable_tuning_token1] = ACTIONS(100), + [aux_sym_variable_tuning_token2] = ACTIONS(100), + [aux_sym_variable_tuning_token3] = ACTIONS(100), + [aux_sym_variable_tuning_token4] = ACTIONS(100), + [aux_sym_variable_tuning_token5] = ACTIONS(100), + [aux_sym_variable_tuning_token6] = ACTIONS(100), + [anon_sym_COMMA] = ACTIONS(100), + [aux_sym_function_call_token1] = ACTIONS(100), + [aux_sym_if_statement_token2] = ACTIONS(100), + [aux_sym_else_if_statement_token1] = ACTIONS(100), + [anon_sym_COLON] = ACTIONS(100), + [aux_sym_while_phrase_token1] = ACTIONS(100), + [aux_sym_property_tuning_token1] = ACTIONS(100), + [aux_sym_event_definition_token1] = ACTIONS(100), + [aux_sym_using_statement_token1] = ACTIONS(100), + [aux_sym_input_stream_tuning_token1] = ACTIONS(100), + [aux_sym_input_stream_tuning_token2] = ACTIONS(100), + [aux_sym_input_stream_tuning_token3] = ACTIONS(100), + [aux_sym_input_stream_tuning_token4] = ACTIONS(100), + [aux_sym_input_stream_tuning_token5] = ACTIONS(100), + [aux_sym_input_stream_tuning_token6] = ACTIONS(100), + [aux_sym_input_stream_tuning_token7] = ACTIONS(100), + [aux_sym_input_stream_tuning_token8] = ACTIONS(100), + [aux_sym_input_stream_tuning_token9] = ACTIONS(100), + [aux_sym_input_stream_tuning_token11] = ACTIONS(100), + [aux_sym_output_stream_tuning_token1] = ACTIONS(100), + [aux_sym_output_stream_tuning_token2] = ACTIONS(100), + [aux_sym_output_stream_tuning_token3] = ACTIONS(100), + [aux_sym_output_stream_tuning_token4] = ACTIONS(100), + [aux_sym_output_stream_tuning_token5] = ACTIONS(100), + [aux_sym_output_stream_tuning_token6] = ACTIONS(100), + [aux_sym_output_stream_tuning_token7] = ACTIONS(100), + [aux_sym_output_stream_tuning_token8] = ACTIONS(100), + [aux_sym_output_stream_statement_token1] = ACTIONS(100), + [aux_sym_on_error_phrase_token1] = ACTIONS(100), + [aux_sym_stop_after_phrase_token1] = ACTIONS(100), + [aux_sym_do_tuning_token1] = ACTIONS(100), + [anon_sym_BY] = ACTIONS(100), + [aux_sym_where_clause_token1] = ACTIONS(100), + [aux_sym_query_tuning_token1] = ACTIONS(100), + [aux_sym_query_tuning_token2] = ACTIONS(100), + [aux_sym_query_tuning_token3] = ACTIONS(100), + [aux_sym_query_tuning_token4] = ACTIONS(100), + [aux_sym_query_tuning_token5] = ACTIONS(100), + [aux_sym_of_token1] = ACTIONS(100), + [aux_sym_field_definition_token1] = ACTIONS(100), + [aux_sym_index_definition_token1] = ACTIONS(100), + [aux_sym_on_statement_token1] = ACTIONS(100), + [sym__namedot] = ACTIONS(102), + [sym__or_operator] = ACTIONS(100), + [sym__and_operator] = ACTIONS(100), }, [9] = { [sym_comment] = STATE(9), [sym_include] = STATE(9), - [aux_sym_qualified_name_repeat1] = STATE(4), + [aux_sym_object_access_repeat1] = STATE(7), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(105), @@ -27021,6 +27331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(107), [aux_sym_variable_tuning_token6] = ACTIONS(107), [anon_sym_COMMA] = ACTIONS(107), + [aux_sym_function_call_token1] = ACTIONS(107), [aux_sym_if_statement_token2] = ACTIONS(107), [aux_sym_else_if_statement_token1] = ACTIONS(107), [anon_sym_COLON] = ACTIONS(107), @@ -27057,12 +27368,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(107), [aux_sym_query_tuning_token4] = ACTIONS(107), [aux_sym_query_tuning_token5] = ACTIONS(107), - [aux_sym_query_tuning_token6] = ACTIONS(107), [aux_sym_of_token1] = ACTIONS(107), [aux_sym_field_definition_token1] = ACTIONS(107), [aux_sym_index_definition_token1] = ACTIONS(107), [aux_sym_on_statement_token1] = ACTIONS(107), - [sym__namedot] = ACTIONS(71), + [sym__namecolon] = ACTIONS(73), [sym__or_operator] = ACTIONS(107), [sym__and_operator] = ACTIONS(107), }, @@ -27101,6 +27411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(111), [aux_sym_variable_tuning_token6] = ACTIONS(111), [anon_sym_COMMA] = ACTIONS(111), + [aux_sym_function_call_token1] = ACTIONS(111), [aux_sym_if_statement_token2] = ACTIONS(111), [aux_sym_else_if_statement_token1] = ACTIONS(111), [anon_sym_COLON] = ACTIONS(111), @@ -27137,7 +27448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(111), [aux_sym_query_tuning_token4] = ACTIONS(111), [aux_sym_query_tuning_token5] = ACTIONS(111), - [aux_sym_query_tuning_token6] = ACTIONS(111), [aux_sym_of_token1] = ACTIONS(111), [aux_sym_field_definition_token1] = ACTIONS(111), [aux_sym_index_definition_token1] = ACTIONS(111), @@ -27181,6 +27491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(117), [aux_sym_variable_tuning_token6] = ACTIONS(117), [anon_sym_COMMA] = ACTIONS(117), + [aux_sym_function_call_token1] = ACTIONS(117), [aux_sym_if_statement_token2] = ACTIONS(117), [aux_sym_else_if_statement_token1] = ACTIONS(117), [anon_sym_COLON] = ACTIONS(117), @@ -27217,7 +27528,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(117), [aux_sym_query_tuning_token4] = ACTIONS(117), [aux_sym_query_tuning_token5] = ACTIONS(117), - [aux_sym_query_tuning_token6] = ACTIONS(117), [aux_sym_of_token1] = ACTIONS(117), [aux_sym_field_definition_token1] = ACTIONS(117), [aux_sym_index_definition_token1] = ACTIONS(117), @@ -27231,80 +27541,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_include] = STATE(12), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(98), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(81), - [sym__terminator] = ACTIONS(81), - [anon_sym_LPAREN] = ACTIONS(81), - [anon_sym_RPAREN] = ACTIONS(81), - [anon_sym_PLUS] = ACTIONS(81), - [anon_sym_DASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(79), - [anon_sym_LT_EQ] = ACTIONS(81), - [anon_sym_LT_GT] = ACTIONS(81), - [anon_sym_EQ] = ACTIONS(81), - [anon_sym_GT] = ACTIONS(79), - [anon_sym_GT_EQ] = ACTIONS(81), - [aux_sym__comparison_operator_token1] = ACTIONS(81), - [aux_sym__comparison_operator_token2] = ACTIONS(81), - [aux_sym__comparison_operator_token3] = ACTIONS(81), - [aux_sym__comparison_operator_token4] = ACTIONS(81), - [aux_sym__comparison_operator_token5] = ACTIONS(81), - [aux_sym__comparison_operator_token6] = ACTIONS(81), - [aux_sym__comparison_operator_token7] = ACTIONS(81), - [aux_sym__comparison_operator_token8] = ACTIONS(81), - [aux_sym__comparison_operator_token9] = ACTIONS(81), - [aux_sym_variable_tuning_token1] = ACTIONS(81), - [aux_sym_variable_tuning_token2] = ACTIONS(81), - [aux_sym_variable_tuning_token3] = ACTIONS(81), - [aux_sym_variable_tuning_token4] = ACTIONS(81), - [aux_sym_variable_tuning_token5] = ACTIONS(81), - [aux_sym_variable_tuning_token6] = ACTIONS(81), - [anon_sym_COMMA] = ACTIONS(81), - [aux_sym_if_statement_token2] = ACTIONS(81), - [aux_sym_else_if_statement_token1] = ACTIONS(81), - [anon_sym_COLON] = ACTIONS(81), - [aux_sym_while_phrase_token1] = ACTIONS(81), - [aux_sym_property_tuning_token1] = ACTIONS(81), - [aux_sym_event_definition_token1] = ACTIONS(81), - [aux_sym_using_statement_token1] = ACTIONS(81), - [aux_sym_input_stream_tuning_token1] = ACTIONS(81), - [aux_sym_input_stream_tuning_token2] = ACTIONS(81), - [aux_sym_input_stream_tuning_token3] = ACTIONS(81), - [aux_sym_input_stream_tuning_token4] = ACTIONS(81), - [aux_sym_input_stream_tuning_token5] = ACTIONS(81), - [aux_sym_input_stream_tuning_token6] = ACTIONS(81), - [aux_sym_input_stream_tuning_token7] = ACTIONS(81), - [aux_sym_input_stream_tuning_token8] = ACTIONS(81), - [aux_sym_input_stream_tuning_token9] = ACTIONS(81), - [aux_sym_input_stream_tuning_token11] = ACTIONS(81), - [aux_sym_output_stream_tuning_token1] = ACTIONS(81), - [aux_sym_output_stream_tuning_token2] = ACTIONS(81), - [aux_sym_output_stream_tuning_token3] = ACTIONS(81), - [aux_sym_output_stream_tuning_token4] = ACTIONS(81), - [aux_sym_output_stream_tuning_token5] = ACTIONS(81), - [aux_sym_output_stream_tuning_token6] = ACTIONS(81), - [aux_sym_output_stream_tuning_token7] = ACTIONS(81), - [aux_sym_output_stream_tuning_token8] = ACTIONS(81), - [aux_sym_output_stream_statement_token1] = ACTIONS(81), - [aux_sym_on_error_phrase_token1] = ACTIONS(81), - [aux_sym_stop_after_phrase_token1] = ACTIONS(81), - [aux_sym_do_tuning_token1] = ACTIONS(81), - [anon_sym_BY] = ACTIONS(81), - [aux_sym_where_clause_token1] = ACTIONS(81), - [aux_sym_query_tuning_token1] = ACTIONS(81), - [aux_sym_query_tuning_token2] = ACTIONS(81), - [aux_sym_query_tuning_token3] = ACTIONS(81), - [aux_sym_query_tuning_token4] = ACTIONS(81), - [aux_sym_query_tuning_token5] = ACTIONS(81), - [aux_sym_query_tuning_token6] = ACTIONS(81), - [aux_sym_of_token1] = ACTIONS(81), - [aux_sym_field_definition_token1] = ACTIONS(81), - [aux_sym_index_definition_token1] = ACTIONS(81), - [aux_sym_on_statement_token1] = ACTIONS(81), - [sym__namedot] = ACTIONS(81), - [sym__or_operator] = ACTIONS(81), - [sym__and_operator] = ACTIONS(81), + [anon_sym_STAR] = ACTIONS(100), + [sym__terminator] = ACTIONS(100), + [anon_sym_LPAREN] = ACTIONS(100), + [anon_sym_RPAREN] = ACTIONS(100), + [anon_sym_PLUS] = ACTIONS(100), + [anon_sym_DASH] = ACTIONS(100), + [anon_sym_LT] = ACTIONS(98), + [anon_sym_LT_EQ] = ACTIONS(100), + [anon_sym_LT_GT] = ACTIONS(100), + [anon_sym_EQ] = ACTIONS(100), + [anon_sym_GT] = ACTIONS(98), + [anon_sym_GT_EQ] = ACTIONS(100), + [aux_sym__comparison_operator_token1] = ACTIONS(100), + [aux_sym__comparison_operator_token2] = ACTIONS(100), + [aux_sym__comparison_operator_token3] = ACTIONS(100), + [aux_sym__comparison_operator_token4] = ACTIONS(100), + [aux_sym__comparison_operator_token5] = ACTIONS(100), + [aux_sym__comparison_operator_token6] = ACTIONS(100), + [aux_sym__comparison_operator_token7] = ACTIONS(100), + [aux_sym__comparison_operator_token8] = ACTIONS(100), + [aux_sym__comparison_operator_token9] = ACTIONS(100), + [aux_sym_variable_tuning_token1] = ACTIONS(100), + [aux_sym_variable_tuning_token2] = ACTIONS(100), + [aux_sym_variable_tuning_token3] = ACTIONS(100), + [aux_sym_variable_tuning_token4] = ACTIONS(100), + [aux_sym_variable_tuning_token5] = ACTIONS(100), + [aux_sym_variable_tuning_token6] = ACTIONS(100), + [anon_sym_COMMA] = ACTIONS(100), + [aux_sym_function_call_token1] = ACTIONS(100), + [aux_sym_if_statement_token2] = ACTIONS(100), + [aux_sym_else_if_statement_token1] = ACTIONS(100), + [anon_sym_COLON] = ACTIONS(100), + [aux_sym_while_phrase_token1] = ACTIONS(100), + [aux_sym_property_tuning_token1] = ACTIONS(100), + [aux_sym_event_definition_token1] = ACTIONS(100), + [aux_sym_using_statement_token1] = ACTIONS(100), + [aux_sym_input_stream_tuning_token1] = ACTIONS(100), + [aux_sym_input_stream_tuning_token2] = ACTIONS(100), + [aux_sym_input_stream_tuning_token3] = ACTIONS(100), + [aux_sym_input_stream_tuning_token4] = ACTIONS(100), + [aux_sym_input_stream_tuning_token5] = ACTIONS(100), + [aux_sym_input_stream_tuning_token6] = ACTIONS(100), + [aux_sym_input_stream_tuning_token7] = ACTIONS(100), + [aux_sym_input_stream_tuning_token8] = ACTIONS(100), + [aux_sym_input_stream_tuning_token9] = ACTIONS(100), + [aux_sym_input_stream_tuning_token11] = ACTIONS(100), + [aux_sym_output_stream_tuning_token1] = ACTIONS(100), + [aux_sym_output_stream_tuning_token2] = ACTIONS(100), + [aux_sym_output_stream_tuning_token3] = ACTIONS(100), + [aux_sym_output_stream_tuning_token4] = ACTIONS(100), + [aux_sym_output_stream_tuning_token5] = ACTIONS(100), + [aux_sym_output_stream_tuning_token6] = ACTIONS(100), + [aux_sym_output_stream_tuning_token7] = ACTIONS(100), + [aux_sym_output_stream_tuning_token8] = ACTIONS(100), + [aux_sym_output_stream_statement_token1] = ACTIONS(100), + [aux_sym_on_error_phrase_token1] = ACTIONS(100), + [aux_sym_stop_after_phrase_token1] = ACTIONS(100), + [aux_sym_do_tuning_token1] = ACTIONS(100), + [anon_sym_BY] = ACTIONS(100), + [aux_sym_where_clause_token1] = ACTIONS(100), + [aux_sym_query_tuning_token1] = ACTIONS(100), + [aux_sym_query_tuning_token2] = ACTIONS(100), + [aux_sym_query_tuning_token3] = ACTIONS(100), + [aux_sym_query_tuning_token4] = ACTIONS(100), + [aux_sym_query_tuning_token5] = ACTIONS(100), + [aux_sym_of_token1] = ACTIONS(100), + [aux_sym_field_definition_token1] = ACTIONS(100), + [aux_sym_index_definition_token1] = ACTIONS(100), + [aux_sym_on_statement_token1] = ACTIONS(100), + [sym__namedot] = ACTIONS(100), + [sym__or_operator] = ACTIONS(100), + [sym__and_operator] = ACTIONS(100), }, [13] = { [sym_comment] = STATE(13), @@ -27341,6 +27651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(121), [aux_sym_variable_tuning_token6] = ACTIONS(121), [anon_sym_COMMA] = ACTIONS(121), + [aux_sym_function_call_token1] = ACTIONS(121), [aux_sym_if_statement_token2] = ACTIONS(121), [aux_sym_else_if_statement_token1] = ACTIONS(121), [anon_sym_COLON] = ACTIONS(121), @@ -27377,7 +27688,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(121), [aux_sym_query_tuning_token4] = ACTIONS(121), [aux_sym_query_tuning_token5] = ACTIONS(121), - [aux_sym_query_tuning_token6] = ACTIONS(121), [aux_sym_of_token1] = ACTIONS(121), [aux_sym_field_definition_token1] = ACTIONS(121), [aux_sym_index_definition_token1] = ACTIONS(121), @@ -27390,6 +27700,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_include] = STATE(14), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(83), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(85), + [sym__terminator] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(83), + [anon_sym_GT_EQ] = ACTIONS(85), + [aux_sym__comparison_operator_token1] = ACTIONS(85), + [aux_sym__comparison_operator_token2] = ACTIONS(85), + [aux_sym__comparison_operator_token3] = ACTIONS(85), + [aux_sym__comparison_operator_token4] = ACTIONS(85), + [aux_sym__comparison_operator_token5] = ACTIONS(85), + [aux_sym__comparison_operator_token6] = ACTIONS(85), + [aux_sym__comparison_operator_token7] = ACTIONS(85), + [aux_sym__comparison_operator_token8] = ACTIONS(85), + [aux_sym__comparison_operator_token9] = ACTIONS(85), + [aux_sym_variable_tuning_token1] = ACTIONS(85), + [aux_sym_variable_tuning_token2] = ACTIONS(85), + [aux_sym_variable_tuning_token3] = ACTIONS(85), + [aux_sym_variable_tuning_token4] = ACTIONS(85), + [aux_sym_variable_tuning_token5] = ACTIONS(85), + [aux_sym_variable_tuning_token6] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [aux_sym_function_call_token1] = ACTIONS(85), + [aux_sym_if_statement_token2] = ACTIONS(85), + [aux_sym_else_if_statement_token1] = ACTIONS(85), + [anon_sym_COLON] = ACTIONS(85), + [aux_sym_while_phrase_token1] = ACTIONS(85), + [aux_sym_property_tuning_token1] = ACTIONS(85), + [aux_sym_event_definition_token1] = ACTIONS(85), + [aux_sym_using_statement_token1] = ACTIONS(85), + [aux_sym_input_stream_tuning_token1] = ACTIONS(85), + [aux_sym_input_stream_tuning_token2] = ACTIONS(85), + [aux_sym_input_stream_tuning_token3] = ACTIONS(85), + [aux_sym_input_stream_tuning_token4] = ACTIONS(85), + [aux_sym_input_stream_tuning_token5] = ACTIONS(85), + [aux_sym_input_stream_tuning_token6] = ACTIONS(85), + [aux_sym_input_stream_tuning_token7] = ACTIONS(85), + [aux_sym_input_stream_tuning_token8] = ACTIONS(85), + [aux_sym_input_stream_tuning_token9] = ACTIONS(85), + [aux_sym_input_stream_tuning_token11] = ACTIONS(85), + [aux_sym_output_stream_tuning_token1] = ACTIONS(85), + [aux_sym_output_stream_tuning_token2] = ACTIONS(85), + [aux_sym_output_stream_tuning_token3] = ACTIONS(85), + [aux_sym_output_stream_tuning_token4] = ACTIONS(85), + [aux_sym_output_stream_tuning_token5] = ACTIONS(85), + [aux_sym_output_stream_tuning_token6] = ACTIONS(85), + [aux_sym_output_stream_tuning_token7] = ACTIONS(85), + [aux_sym_output_stream_tuning_token8] = ACTIONS(85), + [aux_sym_output_stream_statement_token1] = ACTIONS(85), + [aux_sym_on_error_phrase_token1] = ACTIONS(85), + [aux_sym_stop_after_phrase_token1] = ACTIONS(85), + [aux_sym_do_tuning_token1] = ACTIONS(85), + [anon_sym_BY] = ACTIONS(85), + [aux_sym_where_clause_token1] = ACTIONS(85), + [aux_sym_query_tuning_token1] = ACTIONS(85), + [aux_sym_query_tuning_token2] = ACTIONS(85), + [aux_sym_query_tuning_token3] = ACTIONS(85), + [aux_sym_query_tuning_token4] = ACTIONS(85), + [aux_sym_query_tuning_token5] = ACTIONS(85), + [aux_sym_of_token1] = ACTIONS(85), + [aux_sym_field_definition_token1] = ACTIONS(85), + [aux_sym_index_definition_token1] = ACTIONS(85), + [aux_sym_on_statement_token1] = ACTIONS(85), + [sym__or_operator] = ACTIONS(85), + [sym__and_operator] = ACTIONS(85), + }, + [15] = { + [sym_comment] = STATE(15), + [sym_include] = STATE(15), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(125), @@ -27420,6 +27809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(125), [aux_sym_variable_tuning_token6] = ACTIONS(125), [anon_sym_COMMA] = ACTIONS(125), + [aux_sym_function_call_token1] = ACTIONS(125), [aux_sym_if_statement_token2] = ACTIONS(125), [aux_sym_else_if_statement_token1] = ACTIONS(125), [anon_sym_COLON] = ACTIONS(125), @@ -27456,7 +27846,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(125), [aux_sym_query_tuning_token4] = ACTIONS(125), [aux_sym_query_tuning_token5] = ACTIONS(125), - [aux_sym_query_tuning_token6] = ACTIONS(125), [aux_sym_of_token1] = ACTIONS(125), [aux_sym_field_definition_token1] = ACTIONS(125), [aux_sym_index_definition_token1] = ACTIONS(125), @@ -27464,9 +27853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(125), [sym__and_operator] = ACTIONS(125), }, - [15] = { - [sym_comment] = STATE(15), - [sym_include] = STATE(15), + [16] = { + [sym_comment] = STATE(16), + [sym_include] = STATE(16), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(127), @@ -27499,6 +27888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(129), [aux_sym_variable_tuning_token6] = ACTIONS(129), [anon_sym_COMMA] = ACTIONS(129), + [aux_sym_function_call_token1] = ACTIONS(131), [aux_sym_if_statement_token2] = ACTIONS(129), [aux_sym_else_if_statement_token1] = ACTIONS(129), [anon_sym_COLON] = ACTIONS(129), @@ -27535,7 +27925,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(129), [aux_sym_query_tuning_token4] = ACTIONS(129), [aux_sym_query_tuning_token5] = ACTIONS(129), - [aux_sym_query_tuning_token6] = ACTIONS(129), [aux_sym_of_token1] = ACTIONS(129), [aux_sym_field_definition_token1] = ACTIONS(129), [aux_sym_index_definition_token1] = ACTIONS(129), @@ -27543,716 +27932,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(129), [sym__and_operator] = ACTIONS(129), }, - [16] = { - [sym_comment] = STATE(16), - [sym_include] = STATE(16), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(133), - [sym__terminator] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_LT_GT] = ACTIONS(133), - [anon_sym_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_GT_EQ] = ACTIONS(133), - [aux_sym__comparison_operator_token1] = ACTIONS(133), - [aux_sym__comparison_operator_token2] = ACTIONS(133), - [aux_sym__comparison_operator_token3] = ACTIONS(133), - [aux_sym__comparison_operator_token4] = ACTIONS(133), - [aux_sym__comparison_operator_token5] = ACTIONS(133), - [aux_sym__comparison_operator_token6] = ACTIONS(133), - [aux_sym__comparison_operator_token7] = ACTIONS(133), - [aux_sym__comparison_operator_token8] = ACTIONS(133), - [aux_sym__comparison_operator_token9] = ACTIONS(133), - [aux_sym_variable_tuning_token1] = ACTIONS(133), - [aux_sym_variable_tuning_token2] = ACTIONS(133), - [aux_sym_variable_tuning_token3] = ACTIONS(133), - [aux_sym_variable_tuning_token4] = ACTIONS(133), - [aux_sym_variable_tuning_token5] = ACTIONS(133), - [aux_sym_variable_tuning_token6] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [aux_sym_if_statement_token2] = ACTIONS(133), - [aux_sym_else_if_statement_token1] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [aux_sym_while_phrase_token1] = ACTIONS(133), - [aux_sym_property_tuning_token1] = ACTIONS(133), - [aux_sym_event_definition_token1] = ACTIONS(133), - [aux_sym_using_statement_token1] = ACTIONS(133), - [aux_sym_input_stream_tuning_token1] = ACTIONS(133), - [aux_sym_input_stream_tuning_token2] = ACTIONS(133), - [aux_sym_input_stream_tuning_token3] = ACTIONS(133), - [aux_sym_input_stream_tuning_token4] = ACTIONS(133), - [aux_sym_input_stream_tuning_token5] = ACTIONS(133), - [aux_sym_input_stream_tuning_token6] = ACTIONS(133), - [aux_sym_input_stream_tuning_token7] = ACTIONS(133), - [aux_sym_input_stream_tuning_token8] = ACTIONS(133), - [aux_sym_input_stream_tuning_token9] = ACTIONS(133), - [aux_sym_input_stream_tuning_token11] = ACTIONS(133), - [aux_sym_output_stream_tuning_token1] = ACTIONS(133), - [aux_sym_output_stream_tuning_token2] = ACTIONS(133), - [aux_sym_output_stream_tuning_token3] = ACTIONS(133), - [aux_sym_output_stream_tuning_token4] = ACTIONS(133), - [aux_sym_output_stream_tuning_token5] = ACTIONS(133), - [aux_sym_output_stream_tuning_token6] = ACTIONS(133), - [aux_sym_output_stream_tuning_token7] = ACTIONS(133), - [aux_sym_output_stream_tuning_token8] = ACTIONS(133), - [aux_sym_output_stream_statement_token1] = ACTIONS(133), - [aux_sym_on_error_phrase_token1] = ACTIONS(133), - [aux_sym_stop_after_phrase_token1] = ACTIONS(133), - [aux_sym_do_tuning_token1] = ACTIONS(133), - [anon_sym_BY] = ACTIONS(133), - [aux_sym_where_clause_token1] = ACTIONS(133), - [aux_sym_query_tuning_token1] = ACTIONS(133), - [aux_sym_query_tuning_token2] = ACTIONS(133), - [aux_sym_query_tuning_token3] = ACTIONS(133), - [aux_sym_query_tuning_token4] = ACTIONS(133), - [aux_sym_query_tuning_token5] = ACTIONS(133), - [aux_sym_query_tuning_token6] = ACTIONS(133), - [aux_sym_of_token1] = ACTIONS(133), - [aux_sym_field_definition_token1] = ACTIONS(133), - [aux_sym_index_definition_token1] = ACTIONS(133), - [aux_sym_on_statement_token1] = ACTIONS(133), - [sym__or_operator] = ACTIONS(133), - [sym__and_operator] = ACTIONS(133), - }, [17] = { [sym_comment] = STATE(17), [sym_include] = STATE(17), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(75), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(137), - [sym__terminator] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(135), - [anon_sym_LT_EQ] = ACTIONS(137), - [anon_sym_LT_GT] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(135), - [anon_sym_GT_EQ] = ACTIONS(137), - [aux_sym__comparison_operator_token1] = ACTIONS(137), - [aux_sym__comparison_operator_token2] = ACTIONS(137), - [aux_sym__comparison_operator_token3] = ACTIONS(137), - [aux_sym__comparison_operator_token4] = ACTIONS(137), - [aux_sym__comparison_operator_token5] = ACTIONS(137), - [aux_sym__comparison_operator_token6] = ACTIONS(137), - [aux_sym__comparison_operator_token7] = ACTIONS(137), - [aux_sym__comparison_operator_token8] = ACTIONS(137), - [aux_sym__comparison_operator_token9] = ACTIONS(137), - [aux_sym_variable_tuning_token1] = ACTIONS(137), - [aux_sym_variable_tuning_token2] = ACTIONS(137), - [aux_sym_variable_tuning_token3] = ACTIONS(137), - [aux_sym_variable_tuning_token4] = ACTIONS(137), - [aux_sym_variable_tuning_token5] = ACTIONS(137), - [aux_sym_variable_tuning_token6] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(137), - [aux_sym_if_statement_token2] = ACTIONS(137), - [aux_sym_else_if_statement_token1] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [aux_sym_while_phrase_token1] = ACTIONS(137), - [aux_sym_property_tuning_token1] = ACTIONS(137), - [aux_sym_event_definition_token1] = ACTIONS(137), - [aux_sym_using_statement_token1] = ACTIONS(137), - [aux_sym_input_stream_tuning_token1] = ACTIONS(137), - [aux_sym_input_stream_tuning_token2] = ACTIONS(137), - [aux_sym_input_stream_tuning_token3] = ACTIONS(137), - [aux_sym_input_stream_tuning_token4] = ACTIONS(137), - [aux_sym_input_stream_tuning_token5] = ACTIONS(137), - [aux_sym_input_stream_tuning_token6] = ACTIONS(137), - [aux_sym_input_stream_tuning_token7] = ACTIONS(137), - [aux_sym_input_stream_tuning_token8] = ACTIONS(137), - [aux_sym_input_stream_tuning_token9] = ACTIONS(137), - [aux_sym_input_stream_tuning_token11] = ACTIONS(137), - [aux_sym_output_stream_tuning_token1] = ACTIONS(137), - [aux_sym_output_stream_tuning_token2] = ACTIONS(137), - [aux_sym_output_stream_tuning_token3] = ACTIONS(137), - [aux_sym_output_stream_tuning_token4] = ACTIONS(137), - [aux_sym_output_stream_tuning_token5] = ACTIONS(137), - [aux_sym_output_stream_tuning_token6] = ACTIONS(137), - [aux_sym_output_stream_tuning_token7] = ACTIONS(137), - [aux_sym_output_stream_tuning_token8] = ACTIONS(137), - [aux_sym_output_stream_statement_token1] = ACTIONS(137), - [aux_sym_on_error_phrase_token1] = ACTIONS(137), - [aux_sym_stop_after_phrase_token1] = ACTIONS(137), - [aux_sym_do_tuning_token1] = ACTIONS(137), - [anon_sym_BY] = ACTIONS(137), - [aux_sym_where_clause_token1] = ACTIONS(137), - [aux_sym_query_tuning_token1] = ACTIONS(137), - [aux_sym_query_tuning_token2] = ACTIONS(137), - [aux_sym_query_tuning_token3] = ACTIONS(137), - [aux_sym_query_tuning_token4] = ACTIONS(137), - [aux_sym_query_tuning_token5] = ACTIONS(137), - [aux_sym_query_tuning_token6] = ACTIONS(137), - [aux_sym_of_token1] = ACTIONS(137), - [aux_sym_field_definition_token1] = ACTIONS(137), - [aux_sym_index_definition_token1] = ACTIONS(137), - [aux_sym_on_statement_token1] = ACTIONS(137), - [sym__or_operator] = ACTIONS(137), - [sym__and_operator] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(77), + [sym__terminator] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_LT_GT] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(77), + [aux_sym__comparison_operator_token1] = ACTIONS(77), + [aux_sym__comparison_operator_token2] = ACTIONS(77), + [aux_sym__comparison_operator_token3] = ACTIONS(77), + [aux_sym__comparison_operator_token4] = ACTIONS(77), + [aux_sym__comparison_operator_token5] = ACTIONS(77), + [aux_sym__comparison_operator_token6] = ACTIONS(77), + [aux_sym__comparison_operator_token7] = ACTIONS(77), + [aux_sym__comparison_operator_token8] = ACTIONS(77), + [aux_sym__comparison_operator_token9] = ACTIONS(77), + [aux_sym_variable_tuning_token1] = ACTIONS(77), + [aux_sym_variable_tuning_token2] = ACTIONS(77), + [aux_sym_variable_tuning_token3] = ACTIONS(77), + [aux_sym_variable_tuning_token4] = ACTIONS(77), + [aux_sym_variable_tuning_token5] = ACTIONS(77), + [aux_sym_variable_tuning_token6] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(77), + [aux_sym_function_call_token1] = ACTIONS(77), + [aux_sym_if_statement_token2] = ACTIONS(77), + [aux_sym_else_if_statement_token1] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(77), + [aux_sym_while_phrase_token1] = ACTIONS(77), + [aux_sym_property_tuning_token1] = ACTIONS(77), + [aux_sym_event_definition_token1] = ACTIONS(77), + [aux_sym_using_statement_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token2] = ACTIONS(77), + [aux_sym_input_stream_tuning_token3] = ACTIONS(77), + [aux_sym_input_stream_tuning_token4] = ACTIONS(77), + [aux_sym_input_stream_tuning_token5] = ACTIONS(77), + [aux_sym_input_stream_tuning_token6] = ACTIONS(77), + [aux_sym_input_stream_tuning_token7] = ACTIONS(77), + [aux_sym_input_stream_tuning_token8] = ACTIONS(77), + [aux_sym_input_stream_tuning_token9] = ACTIONS(77), + [aux_sym_input_stream_tuning_token11] = ACTIONS(77), + [aux_sym_output_stream_tuning_token1] = ACTIONS(77), + [aux_sym_output_stream_tuning_token2] = ACTIONS(77), + [aux_sym_output_stream_tuning_token3] = ACTIONS(77), + [aux_sym_output_stream_tuning_token4] = ACTIONS(77), + [aux_sym_output_stream_tuning_token5] = ACTIONS(77), + [aux_sym_output_stream_tuning_token6] = ACTIONS(77), + [aux_sym_output_stream_tuning_token7] = ACTIONS(77), + [aux_sym_output_stream_tuning_token8] = ACTIONS(77), + [aux_sym_output_stream_statement_token1] = ACTIONS(77), + [aux_sym_on_error_phrase_token1] = ACTIONS(77), + [aux_sym_stop_after_phrase_token1] = ACTIONS(77), + [aux_sym_do_tuning_token1] = ACTIONS(77), + [anon_sym_BY] = ACTIONS(77), + [aux_sym_where_clause_token1] = ACTIONS(77), + [aux_sym_query_tuning_token1] = ACTIONS(77), + [aux_sym_query_tuning_token2] = ACTIONS(77), + [aux_sym_query_tuning_token3] = ACTIONS(77), + [aux_sym_query_tuning_token4] = ACTIONS(77), + [aux_sym_query_tuning_token5] = ACTIONS(77), + [aux_sym_of_token1] = ACTIONS(77), + [aux_sym_field_definition_token1] = ACTIONS(77), + [aux_sym_index_definition_token1] = ACTIONS(77), + [aux_sym_on_statement_token1] = ACTIONS(77), + [sym__or_operator] = ACTIONS(77), + [sym__and_operator] = ACTIONS(77), }, [18] = { [sym_comment] = STATE(18), [sym_include] = STATE(18), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(133), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(141), - [sym__terminator] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_RPAREN] = ACTIONS(141), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(141), - [anon_sym_LT_GT] = ACTIONS(141), - [anon_sym_EQ] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(141), - [aux_sym__comparison_operator_token1] = ACTIONS(141), - [aux_sym__comparison_operator_token2] = ACTIONS(141), - [aux_sym__comparison_operator_token3] = ACTIONS(141), - [aux_sym__comparison_operator_token4] = ACTIONS(141), - [aux_sym__comparison_operator_token5] = ACTIONS(141), - [aux_sym__comparison_operator_token6] = ACTIONS(141), - [aux_sym__comparison_operator_token7] = ACTIONS(141), - [aux_sym__comparison_operator_token8] = ACTIONS(141), - [aux_sym__comparison_operator_token9] = ACTIONS(141), - [aux_sym_variable_tuning_token1] = ACTIONS(141), - [aux_sym_variable_tuning_token2] = ACTIONS(141), - [aux_sym_variable_tuning_token3] = ACTIONS(141), - [aux_sym_variable_tuning_token4] = ACTIONS(141), - [aux_sym_variable_tuning_token5] = ACTIONS(141), - [aux_sym_variable_tuning_token6] = ACTIONS(141), - [anon_sym_COMMA] = ACTIONS(141), - [aux_sym_if_statement_token2] = ACTIONS(141), - [aux_sym_else_if_statement_token1] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [aux_sym_while_phrase_token1] = ACTIONS(141), - [aux_sym_property_tuning_token1] = ACTIONS(141), - [aux_sym_event_definition_token1] = ACTIONS(141), - [aux_sym_using_statement_token1] = ACTIONS(141), - [aux_sym_input_stream_tuning_token1] = ACTIONS(141), - [aux_sym_input_stream_tuning_token2] = ACTIONS(141), - [aux_sym_input_stream_tuning_token3] = ACTIONS(141), - [aux_sym_input_stream_tuning_token4] = ACTIONS(141), - [aux_sym_input_stream_tuning_token5] = ACTIONS(141), - [aux_sym_input_stream_tuning_token6] = ACTIONS(141), - [aux_sym_input_stream_tuning_token7] = ACTIONS(141), - [aux_sym_input_stream_tuning_token8] = ACTIONS(141), - [aux_sym_input_stream_tuning_token9] = ACTIONS(141), - [aux_sym_input_stream_tuning_token11] = ACTIONS(141), - [aux_sym_output_stream_tuning_token1] = ACTIONS(141), - [aux_sym_output_stream_tuning_token2] = ACTIONS(141), - [aux_sym_output_stream_tuning_token3] = ACTIONS(141), - [aux_sym_output_stream_tuning_token4] = ACTIONS(141), - [aux_sym_output_stream_tuning_token5] = ACTIONS(141), - [aux_sym_output_stream_tuning_token6] = ACTIONS(141), - [aux_sym_output_stream_tuning_token7] = ACTIONS(141), - [aux_sym_output_stream_tuning_token8] = ACTIONS(141), - [aux_sym_output_stream_statement_token1] = ACTIONS(141), - [aux_sym_on_error_phrase_token1] = ACTIONS(141), - [aux_sym_stop_after_phrase_token1] = ACTIONS(141), - [aux_sym_do_tuning_token1] = ACTIONS(141), - [anon_sym_BY] = ACTIONS(141), - [aux_sym_where_clause_token1] = ACTIONS(141), - [aux_sym_query_tuning_token1] = ACTIONS(141), - [aux_sym_query_tuning_token2] = ACTIONS(141), - [aux_sym_query_tuning_token3] = ACTIONS(141), - [aux_sym_query_tuning_token4] = ACTIONS(141), - [aux_sym_query_tuning_token5] = ACTIONS(141), - [aux_sym_query_tuning_token6] = ACTIONS(141), - [aux_sym_of_token1] = ACTIONS(141), - [aux_sym_field_definition_token1] = ACTIONS(141), - [aux_sym_index_definition_token1] = ACTIONS(141), - [aux_sym_on_statement_token1] = ACTIONS(141), - [sym__or_operator] = ACTIONS(141), - [sym__and_operator] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [sym__terminator] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_LT_GT] = ACTIONS(135), + [anon_sym_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_GT_EQ] = ACTIONS(135), + [aux_sym__comparison_operator_token1] = ACTIONS(135), + [aux_sym__comparison_operator_token2] = ACTIONS(135), + [aux_sym__comparison_operator_token3] = ACTIONS(135), + [aux_sym__comparison_operator_token4] = ACTIONS(135), + [aux_sym__comparison_operator_token5] = ACTIONS(135), + [aux_sym__comparison_operator_token6] = ACTIONS(135), + [aux_sym__comparison_operator_token7] = ACTIONS(135), + [aux_sym__comparison_operator_token8] = ACTIONS(135), + [aux_sym__comparison_operator_token9] = ACTIONS(135), + [aux_sym_variable_tuning_token1] = ACTIONS(135), + [aux_sym_variable_tuning_token2] = ACTIONS(135), + [aux_sym_variable_tuning_token3] = ACTIONS(135), + [aux_sym_variable_tuning_token4] = ACTIONS(135), + [aux_sym_variable_tuning_token5] = ACTIONS(135), + [aux_sym_variable_tuning_token6] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [aux_sym_function_call_token1] = ACTIONS(135), + [aux_sym_if_statement_token2] = ACTIONS(135), + [aux_sym_else_if_statement_token1] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [aux_sym_while_phrase_token1] = ACTIONS(135), + [aux_sym_property_tuning_token1] = ACTIONS(135), + [aux_sym_event_definition_token1] = ACTIONS(135), + [aux_sym_using_statement_token1] = ACTIONS(135), + [aux_sym_input_stream_tuning_token1] = ACTIONS(135), + [aux_sym_input_stream_tuning_token2] = ACTIONS(135), + [aux_sym_input_stream_tuning_token3] = ACTIONS(135), + [aux_sym_input_stream_tuning_token4] = ACTIONS(135), + [aux_sym_input_stream_tuning_token5] = ACTIONS(135), + [aux_sym_input_stream_tuning_token6] = ACTIONS(135), + [aux_sym_input_stream_tuning_token7] = ACTIONS(135), + [aux_sym_input_stream_tuning_token8] = ACTIONS(135), + [aux_sym_input_stream_tuning_token9] = ACTIONS(135), + [aux_sym_input_stream_tuning_token11] = ACTIONS(135), + [aux_sym_output_stream_tuning_token1] = ACTIONS(135), + [aux_sym_output_stream_tuning_token2] = ACTIONS(135), + [aux_sym_output_stream_tuning_token3] = ACTIONS(135), + [aux_sym_output_stream_tuning_token4] = ACTIONS(135), + [aux_sym_output_stream_tuning_token5] = ACTIONS(135), + [aux_sym_output_stream_tuning_token6] = ACTIONS(135), + [aux_sym_output_stream_tuning_token7] = ACTIONS(135), + [aux_sym_output_stream_tuning_token8] = ACTIONS(135), + [aux_sym_output_stream_statement_token1] = ACTIONS(135), + [aux_sym_on_error_phrase_token1] = ACTIONS(135), + [aux_sym_stop_after_phrase_token1] = ACTIONS(135), + [aux_sym_do_tuning_token1] = ACTIONS(135), + [anon_sym_BY] = ACTIONS(135), + [aux_sym_where_clause_token1] = ACTIONS(135), + [aux_sym_query_tuning_token1] = ACTIONS(135), + [aux_sym_query_tuning_token2] = ACTIONS(135), + [aux_sym_query_tuning_token3] = ACTIONS(135), + [aux_sym_query_tuning_token4] = ACTIONS(135), + [aux_sym_query_tuning_token5] = ACTIONS(135), + [aux_sym_of_token1] = ACTIONS(135), + [aux_sym_field_definition_token1] = ACTIONS(135), + [aux_sym_index_definition_token1] = ACTIONS(135), + [aux_sym_on_statement_token1] = ACTIONS(135), + [sym__or_operator] = ACTIONS(135), + [sym__and_operator] = ACTIONS(135), }, [19] = { [sym_comment] = STATE(19), [sym_include] = STATE(19), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(137), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(145), - [sym__terminator] = ACTIONS(145), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_LT] = ACTIONS(143), - [anon_sym_LT_EQ] = ACTIONS(145), - [anon_sym_LT_GT] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(143), - [anon_sym_GT_EQ] = ACTIONS(145), - [aux_sym__comparison_operator_token1] = ACTIONS(145), - [aux_sym__comparison_operator_token2] = ACTIONS(145), - [aux_sym__comparison_operator_token3] = ACTIONS(145), - [aux_sym__comparison_operator_token4] = ACTIONS(145), - [aux_sym__comparison_operator_token5] = ACTIONS(145), - [aux_sym__comparison_operator_token6] = ACTIONS(145), - [aux_sym__comparison_operator_token7] = ACTIONS(145), - [aux_sym__comparison_operator_token8] = ACTIONS(145), - [aux_sym__comparison_operator_token9] = ACTIONS(145), - [aux_sym_variable_tuning_token1] = ACTIONS(145), - [aux_sym_variable_tuning_token2] = ACTIONS(145), - [aux_sym_variable_tuning_token3] = ACTIONS(145), - [aux_sym_variable_tuning_token4] = ACTIONS(145), - [aux_sym_variable_tuning_token5] = ACTIONS(145), - [aux_sym_variable_tuning_token6] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [aux_sym_if_statement_token2] = ACTIONS(145), - [aux_sym_else_if_statement_token1] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [aux_sym_while_phrase_token1] = ACTIONS(145), - [aux_sym_property_tuning_token1] = ACTIONS(145), - [aux_sym_event_definition_token1] = ACTIONS(145), - [aux_sym_using_statement_token1] = ACTIONS(145), - [aux_sym_input_stream_tuning_token1] = ACTIONS(145), - [aux_sym_input_stream_tuning_token2] = ACTIONS(145), - [aux_sym_input_stream_tuning_token3] = ACTIONS(145), - [aux_sym_input_stream_tuning_token4] = ACTIONS(145), - [aux_sym_input_stream_tuning_token5] = ACTIONS(145), - [aux_sym_input_stream_tuning_token6] = ACTIONS(145), - [aux_sym_input_stream_tuning_token7] = ACTIONS(145), - [aux_sym_input_stream_tuning_token8] = ACTIONS(145), - [aux_sym_input_stream_tuning_token9] = ACTIONS(145), - [aux_sym_input_stream_tuning_token11] = ACTIONS(145), - [aux_sym_output_stream_tuning_token1] = ACTIONS(145), - [aux_sym_output_stream_tuning_token2] = ACTIONS(145), - [aux_sym_output_stream_tuning_token3] = ACTIONS(145), - [aux_sym_output_stream_tuning_token4] = ACTIONS(145), - [aux_sym_output_stream_tuning_token5] = ACTIONS(145), - [aux_sym_output_stream_tuning_token6] = ACTIONS(145), - [aux_sym_output_stream_tuning_token7] = ACTIONS(145), - [aux_sym_output_stream_tuning_token8] = ACTIONS(145), - [aux_sym_output_stream_statement_token1] = ACTIONS(145), - [aux_sym_on_error_phrase_token1] = ACTIONS(145), - [aux_sym_stop_after_phrase_token1] = ACTIONS(145), - [aux_sym_do_tuning_token1] = ACTIONS(145), - [anon_sym_BY] = ACTIONS(145), - [aux_sym_where_clause_token1] = ACTIONS(145), - [aux_sym_query_tuning_token1] = ACTIONS(145), - [aux_sym_query_tuning_token2] = ACTIONS(145), - [aux_sym_query_tuning_token3] = ACTIONS(145), - [aux_sym_query_tuning_token4] = ACTIONS(145), - [aux_sym_query_tuning_token5] = ACTIONS(145), - [aux_sym_query_tuning_token6] = ACTIONS(145), - [aux_sym_of_token1] = ACTIONS(145), - [aux_sym_field_definition_token1] = ACTIONS(145), - [aux_sym_index_definition_token1] = ACTIONS(145), - [aux_sym_on_statement_token1] = ACTIONS(145), - [sym__or_operator] = ACTIONS(145), - [sym__and_operator] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(139), + [sym__terminator] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(137), + [anon_sym_LT_EQ] = ACTIONS(139), + [anon_sym_LT_GT] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(137), + [anon_sym_GT_EQ] = ACTIONS(139), + [aux_sym__comparison_operator_token1] = ACTIONS(139), + [aux_sym__comparison_operator_token2] = ACTIONS(139), + [aux_sym__comparison_operator_token3] = ACTIONS(139), + [aux_sym__comparison_operator_token4] = ACTIONS(139), + [aux_sym__comparison_operator_token5] = ACTIONS(139), + [aux_sym__comparison_operator_token6] = ACTIONS(139), + [aux_sym__comparison_operator_token7] = ACTIONS(139), + [aux_sym__comparison_operator_token8] = ACTIONS(139), + [aux_sym__comparison_operator_token9] = ACTIONS(139), + [aux_sym_variable_tuning_token1] = ACTIONS(139), + [aux_sym_variable_tuning_token2] = ACTIONS(139), + [aux_sym_variable_tuning_token3] = ACTIONS(139), + [aux_sym_variable_tuning_token4] = ACTIONS(139), + [aux_sym_variable_tuning_token5] = ACTIONS(139), + [aux_sym_variable_tuning_token6] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(139), + [aux_sym_function_call_token1] = ACTIONS(139), + [aux_sym_if_statement_token2] = ACTIONS(139), + [aux_sym_else_if_statement_token1] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [aux_sym_while_phrase_token1] = ACTIONS(139), + [aux_sym_property_tuning_token1] = ACTIONS(139), + [aux_sym_event_definition_token1] = ACTIONS(139), + [aux_sym_using_statement_token1] = ACTIONS(139), + [aux_sym_input_stream_tuning_token1] = ACTIONS(139), + [aux_sym_input_stream_tuning_token2] = ACTIONS(139), + [aux_sym_input_stream_tuning_token3] = ACTIONS(139), + [aux_sym_input_stream_tuning_token4] = ACTIONS(139), + [aux_sym_input_stream_tuning_token5] = ACTIONS(139), + [aux_sym_input_stream_tuning_token6] = ACTIONS(139), + [aux_sym_input_stream_tuning_token7] = ACTIONS(139), + [aux_sym_input_stream_tuning_token8] = ACTIONS(139), + [aux_sym_input_stream_tuning_token9] = ACTIONS(139), + [aux_sym_input_stream_tuning_token11] = ACTIONS(139), + [aux_sym_output_stream_tuning_token1] = ACTIONS(139), + [aux_sym_output_stream_tuning_token2] = ACTIONS(139), + [aux_sym_output_stream_tuning_token3] = ACTIONS(139), + [aux_sym_output_stream_tuning_token4] = ACTIONS(139), + [aux_sym_output_stream_tuning_token5] = ACTIONS(139), + [aux_sym_output_stream_tuning_token6] = ACTIONS(139), + [aux_sym_output_stream_tuning_token7] = ACTIONS(139), + [aux_sym_output_stream_tuning_token8] = ACTIONS(139), + [aux_sym_output_stream_statement_token1] = ACTIONS(139), + [aux_sym_on_error_phrase_token1] = ACTIONS(139), + [aux_sym_stop_after_phrase_token1] = ACTIONS(139), + [aux_sym_do_tuning_token1] = ACTIONS(139), + [anon_sym_BY] = ACTIONS(139), + [aux_sym_where_clause_token1] = ACTIONS(139), + [aux_sym_query_tuning_token1] = ACTIONS(139), + [aux_sym_query_tuning_token2] = ACTIONS(139), + [aux_sym_query_tuning_token3] = ACTIONS(139), + [aux_sym_query_tuning_token4] = ACTIONS(139), + [aux_sym_query_tuning_token5] = ACTIONS(139), + [aux_sym_of_token1] = ACTIONS(139), + [aux_sym_field_definition_token1] = ACTIONS(139), + [aux_sym_index_definition_token1] = ACTIONS(139), + [aux_sym_on_statement_token1] = ACTIONS(139), + [sym__or_operator] = ACTIONS(139), + [sym__and_operator] = ACTIONS(139), }, [20] = { [sym_comment] = STATE(20), [sym_include] = STATE(20), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(147), + [anon_sym_SLASH] = ACTIONS(141), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(149), - [sym__terminator] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_LT_EQ] = ACTIONS(149), - [anon_sym_LT_GT] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_GT_EQ] = ACTIONS(149), - [aux_sym__comparison_operator_token1] = ACTIONS(149), - [aux_sym__comparison_operator_token2] = ACTIONS(149), - [aux_sym__comparison_operator_token3] = ACTIONS(149), - [aux_sym__comparison_operator_token4] = ACTIONS(149), - [aux_sym__comparison_operator_token5] = ACTIONS(149), - [aux_sym__comparison_operator_token6] = ACTIONS(149), - [aux_sym__comparison_operator_token7] = ACTIONS(149), - [aux_sym__comparison_operator_token8] = ACTIONS(149), - [aux_sym__comparison_operator_token9] = ACTIONS(149), - [aux_sym_variable_tuning_token1] = ACTIONS(149), - [aux_sym_variable_tuning_token2] = ACTIONS(149), - [aux_sym_variable_tuning_token3] = ACTIONS(149), - [aux_sym_variable_tuning_token4] = ACTIONS(149), - [aux_sym_variable_tuning_token5] = ACTIONS(149), - [aux_sym_variable_tuning_token6] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [aux_sym_if_statement_token2] = ACTIONS(149), - [aux_sym_else_if_statement_token1] = ACTIONS(149), - [anon_sym_COLON] = ACTIONS(149), - [aux_sym_while_phrase_token1] = ACTIONS(149), - [aux_sym_property_tuning_token1] = ACTIONS(149), - [aux_sym_event_definition_token1] = ACTIONS(149), - [aux_sym_using_statement_token1] = ACTIONS(149), - [aux_sym_input_stream_tuning_token1] = ACTIONS(149), - [aux_sym_input_stream_tuning_token2] = ACTIONS(149), - [aux_sym_input_stream_tuning_token3] = ACTIONS(149), - [aux_sym_input_stream_tuning_token4] = ACTIONS(149), - [aux_sym_input_stream_tuning_token5] = ACTIONS(149), - [aux_sym_input_stream_tuning_token6] = ACTIONS(149), - [aux_sym_input_stream_tuning_token7] = ACTIONS(149), - [aux_sym_input_stream_tuning_token8] = ACTIONS(149), - [aux_sym_input_stream_tuning_token9] = ACTIONS(149), - [aux_sym_input_stream_tuning_token11] = ACTIONS(149), - [aux_sym_output_stream_tuning_token1] = ACTIONS(149), - [aux_sym_output_stream_tuning_token2] = ACTIONS(149), - [aux_sym_output_stream_tuning_token3] = ACTIONS(149), - [aux_sym_output_stream_tuning_token4] = ACTIONS(149), - [aux_sym_output_stream_tuning_token5] = ACTIONS(149), - [aux_sym_output_stream_tuning_token6] = ACTIONS(149), - [aux_sym_output_stream_tuning_token7] = ACTIONS(149), - [aux_sym_output_stream_tuning_token8] = ACTIONS(149), - [aux_sym_output_stream_statement_token1] = ACTIONS(149), - [aux_sym_on_error_phrase_token1] = ACTIONS(149), - [aux_sym_stop_after_phrase_token1] = ACTIONS(149), - [aux_sym_do_tuning_token1] = ACTIONS(149), - [anon_sym_BY] = ACTIONS(149), - [aux_sym_where_clause_token1] = ACTIONS(149), - [aux_sym_query_tuning_token1] = ACTIONS(149), - [aux_sym_query_tuning_token2] = ACTIONS(149), - [aux_sym_query_tuning_token3] = ACTIONS(149), - [aux_sym_query_tuning_token4] = ACTIONS(149), - [aux_sym_query_tuning_token5] = ACTIONS(149), - [aux_sym_query_tuning_token6] = ACTIONS(149), - [aux_sym_of_token1] = ACTIONS(149), - [aux_sym_field_definition_token1] = ACTIONS(149), - [aux_sym_index_definition_token1] = ACTIONS(149), - [aux_sym_on_statement_token1] = ACTIONS(149), - [sym__or_operator] = ACTIONS(149), - [sym__and_operator] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(143), + [sym__terminator] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_RPAREN] = ACTIONS(143), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(143), + [anon_sym_LT_GT] = ACTIONS(143), + [anon_sym_EQ] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(143), + [aux_sym__comparison_operator_token1] = ACTIONS(143), + [aux_sym__comparison_operator_token2] = ACTIONS(143), + [aux_sym__comparison_operator_token3] = ACTIONS(143), + [aux_sym__comparison_operator_token4] = ACTIONS(143), + [aux_sym__comparison_operator_token5] = ACTIONS(143), + [aux_sym__comparison_operator_token6] = ACTIONS(143), + [aux_sym__comparison_operator_token7] = ACTIONS(143), + [aux_sym__comparison_operator_token8] = ACTIONS(143), + [aux_sym__comparison_operator_token9] = ACTIONS(143), + [aux_sym_variable_tuning_token1] = ACTIONS(143), + [aux_sym_variable_tuning_token2] = ACTIONS(143), + [aux_sym_variable_tuning_token3] = ACTIONS(143), + [aux_sym_variable_tuning_token4] = ACTIONS(143), + [aux_sym_variable_tuning_token5] = ACTIONS(143), + [aux_sym_variable_tuning_token6] = ACTIONS(143), + [anon_sym_COMMA] = ACTIONS(143), + [aux_sym_function_call_token1] = ACTIONS(143), + [aux_sym_if_statement_token2] = ACTIONS(143), + [aux_sym_else_if_statement_token1] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [aux_sym_while_phrase_token1] = ACTIONS(143), + [aux_sym_property_tuning_token1] = ACTIONS(143), + [aux_sym_event_definition_token1] = ACTIONS(143), + [aux_sym_using_statement_token1] = ACTIONS(143), + [aux_sym_input_stream_tuning_token1] = ACTIONS(143), + [aux_sym_input_stream_tuning_token2] = ACTIONS(143), + [aux_sym_input_stream_tuning_token3] = ACTIONS(143), + [aux_sym_input_stream_tuning_token4] = ACTIONS(143), + [aux_sym_input_stream_tuning_token5] = ACTIONS(143), + [aux_sym_input_stream_tuning_token6] = ACTIONS(143), + [aux_sym_input_stream_tuning_token7] = ACTIONS(143), + [aux_sym_input_stream_tuning_token8] = ACTIONS(143), + [aux_sym_input_stream_tuning_token9] = ACTIONS(143), + [aux_sym_input_stream_tuning_token11] = ACTIONS(143), + [aux_sym_output_stream_tuning_token1] = ACTIONS(143), + [aux_sym_output_stream_tuning_token2] = ACTIONS(143), + [aux_sym_output_stream_tuning_token3] = ACTIONS(143), + [aux_sym_output_stream_tuning_token4] = ACTIONS(143), + [aux_sym_output_stream_tuning_token5] = ACTIONS(143), + [aux_sym_output_stream_tuning_token6] = ACTIONS(143), + [aux_sym_output_stream_tuning_token7] = ACTIONS(143), + [aux_sym_output_stream_tuning_token8] = ACTIONS(143), + [aux_sym_output_stream_statement_token1] = ACTIONS(143), + [aux_sym_on_error_phrase_token1] = ACTIONS(143), + [aux_sym_stop_after_phrase_token1] = ACTIONS(143), + [aux_sym_do_tuning_token1] = ACTIONS(143), + [anon_sym_BY] = ACTIONS(143), + [aux_sym_where_clause_token1] = ACTIONS(143), + [aux_sym_query_tuning_token1] = ACTIONS(143), + [aux_sym_query_tuning_token2] = ACTIONS(143), + [aux_sym_query_tuning_token3] = ACTIONS(143), + [aux_sym_query_tuning_token4] = ACTIONS(143), + [aux_sym_query_tuning_token5] = ACTIONS(143), + [aux_sym_of_token1] = ACTIONS(143), + [aux_sym_field_definition_token1] = ACTIONS(143), + [aux_sym_index_definition_token1] = ACTIONS(143), + [aux_sym_on_statement_token1] = ACTIONS(143), + [sym__or_operator] = ACTIONS(143), + [sym__and_operator] = ACTIONS(143), }, [21] = { [sym_comment] = STATE(21), [sym_include] = STATE(21), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_SLASH] = ACTIONS(145), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [sym__terminator] = ACTIONS(67), - [anon_sym_LPAREN] = ACTIONS(67), - [anon_sym_RPAREN] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_LT] = ACTIONS(63), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_GT] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(67), - [aux_sym__comparison_operator_token1] = ACTIONS(67), - [aux_sym__comparison_operator_token2] = ACTIONS(67), - [aux_sym__comparison_operator_token3] = ACTIONS(67), - [aux_sym__comparison_operator_token4] = ACTIONS(67), - [aux_sym__comparison_operator_token5] = ACTIONS(67), - [aux_sym__comparison_operator_token6] = ACTIONS(67), - [aux_sym__comparison_operator_token7] = ACTIONS(67), - [aux_sym__comparison_operator_token8] = ACTIONS(67), - [aux_sym__comparison_operator_token9] = ACTIONS(67), - [aux_sym_variable_tuning_token1] = ACTIONS(67), - [aux_sym_variable_tuning_token2] = ACTIONS(67), - [aux_sym_variable_tuning_token3] = ACTIONS(67), - [aux_sym_variable_tuning_token4] = ACTIONS(67), - [aux_sym_variable_tuning_token5] = ACTIONS(67), - [aux_sym_variable_tuning_token6] = ACTIONS(67), - [anon_sym_COMMA] = ACTIONS(67), - [aux_sym_if_statement_token2] = ACTIONS(67), - [aux_sym_else_if_statement_token1] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(67), - [aux_sym_while_phrase_token1] = ACTIONS(67), - [aux_sym_property_tuning_token1] = ACTIONS(67), - [aux_sym_event_definition_token1] = ACTIONS(67), - [aux_sym_using_statement_token1] = ACTIONS(67), - [aux_sym_input_stream_tuning_token1] = ACTIONS(67), - [aux_sym_input_stream_tuning_token2] = ACTIONS(67), - [aux_sym_input_stream_tuning_token3] = ACTIONS(67), - [aux_sym_input_stream_tuning_token4] = ACTIONS(67), - [aux_sym_input_stream_tuning_token5] = ACTIONS(67), - [aux_sym_input_stream_tuning_token6] = ACTIONS(67), - [aux_sym_input_stream_tuning_token7] = ACTIONS(67), - [aux_sym_input_stream_tuning_token8] = ACTIONS(67), - [aux_sym_input_stream_tuning_token9] = ACTIONS(67), - [aux_sym_input_stream_tuning_token11] = ACTIONS(67), - [aux_sym_output_stream_tuning_token1] = ACTIONS(67), - [aux_sym_output_stream_tuning_token2] = ACTIONS(67), - [aux_sym_output_stream_tuning_token3] = ACTIONS(67), - [aux_sym_output_stream_tuning_token4] = ACTIONS(67), - [aux_sym_output_stream_tuning_token5] = ACTIONS(67), - [aux_sym_output_stream_tuning_token6] = ACTIONS(67), - [aux_sym_output_stream_tuning_token7] = ACTIONS(67), - [aux_sym_output_stream_tuning_token8] = ACTIONS(67), - [aux_sym_output_stream_statement_token1] = ACTIONS(67), - [aux_sym_on_error_phrase_token1] = ACTIONS(67), - [aux_sym_stop_after_phrase_token1] = ACTIONS(67), - [aux_sym_do_tuning_token1] = ACTIONS(67), - [anon_sym_BY] = ACTIONS(67), - [aux_sym_where_clause_token1] = ACTIONS(67), - [aux_sym_query_tuning_token1] = ACTIONS(67), - [aux_sym_query_tuning_token2] = ACTIONS(67), - [aux_sym_query_tuning_token3] = ACTIONS(67), - [aux_sym_query_tuning_token4] = ACTIONS(67), - [aux_sym_query_tuning_token5] = ACTIONS(67), - [aux_sym_query_tuning_token6] = ACTIONS(67), - [aux_sym_of_token1] = ACTIONS(67), - [aux_sym_field_definition_token1] = ACTIONS(67), - [aux_sym_index_definition_token1] = ACTIONS(67), - [aux_sym_on_statement_token1] = ACTIONS(67), - [sym__or_operator] = ACTIONS(67), - [sym__and_operator] = ACTIONS(67), + [anon_sym_STAR] = ACTIONS(147), + [sym__terminator] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(147), + [anon_sym_DASH] = ACTIONS(147), + [anon_sym_LT] = ACTIONS(145), + [anon_sym_LT_EQ] = ACTIONS(147), + [anon_sym_LT_GT] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_GT] = ACTIONS(145), + [anon_sym_GT_EQ] = ACTIONS(147), + [aux_sym__comparison_operator_token1] = ACTIONS(147), + [aux_sym__comparison_operator_token2] = ACTIONS(147), + [aux_sym__comparison_operator_token3] = ACTIONS(147), + [aux_sym__comparison_operator_token4] = ACTIONS(147), + [aux_sym__comparison_operator_token5] = ACTIONS(147), + [aux_sym__comparison_operator_token6] = ACTIONS(147), + [aux_sym__comparison_operator_token7] = ACTIONS(147), + [aux_sym__comparison_operator_token8] = ACTIONS(147), + [aux_sym__comparison_operator_token9] = ACTIONS(147), + [aux_sym_variable_tuning_token1] = ACTIONS(147), + [aux_sym_variable_tuning_token2] = ACTIONS(147), + [aux_sym_variable_tuning_token3] = ACTIONS(147), + [aux_sym_variable_tuning_token4] = ACTIONS(147), + [aux_sym_variable_tuning_token5] = ACTIONS(147), + [aux_sym_variable_tuning_token6] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [aux_sym_function_call_token1] = ACTIONS(147), + [aux_sym_if_statement_token2] = ACTIONS(147), + [aux_sym_else_if_statement_token1] = ACTIONS(147), + [anon_sym_COLON] = ACTIONS(147), + [aux_sym_while_phrase_token1] = ACTIONS(147), + [aux_sym_property_tuning_token1] = ACTIONS(147), + [aux_sym_event_definition_token1] = ACTIONS(147), + [aux_sym_using_statement_token1] = ACTIONS(147), + [aux_sym_input_stream_tuning_token1] = ACTIONS(147), + [aux_sym_input_stream_tuning_token2] = ACTIONS(147), + [aux_sym_input_stream_tuning_token3] = ACTIONS(147), + [aux_sym_input_stream_tuning_token4] = ACTIONS(147), + [aux_sym_input_stream_tuning_token5] = ACTIONS(147), + [aux_sym_input_stream_tuning_token6] = ACTIONS(147), + [aux_sym_input_stream_tuning_token7] = ACTIONS(147), + [aux_sym_input_stream_tuning_token8] = ACTIONS(147), + [aux_sym_input_stream_tuning_token9] = ACTIONS(147), + [aux_sym_input_stream_tuning_token11] = ACTIONS(147), + [aux_sym_output_stream_tuning_token1] = ACTIONS(147), + [aux_sym_output_stream_tuning_token2] = ACTIONS(147), + [aux_sym_output_stream_tuning_token3] = ACTIONS(147), + [aux_sym_output_stream_tuning_token4] = ACTIONS(147), + [aux_sym_output_stream_tuning_token5] = ACTIONS(147), + [aux_sym_output_stream_tuning_token6] = ACTIONS(147), + [aux_sym_output_stream_tuning_token7] = ACTIONS(147), + [aux_sym_output_stream_tuning_token8] = ACTIONS(147), + [aux_sym_output_stream_statement_token1] = ACTIONS(147), + [aux_sym_on_error_phrase_token1] = ACTIONS(147), + [aux_sym_stop_after_phrase_token1] = ACTIONS(147), + [aux_sym_do_tuning_token1] = ACTIONS(147), + [anon_sym_BY] = ACTIONS(147), + [aux_sym_where_clause_token1] = ACTIONS(147), + [aux_sym_query_tuning_token1] = ACTIONS(147), + [aux_sym_query_tuning_token2] = ACTIONS(147), + [aux_sym_query_tuning_token3] = ACTIONS(147), + [aux_sym_query_tuning_token4] = ACTIONS(147), + [aux_sym_query_tuning_token5] = ACTIONS(147), + [aux_sym_of_token1] = ACTIONS(147), + [aux_sym_field_definition_token1] = ACTIONS(147), + [aux_sym_index_definition_token1] = ACTIONS(147), + [aux_sym_on_statement_token1] = ACTIONS(147), + [sym__or_operator] = ACTIONS(147), + [sym__and_operator] = ACTIONS(147), }, [22] = { [sym_comment] = STATE(22), [sym_include] = STATE(22), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(149), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(153), - [sym__terminator] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(153), - [anon_sym_DASH] = ACTIONS(153), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_LT_EQ] = ACTIONS(153), - [anon_sym_LT_GT] = ACTIONS(153), - [anon_sym_EQ] = ACTIONS(153), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_GT_EQ] = ACTIONS(153), - [aux_sym__comparison_operator_token1] = ACTIONS(153), - [aux_sym__comparison_operator_token2] = ACTIONS(153), - [aux_sym__comparison_operator_token3] = ACTIONS(153), - [aux_sym__comparison_operator_token4] = ACTIONS(153), - [aux_sym__comparison_operator_token5] = ACTIONS(153), - [aux_sym__comparison_operator_token6] = ACTIONS(153), - [aux_sym__comparison_operator_token7] = ACTIONS(153), - [aux_sym__comparison_operator_token8] = ACTIONS(153), - [aux_sym__comparison_operator_token9] = ACTIONS(153), - [aux_sym_variable_tuning_token1] = ACTIONS(153), - [aux_sym_variable_tuning_token2] = ACTIONS(153), - [aux_sym_variable_tuning_token3] = ACTIONS(153), - [aux_sym_variable_tuning_token4] = ACTIONS(153), - [aux_sym_variable_tuning_token5] = ACTIONS(153), - [aux_sym_variable_tuning_token6] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_if_statement_token2] = ACTIONS(153), - [aux_sym_else_if_statement_token1] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [aux_sym_while_phrase_token1] = ACTIONS(153), - [aux_sym_property_tuning_token1] = ACTIONS(153), - [aux_sym_event_definition_token1] = ACTIONS(153), - [aux_sym_using_statement_token1] = ACTIONS(153), - [aux_sym_input_stream_tuning_token1] = ACTIONS(153), - [aux_sym_input_stream_tuning_token2] = ACTIONS(153), - [aux_sym_input_stream_tuning_token3] = ACTIONS(153), - [aux_sym_input_stream_tuning_token4] = ACTIONS(153), - [aux_sym_input_stream_tuning_token5] = ACTIONS(153), - [aux_sym_input_stream_tuning_token6] = ACTIONS(153), - [aux_sym_input_stream_tuning_token7] = ACTIONS(153), - [aux_sym_input_stream_tuning_token8] = ACTIONS(153), - [aux_sym_input_stream_tuning_token9] = ACTIONS(153), - [aux_sym_input_stream_tuning_token11] = ACTIONS(153), - [aux_sym_output_stream_tuning_token1] = ACTIONS(153), - [aux_sym_output_stream_tuning_token2] = ACTIONS(153), - [aux_sym_output_stream_tuning_token3] = ACTIONS(153), - [aux_sym_output_stream_tuning_token4] = ACTIONS(153), - [aux_sym_output_stream_tuning_token5] = ACTIONS(153), - [aux_sym_output_stream_tuning_token6] = ACTIONS(153), - [aux_sym_output_stream_tuning_token7] = ACTIONS(153), - [aux_sym_output_stream_tuning_token8] = ACTIONS(153), - [aux_sym_output_stream_statement_token1] = ACTIONS(153), - [aux_sym_on_error_phrase_token1] = ACTIONS(153), - [aux_sym_stop_after_phrase_token1] = ACTIONS(153), - [aux_sym_do_tuning_token1] = ACTIONS(153), - [anon_sym_BY] = ACTIONS(153), - [aux_sym_where_clause_token1] = ACTIONS(153), - [aux_sym_query_tuning_token1] = ACTIONS(153), - [aux_sym_query_tuning_token2] = ACTIONS(153), - [aux_sym_query_tuning_token3] = ACTIONS(153), - [aux_sym_query_tuning_token4] = ACTIONS(153), - [aux_sym_query_tuning_token5] = ACTIONS(153), - [aux_sym_query_tuning_token6] = ACTIONS(153), - [aux_sym_of_token1] = ACTIONS(153), - [aux_sym_field_definition_token1] = ACTIONS(153), - [aux_sym_index_definition_token1] = ACTIONS(153), - [aux_sym_on_statement_token1] = ACTIONS(153), - [sym__or_operator] = ACTIONS(153), - [sym__and_operator] = ACTIONS(153), + [anon_sym_STAR] = ACTIONS(151), + [sym__terminator] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_LT_EQ] = ACTIONS(151), + [anon_sym_LT_GT] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(151), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_GT_EQ] = ACTIONS(151), + [aux_sym__comparison_operator_token1] = ACTIONS(151), + [aux_sym__comparison_operator_token2] = ACTIONS(151), + [aux_sym__comparison_operator_token3] = ACTIONS(151), + [aux_sym__comparison_operator_token4] = ACTIONS(151), + [aux_sym__comparison_operator_token5] = ACTIONS(151), + [aux_sym__comparison_operator_token6] = ACTIONS(151), + [aux_sym__comparison_operator_token7] = ACTIONS(151), + [aux_sym__comparison_operator_token8] = ACTIONS(151), + [aux_sym__comparison_operator_token9] = ACTIONS(151), + [aux_sym_variable_tuning_token1] = ACTIONS(151), + [aux_sym_variable_tuning_token2] = ACTIONS(151), + [aux_sym_variable_tuning_token3] = ACTIONS(151), + [aux_sym_variable_tuning_token4] = ACTIONS(151), + [aux_sym_variable_tuning_token5] = ACTIONS(151), + [aux_sym_variable_tuning_token6] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(151), + [aux_sym_function_call_token1] = ACTIONS(151), + [aux_sym_if_statement_token2] = ACTIONS(151), + [aux_sym_else_if_statement_token1] = ACTIONS(151), + [anon_sym_COLON] = ACTIONS(151), + [aux_sym_while_phrase_token1] = ACTIONS(151), + [aux_sym_property_tuning_token1] = ACTIONS(151), + [aux_sym_event_definition_token1] = ACTIONS(151), + [aux_sym_using_statement_token1] = ACTIONS(151), + [aux_sym_input_stream_tuning_token1] = ACTIONS(151), + [aux_sym_input_stream_tuning_token2] = ACTIONS(151), + [aux_sym_input_stream_tuning_token3] = ACTIONS(151), + [aux_sym_input_stream_tuning_token4] = ACTIONS(151), + [aux_sym_input_stream_tuning_token5] = ACTIONS(151), + [aux_sym_input_stream_tuning_token6] = ACTIONS(151), + [aux_sym_input_stream_tuning_token7] = ACTIONS(151), + [aux_sym_input_stream_tuning_token8] = ACTIONS(151), + [aux_sym_input_stream_tuning_token9] = ACTIONS(151), + [aux_sym_input_stream_tuning_token11] = ACTIONS(151), + [aux_sym_output_stream_tuning_token1] = ACTIONS(151), + [aux_sym_output_stream_tuning_token2] = ACTIONS(151), + [aux_sym_output_stream_tuning_token3] = ACTIONS(151), + [aux_sym_output_stream_tuning_token4] = ACTIONS(151), + [aux_sym_output_stream_tuning_token5] = ACTIONS(151), + [aux_sym_output_stream_tuning_token6] = ACTIONS(151), + [aux_sym_output_stream_tuning_token7] = ACTIONS(151), + [aux_sym_output_stream_tuning_token8] = ACTIONS(151), + [aux_sym_output_stream_statement_token1] = ACTIONS(151), + [aux_sym_on_error_phrase_token1] = ACTIONS(151), + [aux_sym_stop_after_phrase_token1] = ACTIONS(151), + [aux_sym_do_tuning_token1] = ACTIONS(151), + [anon_sym_BY] = ACTIONS(151), + [aux_sym_where_clause_token1] = ACTIONS(151), + [aux_sym_query_tuning_token1] = ACTIONS(151), + [aux_sym_query_tuning_token2] = ACTIONS(151), + [aux_sym_query_tuning_token3] = ACTIONS(151), + [aux_sym_query_tuning_token4] = ACTIONS(151), + [aux_sym_query_tuning_token5] = ACTIONS(151), + [aux_sym_of_token1] = ACTIONS(151), + [aux_sym_field_definition_token1] = ACTIONS(151), + [aux_sym_index_definition_token1] = ACTIONS(151), + [aux_sym_on_statement_token1] = ACTIONS(151), + [sym__or_operator] = ACTIONS(151), + [sym__and_operator] = ACTIONS(151), }, [23] = { [sym_comment] = STATE(23), [sym_include] = STATE(23), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_SLASH] = ACTIONS(109), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(67), - [sym__terminator] = ACTIONS(67), - [anon_sym_LPAREN] = ACTIONS(69), - [anon_sym_RPAREN] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_LT] = ACTIONS(63), - [anon_sym_LT_EQ] = ACTIONS(67), - [anon_sym_LT_GT] = ACTIONS(67), - [anon_sym_EQ] = ACTIONS(67), - [anon_sym_GT] = ACTIONS(63), - [anon_sym_GT_EQ] = ACTIONS(67), - [aux_sym__comparison_operator_token1] = ACTIONS(67), - [aux_sym__comparison_operator_token2] = ACTIONS(67), - [aux_sym__comparison_operator_token3] = ACTIONS(67), - [aux_sym__comparison_operator_token4] = ACTIONS(67), - [aux_sym__comparison_operator_token5] = ACTIONS(67), - [aux_sym__comparison_operator_token6] = ACTIONS(67), - [aux_sym__comparison_operator_token7] = ACTIONS(67), - [aux_sym__comparison_operator_token8] = ACTIONS(67), - [aux_sym__comparison_operator_token9] = ACTIONS(67), - [aux_sym_variable_tuning_token1] = ACTIONS(67), - [aux_sym_variable_tuning_token2] = ACTIONS(67), - [aux_sym_variable_tuning_token3] = ACTIONS(67), - [aux_sym_variable_tuning_token4] = ACTIONS(67), - [aux_sym_variable_tuning_token5] = ACTIONS(67), - [aux_sym_variable_tuning_token6] = ACTIONS(67), - [anon_sym_COMMA] = ACTIONS(67), - [aux_sym_if_statement_token2] = ACTIONS(67), - [aux_sym_else_if_statement_token1] = ACTIONS(67), - [anon_sym_COLON] = ACTIONS(67), - [aux_sym_while_phrase_token1] = ACTIONS(67), - [aux_sym_property_tuning_token1] = ACTIONS(67), - [aux_sym_event_definition_token1] = ACTIONS(67), - [aux_sym_using_statement_token1] = ACTIONS(67), - [aux_sym_input_stream_tuning_token1] = ACTIONS(67), - [aux_sym_input_stream_tuning_token2] = ACTIONS(67), - [aux_sym_input_stream_tuning_token3] = ACTIONS(67), - [aux_sym_input_stream_tuning_token4] = ACTIONS(67), - [aux_sym_input_stream_tuning_token5] = ACTIONS(67), - [aux_sym_input_stream_tuning_token6] = ACTIONS(67), - [aux_sym_input_stream_tuning_token7] = ACTIONS(67), - [aux_sym_input_stream_tuning_token8] = ACTIONS(67), - [aux_sym_input_stream_tuning_token9] = ACTIONS(67), - [aux_sym_input_stream_tuning_token11] = ACTIONS(67), - [aux_sym_output_stream_tuning_token1] = ACTIONS(67), - [aux_sym_output_stream_tuning_token2] = ACTIONS(67), - [aux_sym_output_stream_tuning_token3] = ACTIONS(67), - [aux_sym_output_stream_tuning_token4] = ACTIONS(67), - [aux_sym_output_stream_tuning_token5] = ACTIONS(67), - [aux_sym_output_stream_tuning_token6] = ACTIONS(67), - [aux_sym_output_stream_tuning_token7] = ACTIONS(67), - [aux_sym_output_stream_tuning_token8] = ACTIONS(67), - [aux_sym_output_stream_statement_token1] = ACTIONS(67), - [aux_sym_on_error_phrase_token1] = ACTIONS(67), - [aux_sym_stop_after_phrase_token1] = ACTIONS(67), - [aux_sym_do_tuning_token1] = ACTIONS(67), - [anon_sym_BY] = ACTIONS(67), - [aux_sym_where_clause_token1] = ACTIONS(67), - [aux_sym_query_tuning_token1] = ACTIONS(67), - [aux_sym_query_tuning_token2] = ACTIONS(67), - [aux_sym_query_tuning_token3] = ACTIONS(67), - [aux_sym_query_tuning_token4] = ACTIONS(67), - [aux_sym_query_tuning_token5] = ACTIONS(67), - [aux_sym_query_tuning_token6] = ACTIONS(67), - [aux_sym_of_token1] = ACTIONS(67), - [aux_sym_field_definition_token1] = ACTIONS(67), - [aux_sym_index_definition_token1] = ACTIONS(67), - [aux_sym_on_statement_token1] = ACTIONS(67), - [sym__or_operator] = ACTIONS(67), - [sym__and_operator] = ACTIONS(67), + [anon_sym_STAR] = ACTIONS(111), + [sym__terminator] = ACTIONS(111), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_RPAREN] = ACTIONS(111), + [anon_sym_PLUS] = ACTIONS(111), + [anon_sym_DASH] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(109), + [anon_sym_LT_EQ] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(111), + [anon_sym_GT] = ACTIONS(109), + [anon_sym_GT_EQ] = ACTIONS(111), + [aux_sym__comparison_operator_token1] = ACTIONS(111), + [aux_sym__comparison_operator_token2] = ACTIONS(111), + [aux_sym__comparison_operator_token3] = ACTIONS(111), + [aux_sym__comparison_operator_token4] = ACTIONS(111), + [aux_sym__comparison_operator_token5] = ACTIONS(111), + [aux_sym__comparison_operator_token6] = ACTIONS(111), + [aux_sym__comparison_operator_token7] = ACTIONS(111), + [aux_sym__comparison_operator_token8] = ACTIONS(111), + [aux_sym__comparison_operator_token9] = ACTIONS(111), + [aux_sym_variable_tuning_token1] = ACTIONS(111), + [aux_sym_variable_tuning_token2] = ACTIONS(111), + [aux_sym_variable_tuning_token3] = ACTIONS(111), + [aux_sym_variable_tuning_token4] = ACTIONS(111), + [aux_sym_variable_tuning_token5] = ACTIONS(111), + [aux_sym_variable_tuning_token6] = ACTIONS(111), + [anon_sym_COMMA] = ACTIONS(111), + [aux_sym_function_call_token1] = ACTIONS(111), + [aux_sym_if_statement_token2] = ACTIONS(111), + [aux_sym_else_if_statement_token1] = ACTIONS(111), + [anon_sym_COLON] = ACTIONS(111), + [aux_sym_while_phrase_token1] = ACTIONS(111), + [aux_sym_property_tuning_token1] = ACTIONS(111), + [aux_sym_event_definition_token1] = ACTIONS(111), + [aux_sym_using_statement_token1] = ACTIONS(111), + [aux_sym_input_stream_tuning_token1] = ACTIONS(111), + [aux_sym_input_stream_tuning_token2] = ACTIONS(111), + [aux_sym_input_stream_tuning_token3] = ACTIONS(111), + [aux_sym_input_stream_tuning_token4] = ACTIONS(111), + [aux_sym_input_stream_tuning_token5] = ACTIONS(111), + [aux_sym_input_stream_tuning_token6] = ACTIONS(111), + [aux_sym_input_stream_tuning_token7] = ACTIONS(111), + [aux_sym_input_stream_tuning_token8] = ACTIONS(111), + [aux_sym_input_stream_tuning_token9] = ACTIONS(111), + [aux_sym_input_stream_tuning_token11] = ACTIONS(111), + [aux_sym_output_stream_tuning_token1] = ACTIONS(111), + [aux_sym_output_stream_tuning_token2] = ACTIONS(111), + [aux_sym_output_stream_tuning_token3] = ACTIONS(111), + [aux_sym_output_stream_tuning_token4] = ACTIONS(111), + [aux_sym_output_stream_tuning_token5] = ACTIONS(111), + [aux_sym_output_stream_tuning_token6] = ACTIONS(111), + [aux_sym_output_stream_tuning_token7] = ACTIONS(111), + [aux_sym_output_stream_tuning_token8] = ACTIONS(111), + [aux_sym_output_stream_statement_token1] = ACTIONS(111), + [aux_sym_on_error_phrase_token1] = ACTIONS(111), + [aux_sym_stop_after_phrase_token1] = ACTIONS(111), + [aux_sym_do_tuning_token1] = ACTIONS(111), + [anon_sym_BY] = ACTIONS(111), + [aux_sym_where_clause_token1] = ACTIONS(111), + [aux_sym_query_tuning_token1] = ACTIONS(111), + [aux_sym_query_tuning_token2] = ACTIONS(111), + [aux_sym_query_tuning_token3] = ACTIONS(111), + [aux_sym_query_tuning_token4] = ACTIONS(111), + [aux_sym_query_tuning_token5] = ACTIONS(111), + [aux_sym_of_token1] = ACTIONS(111), + [aux_sym_field_definition_token1] = ACTIONS(111), + [aux_sym_index_definition_token1] = ACTIONS(111), + [aux_sym_on_statement_token1] = ACTIONS(111), + [sym__or_operator] = ACTIONS(111), + [sym__and_operator] = ACTIONS(111), }, [24] = { [sym_comment] = STATE(24), [sym_include] = STATE(24), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(155), + [anon_sym_SLASH] = ACTIONS(153), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(157), - [sym__terminator] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(157), - [anon_sym_DASH] = ACTIONS(157), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_LT_EQ] = ACTIONS(157), - [anon_sym_LT_GT] = ACTIONS(157), - [anon_sym_EQ] = ACTIONS(157), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(157), - [aux_sym__comparison_operator_token1] = ACTIONS(157), - [aux_sym__comparison_operator_token2] = ACTIONS(157), - [aux_sym__comparison_operator_token3] = ACTIONS(157), - [aux_sym__comparison_operator_token4] = ACTIONS(157), - [aux_sym__comparison_operator_token5] = ACTIONS(157), - [aux_sym__comparison_operator_token6] = ACTIONS(157), - [aux_sym__comparison_operator_token7] = ACTIONS(157), - [aux_sym__comparison_operator_token8] = ACTIONS(157), - [aux_sym__comparison_operator_token9] = ACTIONS(157), - [aux_sym_variable_tuning_token1] = ACTIONS(157), - [aux_sym_variable_tuning_token2] = ACTIONS(157), - [aux_sym_variable_tuning_token3] = ACTIONS(157), - [aux_sym_variable_tuning_token4] = ACTIONS(157), - [aux_sym_variable_tuning_token5] = ACTIONS(157), - [aux_sym_variable_tuning_token6] = ACTIONS(157), - [anon_sym_COMMA] = ACTIONS(157), - [aux_sym_if_statement_token2] = ACTIONS(157), - [aux_sym_else_if_statement_token1] = ACTIONS(157), - [anon_sym_COLON] = ACTIONS(157), - [aux_sym_while_phrase_token1] = ACTIONS(157), - [aux_sym_property_tuning_token1] = ACTIONS(157), - [aux_sym_event_definition_token1] = ACTIONS(157), - [aux_sym_using_statement_token1] = ACTIONS(157), - [aux_sym_input_stream_tuning_token1] = ACTIONS(157), - [aux_sym_input_stream_tuning_token2] = ACTIONS(157), - [aux_sym_input_stream_tuning_token3] = ACTIONS(157), - [aux_sym_input_stream_tuning_token4] = ACTIONS(157), - [aux_sym_input_stream_tuning_token5] = ACTIONS(157), - [aux_sym_input_stream_tuning_token6] = ACTIONS(157), - [aux_sym_input_stream_tuning_token7] = ACTIONS(157), - [aux_sym_input_stream_tuning_token8] = ACTIONS(157), - [aux_sym_input_stream_tuning_token9] = ACTIONS(157), - [aux_sym_input_stream_tuning_token11] = ACTIONS(157), - [aux_sym_output_stream_tuning_token1] = ACTIONS(157), - [aux_sym_output_stream_tuning_token2] = ACTIONS(157), - [aux_sym_output_stream_tuning_token3] = ACTIONS(157), - [aux_sym_output_stream_tuning_token4] = ACTIONS(157), - [aux_sym_output_stream_tuning_token5] = ACTIONS(157), - [aux_sym_output_stream_tuning_token6] = ACTIONS(157), - [aux_sym_output_stream_tuning_token7] = ACTIONS(157), - [aux_sym_output_stream_tuning_token8] = ACTIONS(157), - [aux_sym_output_stream_statement_token1] = ACTIONS(157), - [aux_sym_on_error_phrase_token1] = ACTIONS(157), - [aux_sym_stop_after_phrase_token1] = ACTIONS(157), - [aux_sym_do_tuning_token1] = ACTIONS(157), - [anon_sym_BY] = ACTIONS(157), - [aux_sym_where_clause_token1] = ACTIONS(157), - [aux_sym_query_tuning_token1] = ACTIONS(157), - [aux_sym_query_tuning_token2] = ACTIONS(157), - [aux_sym_query_tuning_token3] = ACTIONS(157), - [aux_sym_query_tuning_token4] = ACTIONS(157), - [aux_sym_query_tuning_token5] = ACTIONS(157), - [aux_sym_query_tuning_token6] = ACTIONS(157), - [aux_sym_of_token1] = ACTIONS(157), - [aux_sym_field_definition_token1] = ACTIONS(157), - [aux_sym_index_definition_token1] = ACTIONS(157), - [aux_sym_on_statement_token1] = ACTIONS(157), - [sym__or_operator] = ACTIONS(157), - [sym__and_operator] = ACTIONS(157), + [anon_sym_STAR] = ACTIONS(155), + [sym__terminator] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT_GT] = ACTIONS(155), + [anon_sym_EQ] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(155), + [aux_sym__comparison_operator_token1] = ACTIONS(155), + [aux_sym__comparison_operator_token2] = ACTIONS(155), + [aux_sym__comparison_operator_token3] = ACTIONS(155), + [aux_sym__comparison_operator_token4] = ACTIONS(155), + [aux_sym__comparison_operator_token5] = ACTIONS(155), + [aux_sym__comparison_operator_token6] = ACTIONS(155), + [aux_sym__comparison_operator_token7] = ACTIONS(155), + [aux_sym__comparison_operator_token8] = ACTIONS(155), + [aux_sym__comparison_operator_token9] = ACTIONS(155), + [aux_sym_variable_tuning_token1] = ACTIONS(155), + [aux_sym_variable_tuning_token2] = ACTIONS(155), + [aux_sym_variable_tuning_token3] = ACTIONS(155), + [aux_sym_variable_tuning_token4] = ACTIONS(155), + [aux_sym_variable_tuning_token5] = ACTIONS(155), + [aux_sym_variable_tuning_token6] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(155), + [aux_sym_function_call_token1] = ACTIONS(157), + [aux_sym_if_statement_token2] = ACTIONS(155), + [aux_sym_else_if_statement_token1] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(155), + [aux_sym_while_phrase_token1] = ACTIONS(155), + [aux_sym_property_tuning_token1] = ACTIONS(155), + [aux_sym_event_definition_token1] = ACTIONS(155), + [aux_sym_using_statement_token1] = ACTIONS(155), + [aux_sym_input_stream_tuning_token1] = ACTIONS(155), + [aux_sym_input_stream_tuning_token2] = ACTIONS(155), + [aux_sym_input_stream_tuning_token3] = ACTIONS(155), + [aux_sym_input_stream_tuning_token4] = ACTIONS(155), + [aux_sym_input_stream_tuning_token5] = ACTIONS(155), + [aux_sym_input_stream_tuning_token6] = ACTIONS(155), + [aux_sym_input_stream_tuning_token7] = ACTIONS(155), + [aux_sym_input_stream_tuning_token8] = ACTIONS(155), + [aux_sym_input_stream_tuning_token9] = ACTIONS(155), + [aux_sym_input_stream_tuning_token11] = ACTIONS(155), + [aux_sym_output_stream_tuning_token1] = ACTIONS(155), + [aux_sym_output_stream_tuning_token2] = ACTIONS(155), + [aux_sym_output_stream_tuning_token3] = ACTIONS(155), + [aux_sym_output_stream_tuning_token4] = ACTIONS(155), + [aux_sym_output_stream_tuning_token5] = ACTIONS(155), + [aux_sym_output_stream_tuning_token6] = ACTIONS(155), + [aux_sym_output_stream_tuning_token7] = ACTIONS(155), + [aux_sym_output_stream_tuning_token8] = ACTIONS(155), + [aux_sym_output_stream_statement_token1] = ACTIONS(155), + [aux_sym_on_error_phrase_token1] = ACTIONS(155), + [aux_sym_stop_after_phrase_token1] = ACTIONS(155), + [aux_sym_do_tuning_token1] = ACTIONS(155), + [anon_sym_BY] = ACTIONS(155), + [aux_sym_where_clause_token1] = ACTIONS(155), + [aux_sym_query_tuning_token1] = ACTIONS(155), + [aux_sym_query_tuning_token2] = ACTIONS(155), + [aux_sym_query_tuning_token3] = ACTIONS(155), + [aux_sym_query_tuning_token4] = ACTIONS(155), + [aux_sym_query_tuning_token5] = ACTIONS(155), + [aux_sym_of_token1] = ACTIONS(155), + [aux_sym_field_definition_token1] = ACTIONS(155), + [aux_sym_index_definition_token1] = ACTIONS(155), + [aux_sym_on_statement_token1] = ACTIONS(155), + [sym__or_operator] = ACTIONS(155), + [sym__and_operator] = ACTIONS(155), }, [25] = { [sym_comment] = STATE(25), @@ -28289,6 +28599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(161), [aux_sym_variable_tuning_token6] = ACTIONS(161), [anon_sym_COMMA] = ACTIONS(161), + [aux_sym_function_call_token1] = ACTIONS(161), [aux_sym_if_statement_token2] = ACTIONS(161), [aux_sym_else_if_statement_token1] = ACTIONS(161), [anon_sym_COLON] = ACTIONS(161), @@ -28325,7 +28636,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(161), [aux_sym_query_tuning_token4] = ACTIONS(161), [aux_sym_query_tuning_token5] = ACTIONS(161), - [aux_sym_query_tuning_token6] = ACTIONS(161), [aux_sym_of_token1] = ACTIONS(161), [aux_sym_field_definition_token1] = ACTIONS(161), [aux_sym_index_definition_token1] = ACTIONS(161), @@ -28338,6 +28648,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_include] = STATE(26), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_variable_tuning_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token2] = ACTIONS(67), + [aux_sym_variable_tuning_token3] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_variable_tuning_token5] = ACTIONS(67), + [aux_sym_variable_tuning_token6] = ACTIONS(67), + [anon_sym_COMMA] = ACTIONS(67), + [aux_sym_function_call_token1] = ACTIONS(67), + [aux_sym_if_statement_token2] = ACTIONS(67), + [aux_sym_else_if_statement_token1] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(67), + [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_property_tuning_token1] = ACTIONS(67), + [aux_sym_event_definition_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token2] = ACTIONS(67), + [aux_sym_input_stream_tuning_token3] = ACTIONS(67), + [aux_sym_input_stream_tuning_token4] = ACTIONS(67), + [aux_sym_input_stream_tuning_token5] = ACTIONS(67), + [aux_sym_input_stream_tuning_token6] = ACTIONS(67), + [aux_sym_input_stream_tuning_token7] = ACTIONS(67), + [aux_sym_input_stream_tuning_token8] = ACTIONS(67), + [aux_sym_input_stream_tuning_token9] = ACTIONS(67), + [aux_sym_input_stream_tuning_token11] = ACTIONS(67), + [aux_sym_output_stream_tuning_token1] = ACTIONS(67), + [aux_sym_output_stream_tuning_token2] = ACTIONS(67), + [aux_sym_output_stream_tuning_token3] = ACTIONS(67), + [aux_sym_output_stream_tuning_token4] = ACTIONS(67), + [aux_sym_output_stream_tuning_token5] = ACTIONS(67), + [aux_sym_output_stream_tuning_token6] = ACTIONS(67), + [aux_sym_output_stream_tuning_token7] = ACTIONS(67), + [aux_sym_output_stream_tuning_token8] = ACTIONS(67), + [aux_sym_output_stream_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_stop_after_phrase_token1] = ACTIONS(67), + [aux_sym_do_tuning_token1] = ACTIONS(67), + [anon_sym_BY] = ACTIONS(67), + [aux_sym_where_clause_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_of_token1] = ACTIONS(67), + [aux_sym_field_definition_token1] = ACTIONS(67), + [aux_sym_index_definition_token1] = ACTIONS(67), + [aux_sym_on_statement_token1] = ACTIONS(67), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), + }, + [27] = { + [sym_comment] = STATE(27), + [sym_include] = STATE(27), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(163), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(165), @@ -28368,6 +28757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(165), [aux_sym_variable_tuning_token6] = ACTIONS(165), [anon_sym_COMMA] = ACTIONS(165), + [aux_sym_function_call_token1] = ACTIONS(165), [aux_sym_if_statement_token2] = ACTIONS(165), [aux_sym_else_if_statement_token1] = ACTIONS(165), [anon_sym_COLON] = ACTIONS(165), @@ -28404,7 +28794,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(165), [aux_sym_query_tuning_token4] = ACTIONS(165), [aux_sym_query_tuning_token5] = ACTIONS(165), - [aux_sym_query_tuning_token6] = ACTIONS(165), [aux_sym_of_token1] = ACTIONS(165), [aux_sym_field_definition_token1] = ACTIONS(165), [aux_sym_index_definition_token1] = ACTIONS(165), @@ -28412,9 +28801,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(165), [sym__and_operator] = ACTIONS(165), }, - [27] = { - [sym_comment] = STATE(27), - [sym_include] = STATE(27), + [28] = { + [sym_comment] = STATE(28), + [sym_include] = STATE(28), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(67), + [sym__terminator] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), + [anon_sym_RPAREN] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_LT] = ACTIONS(63), + [anon_sym_LT_EQ] = ACTIONS(67), + [anon_sym_LT_GT] = ACTIONS(67), + [anon_sym_EQ] = ACTIONS(67), + [anon_sym_GT] = ACTIONS(63), + [anon_sym_GT_EQ] = ACTIONS(67), + [aux_sym__comparison_operator_token1] = ACTIONS(67), + [aux_sym__comparison_operator_token2] = ACTIONS(67), + [aux_sym__comparison_operator_token3] = ACTIONS(67), + [aux_sym__comparison_operator_token4] = ACTIONS(67), + [aux_sym__comparison_operator_token5] = ACTIONS(67), + [aux_sym__comparison_operator_token6] = ACTIONS(67), + [aux_sym__comparison_operator_token7] = ACTIONS(67), + [aux_sym__comparison_operator_token8] = ACTIONS(67), + [aux_sym__comparison_operator_token9] = ACTIONS(67), + [aux_sym_variable_tuning_token1] = ACTIONS(67), + [aux_sym_variable_tuning_token2] = ACTIONS(67), + [aux_sym_variable_tuning_token3] = ACTIONS(67), + [aux_sym_variable_tuning_token4] = ACTIONS(67), + [aux_sym_variable_tuning_token5] = ACTIONS(67), + [aux_sym_variable_tuning_token6] = ACTIONS(67), + [anon_sym_COMMA] = ACTIONS(67), + [aux_sym_function_call_token1] = ACTIONS(67), + [aux_sym_if_statement_token2] = ACTIONS(67), + [aux_sym_else_if_statement_token1] = ACTIONS(67), + [anon_sym_COLON] = ACTIONS(67), + [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_property_tuning_token1] = ACTIONS(67), + [aux_sym_event_definition_token1] = ACTIONS(67), + [aux_sym_using_statement_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token1] = ACTIONS(67), + [aux_sym_input_stream_tuning_token2] = ACTIONS(67), + [aux_sym_input_stream_tuning_token3] = ACTIONS(67), + [aux_sym_input_stream_tuning_token4] = ACTIONS(67), + [aux_sym_input_stream_tuning_token5] = ACTIONS(67), + [aux_sym_input_stream_tuning_token6] = ACTIONS(67), + [aux_sym_input_stream_tuning_token7] = ACTIONS(67), + [aux_sym_input_stream_tuning_token8] = ACTIONS(67), + [aux_sym_input_stream_tuning_token9] = ACTIONS(67), + [aux_sym_input_stream_tuning_token11] = ACTIONS(67), + [aux_sym_output_stream_tuning_token1] = ACTIONS(67), + [aux_sym_output_stream_tuning_token2] = ACTIONS(67), + [aux_sym_output_stream_tuning_token3] = ACTIONS(67), + [aux_sym_output_stream_tuning_token4] = ACTIONS(67), + [aux_sym_output_stream_tuning_token5] = ACTIONS(67), + [aux_sym_output_stream_tuning_token6] = ACTIONS(67), + [aux_sym_output_stream_tuning_token7] = ACTIONS(67), + [aux_sym_output_stream_tuning_token8] = ACTIONS(67), + [aux_sym_output_stream_statement_token1] = ACTIONS(67), + [aux_sym_on_error_phrase_token1] = ACTIONS(67), + [aux_sym_stop_after_phrase_token1] = ACTIONS(67), + [aux_sym_do_tuning_token1] = ACTIONS(67), + [anon_sym_BY] = ACTIONS(67), + [aux_sym_where_clause_token1] = ACTIONS(67), + [aux_sym_query_tuning_token1] = ACTIONS(67), + [aux_sym_query_tuning_token2] = ACTIONS(67), + [aux_sym_query_tuning_token3] = ACTIONS(67), + [aux_sym_query_tuning_token4] = ACTIONS(67), + [aux_sym_query_tuning_token5] = ACTIONS(67), + [aux_sym_of_token1] = ACTIONS(67), + [aux_sym_field_definition_token1] = ACTIONS(67), + [aux_sym_index_definition_token1] = ACTIONS(67), + [aux_sym_on_statement_token1] = ACTIONS(67), + [sym__or_operator] = ACTIONS(67), + [sym__and_operator] = ACTIONS(67), + }, + [29] = { + [sym_comment] = STATE(29), + [sym_include] = STATE(29), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(167), @@ -28447,6 +28915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(169), [aux_sym_variable_tuning_token6] = ACTIONS(169), [anon_sym_COMMA] = ACTIONS(169), + [aux_sym_function_call_token1] = ACTIONS(169), [aux_sym_if_statement_token2] = ACTIONS(169), [aux_sym_else_if_statement_token1] = ACTIONS(169), [anon_sym_COLON] = ACTIONS(169), @@ -28483,7 +28952,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(169), [aux_sym_query_tuning_token4] = ACTIONS(169), [aux_sym_query_tuning_token5] = ACTIONS(169), - [aux_sym_query_tuning_token6] = ACTIONS(169), [aux_sym_of_token1] = ACTIONS(169), [aux_sym_field_definition_token1] = ACTIONS(169), [aux_sym_index_definition_token1] = ACTIONS(169), @@ -28491,88 +28959,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(169), [sym__and_operator] = ACTIONS(169), }, - [28] = { - [sym_comment] = STATE(28), - [sym_include] = STATE(28), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(109), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(111), - [sym__terminator] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_RPAREN] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(111), - [anon_sym_DASH] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(109), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_LT_GT] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(109), - [anon_sym_GT_EQ] = ACTIONS(111), - [aux_sym__comparison_operator_token1] = ACTIONS(111), - [aux_sym__comparison_operator_token2] = ACTIONS(111), - [aux_sym__comparison_operator_token3] = ACTIONS(111), - [aux_sym__comparison_operator_token4] = ACTIONS(111), - [aux_sym__comparison_operator_token5] = ACTIONS(111), - [aux_sym__comparison_operator_token6] = ACTIONS(111), - [aux_sym__comparison_operator_token7] = ACTIONS(111), - [aux_sym__comparison_operator_token8] = ACTIONS(111), - [aux_sym__comparison_operator_token9] = ACTIONS(111), - [aux_sym_variable_tuning_token1] = ACTIONS(111), - [aux_sym_variable_tuning_token2] = ACTIONS(111), - [aux_sym_variable_tuning_token3] = ACTIONS(111), - [aux_sym_variable_tuning_token4] = ACTIONS(111), - [aux_sym_variable_tuning_token5] = ACTIONS(111), - [aux_sym_variable_tuning_token6] = ACTIONS(111), - [anon_sym_COMMA] = ACTIONS(111), - [aux_sym_if_statement_token2] = ACTIONS(111), - [aux_sym_else_if_statement_token1] = ACTIONS(111), - [anon_sym_COLON] = ACTIONS(111), - [aux_sym_while_phrase_token1] = ACTIONS(111), - [aux_sym_property_tuning_token1] = ACTIONS(111), - [aux_sym_event_definition_token1] = ACTIONS(111), - [aux_sym_using_statement_token1] = ACTIONS(111), - [aux_sym_input_stream_tuning_token1] = ACTIONS(111), - [aux_sym_input_stream_tuning_token2] = ACTIONS(111), - [aux_sym_input_stream_tuning_token3] = ACTIONS(111), - [aux_sym_input_stream_tuning_token4] = ACTIONS(111), - [aux_sym_input_stream_tuning_token5] = ACTIONS(111), - [aux_sym_input_stream_tuning_token6] = ACTIONS(111), - [aux_sym_input_stream_tuning_token7] = ACTIONS(111), - [aux_sym_input_stream_tuning_token8] = ACTIONS(111), - [aux_sym_input_stream_tuning_token9] = ACTIONS(111), - [aux_sym_input_stream_tuning_token11] = ACTIONS(111), - [aux_sym_output_stream_tuning_token1] = ACTIONS(111), - [aux_sym_output_stream_tuning_token2] = ACTIONS(111), - [aux_sym_output_stream_tuning_token3] = ACTIONS(111), - [aux_sym_output_stream_tuning_token4] = ACTIONS(111), - [aux_sym_output_stream_tuning_token5] = ACTIONS(111), - [aux_sym_output_stream_tuning_token6] = ACTIONS(111), - [aux_sym_output_stream_tuning_token7] = ACTIONS(111), - [aux_sym_output_stream_tuning_token8] = ACTIONS(111), - [aux_sym_output_stream_statement_token1] = ACTIONS(111), - [aux_sym_on_error_phrase_token1] = ACTIONS(111), - [aux_sym_stop_after_phrase_token1] = ACTIONS(111), - [aux_sym_do_tuning_token1] = ACTIONS(111), - [anon_sym_BY] = ACTIONS(111), - [aux_sym_where_clause_token1] = ACTIONS(111), - [aux_sym_query_tuning_token1] = ACTIONS(111), - [aux_sym_query_tuning_token2] = ACTIONS(111), - [aux_sym_query_tuning_token3] = ACTIONS(111), - [aux_sym_query_tuning_token4] = ACTIONS(111), - [aux_sym_query_tuning_token5] = ACTIONS(111), - [aux_sym_query_tuning_token6] = ACTIONS(111), - [aux_sym_of_token1] = ACTIONS(111), - [aux_sym_field_definition_token1] = ACTIONS(111), - [aux_sym_index_definition_token1] = ACTIONS(111), - [aux_sym_on_statement_token1] = ACTIONS(111), - [sym__or_operator] = ACTIONS(111), - [sym__and_operator] = ACTIONS(111), - }, - [29] = { - [sym_comment] = STATE(29), - [sym_include] = STATE(29), + [30] = { + [sym_comment] = STATE(30), + [sym_include] = STATE(30), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(171), @@ -28605,6 +28994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(173), [aux_sym_variable_tuning_token6] = ACTIONS(173), [anon_sym_COMMA] = ACTIONS(173), + [aux_sym_function_call_token1] = ACTIONS(173), [aux_sym_if_statement_token2] = ACTIONS(173), [aux_sym_else_if_statement_token1] = ACTIONS(173), [anon_sym_COLON] = ACTIONS(173), @@ -28641,7 +29031,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(173), [aux_sym_query_tuning_token4] = ACTIONS(173), [aux_sym_query_tuning_token5] = ACTIONS(173), - [aux_sym_query_tuning_token6] = ACTIONS(173), [aux_sym_of_token1] = ACTIONS(173), [aux_sym_field_definition_token1] = ACTIONS(173), [aux_sym_index_definition_token1] = ACTIONS(173), @@ -28649,85 +29038,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(173), [sym__and_operator] = ACTIONS(173), }, - [30] = { - [sym_comment] = STATE(30), - [sym_include] = STATE(30), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(99), - [sym__terminator] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(99), - [anon_sym_RPAREN] = ACTIONS(99), - [anon_sym_PLUS] = ACTIONS(99), - [anon_sym_DASH] = ACTIONS(99), - [anon_sym_LT] = ACTIONS(97), - [anon_sym_LT_EQ] = ACTIONS(99), - [anon_sym_LT_GT] = ACTIONS(99), - [anon_sym_EQ] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(97), - [anon_sym_GT_EQ] = ACTIONS(99), - [aux_sym__comparison_operator_token1] = ACTIONS(99), - [aux_sym__comparison_operator_token2] = ACTIONS(99), - [aux_sym__comparison_operator_token3] = ACTIONS(99), - [aux_sym__comparison_operator_token4] = ACTIONS(99), - [aux_sym__comparison_operator_token5] = ACTIONS(99), - [aux_sym__comparison_operator_token6] = ACTIONS(99), - [aux_sym__comparison_operator_token7] = ACTIONS(99), - [aux_sym__comparison_operator_token8] = ACTIONS(99), - [aux_sym__comparison_operator_token9] = ACTIONS(99), - [aux_sym_variable_tuning_token1] = ACTIONS(99), - [aux_sym_variable_tuning_token2] = ACTIONS(99), - [aux_sym_variable_tuning_token3] = ACTIONS(99), - [aux_sym_variable_tuning_token4] = ACTIONS(99), - [aux_sym_variable_tuning_token5] = ACTIONS(99), - [aux_sym_variable_tuning_token6] = ACTIONS(99), - [anon_sym_COMMA] = ACTIONS(99), - [aux_sym_if_statement_token2] = ACTIONS(99), - [aux_sym_else_if_statement_token1] = ACTIONS(99), - [anon_sym_COLON] = ACTIONS(99), - [aux_sym_while_phrase_token1] = ACTIONS(99), - [aux_sym_property_tuning_token1] = ACTIONS(99), - [aux_sym_event_definition_token1] = ACTIONS(99), - [aux_sym_using_statement_token1] = ACTIONS(99), - [aux_sym_input_stream_tuning_token1] = ACTIONS(99), - [aux_sym_input_stream_tuning_token2] = ACTIONS(99), - [aux_sym_input_stream_tuning_token3] = ACTIONS(99), - [aux_sym_input_stream_tuning_token4] = ACTIONS(99), - [aux_sym_input_stream_tuning_token5] = ACTIONS(99), - [aux_sym_input_stream_tuning_token6] = ACTIONS(99), - [aux_sym_input_stream_tuning_token7] = ACTIONS(99), - [aux_sym_input_stream_tuning_token8] = ACTIONS(99), - [aux_sym_input_stream_tuning_token9] = ACTIONS(99), - [aux_sym_input_stream_tuning_token11] = ACTIONS(99), - [aux_sym_output_stream_tuning_token1] = ACTIONS(99), - [aux_sym_output_stream_tuning_token2] = ACTIONS(99), - [aux_sym_output_stream_tuning_token3] = ACTIONS(99), - [aux_sym_output_stream_tuning_token4] = ACTIONS(99), - [aux_sym_output_stream_tuning_token5] = ACTIONS(99), - [aux_sym_output_stream_tuning_token6] = ACTIONS(99), - [aux_sym_output_stream_tuning_token7] = ACTIONS(99), - [aux_sym_output_stream_tuning_token8] = ACTIONS(99), - [aux_sym_output_stream_statement_token1] = ACTIONS(99), - [aux_sym_on_error_phrase_token1] = ACTIONS(99), - [aux_sym_stop_after_phrase_token1] = ACTIONS(99), - [aux_sym_do_tuning_token1] = ACTIONS(99), - [anon_sym_BY] = ACTIONS(99), - [aux_sym_where_clause_token1] = ACTIONS(99), - [aux_sym_query_tuning_token1] = ACTIONS(99), - [aux_sym_query_tuning_token2] = ACTIONS(99), - [aux_sym_query_tuning_token3] = ACTIONS(99), - [aux_sym_query_tuning_token4] = ACTIONS(99), - [aux_sym_query_tuning_token5] = ACTIONS(99), - [aux_sym_query_tuning_token6] = ACTIONS(99), - [aux_sym_of_token1] = ACTIONS(99), - [aux_sym_field_definition_token1] = ACTIONS(99), - [aux_sym_index_definition_token1] = ACTIONS(99), - [aux_sym_on_statement_token1] = ACTIONS(99), - [sym__or_operator] = ACTIONS(99), - [sym__and_operator] = ACTIONS(99), - }, [31] = { [sym_comment] = STATE(31), [sym_include] = STATE(31), @@ -28763,6 +29073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(177), [aux_sym_variable_tuning_token6] = ACTIONS(177), [anon_sym_COMMA] = ACTIONS(177), + [aux_sym_function_call_token1] = ACTIONS(177), [aux_sym_if_statement_token2] = ACTIONS(177), [aux_sym_else_if_statement_token1] = ACTIONS(177), [anon_sym_COLON] = ACTIONS(177), @@ -28799,7 +29110,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(177), [aux_sym_query_tuning_token4] = ACTIONS(177), [aux_sym_query_tuning_token5] = ACTIONS(177), - [aux_sym_query_tuning_token6] = ACTIONS(177), [aux_sym_of_token1] = ACTIONS(177), [aux_sym_field_definition_token1] = ACTIONS(177), [aux_sym_index_definition_token1] = ACTIONS(177), @@ -28842,6 +29152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(181), [aux_sym_variable_tuning_token6] = ACTIONS(181), [anon_sym_COMMA] = ACTIONS(181), + [aux_sym_function_call_token1] = ACTIONS(181), [aux_sym_if_statement_token2] = ACTIONS(181), [aux_sym_else_if_statement_token1] = ACTIONS(181), [anon_sym_COLON] = ACTIONS(181), @@ -28878,7 +29189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(181), [aux_sym_query_tuning_token4] = ACTIONS(181), [aux_sym_query_tuning_token5] = ACTIONS(181), - [aux_sym_query_tuning_token6] = ACTIONS(181), [aux_sym_of_token1] = ACTIONS(181), [aux_sym_field_definition_token1] = ACTIONS(181), [aux_sym_index_definition_token1] = ACTIONS(181), @@ -28921,6 +29231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(185), [aux_sym_variable_tuning_token6] = ACTIONS(185), [anon_sym_COMMA] = ACTIONS(185), + [aux_sym_function_call_token1] = ACTIONS(185), [aux_sym_if_statement_token2] = ACTIONS(185), [aux_sym_else_if_statement_token1] = ACTIONS(185), [anon_sym_COLON] = ACTIONS(185), @@ -28957,7 +29268,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(185), [aux_sym_query_tuning_token4] = ACTIONS(185), [aux_sym_query_tuning_token5] = ACTIONS(185), - [aux_sym_query_tuning_token6] = ACTIONS(185), [aux_sym_of_token1] = ACTIONS(185), [aux_sym_field_definition_token1] = ACTIONS(185), [aux_sym_index_definition_token1] = ACTIONS(185), @@ -28970,86 +29280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_include] = STATE(34), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(77), - [sym__terminator] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(69), - [anon_sym_RPAREN] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_LT_GT] = ACTIONS(77), - [anon_sym_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(77), - [aux_sym__comparison_operator_token1] = ACTIONS(77), - [aux_sym__comparison_operator_token2] = ACTIONS(77), - [aux_sym__comparison_operator_token3] = ACTIONS(77), - [aux_sym__comparison_operator_token4] = ACTIONS(77), - [aux_sym__comparison_operator_token5] = ACTIONS(77), - [aux_sym__comparison_operator_token6] = ACTIONS(77), - [aux_sym__comparison_operator_token7] = ACTIONS(77), - [aux_sym__comparison_operator_token8] = ACTIONS(77), - [aux_sym__comparison_operator_token9] = ACTIONS(77), - [aux_sym_variable_tuning_token1] = ACTIONS(77), - [aux_sym_variable_tuning_token2] = ACTIONS(77), - [aux_sym_variable_tuning_token3] = ACTIONS(77), - [aux_sym_variable_tuning_token4] = ACTIONS(77), - [aux_sym_variable_tuning_token5] = ACTIONS(77), - [aux_sym_variable_tuning_token6] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), - [aux_sym_if_statement_token2] = ACTIONS(77), - [aux_sym_else_if_statement_token1] = ACTIONS(77), - [anon_sym_COLON] = ACTIONS(77), - [aux_sym_while_phrase_token1] = ACTIONS(77), - [aux_sym_property_tuning_token1] = ACTIONS(77), - [aux_sym_event_definition_token1] = ACTIONS(77), - [aux_sym_using_statement_token1] = ACTIONS(77), - [aux_sym_input_stream_tuning_token1] = ACTIONS(77), - [aux_sym_input_stream_tuning_token2] = ACTIONS(77), - [aux_sym_input_stream_tuning_token3] = ACTIONS(77), - [aux_sym_input_stream_tuning_token4] = ACTIONS(77), - [aux_sym_input_stream_tuning_token5] = ACTIONS(77), - [aux_sym_input_stream_tuning_token6] = ACTIONS(77), - [aux_sym_input_stream_tuning_token7] = ACTIONS(77), - [aux_sym_input_stream_tuning_token8] = ACTIONS(77), - [aux_sym_input_stream_tuning_token9] = ACTIONS(77), - [aux_sym_input_stream_tuning_token11] = ACTIONS(77), - [aux_sym_output_stream_tuning_token1] = ACTIONS(77), - [aux_sym_output_stream_tuning_token2] = ACTIONS(77), - [aux_sym_output_stream_tuning_token3] = ACTIONS(77), - [aux_sym_output_stream_tuning_token4] = ACTIONS(77), - [aux_sym_output_stream_tuning_token5] = ACTIONS(77), - [aux_sym_output_stream_tuning_token6] = ACTIONS(77), - [aux_sym_output_stream_tuning_token7] = ACTIONS(77), - [aux_sym_output_stream_tuning_token8] = ACTIONS(77), - [aux_sym_output_stream_statement_token1] = ACTIONS(77), - [aux_sym_on_error_phrase_token1] = ACTIONS(77), - [aux_sym_stop_after_phrase_token1] = ACTIONS(77), - [aux_sym_do_tuning_token1] = ACTIONS(77), - [anon_sym_BY] = ACTIONS(77), - [aux_sym_where_clause_token1] = ACTIONS(77), - [aux_sym_query_tuning_token1] = ACTIONS(77), - [aux_sym_query_tuning_token2] = ACTIONS(77), - [aux_sym_query_tuning_token3] = ACTIONS(77), - [aux_sym_query_tuning_token4] = ACTIONS(77), - [aux_sym_query_tuning_token5] = ACTIONS(77), - [aux_sym_query_tuning_token6] = ACTIONS(77), - [aux_sym_of_token1] = ACTIONS(77), - [aux_sym_field_definition_token1] = ACTIONS(77), - [aux_sym_index_definition_token1] = ACTIONS(77), - [aux_sym_on_statement_token1] = ACTIONS(77), - [sym__or_operator] = ACTIONS(77), - [sym__and_operator] = ACTIONS(77), - }, - [35] = { - [sym_comment] = STATE(35), - [sym_include] = STATE(35), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(187), + [anon_sym_SLASH] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(189), [sym__terminator] = ACTIONS(189), @@ -29079,6 +29310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(189), [aux_sym_variable_tuning_token6] = ACTIONS(189), [anon_sym_COMMA] = ACTIONS(189), + [aux_sym_function_call_token1] = ACTIONS(189), [aux_sym_if_statement_token2] = ACTIONS(189), [aux_sym_else_if_statement_token1] = ACTIONS(189), [anon_sym_COLON] = ACTIONS(189), @@ -29115,7 +29347,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(189), [aux_sym_query_tuning_token4] = ACTIONS(189), [aux_sym_query_tuning_token5] = ACTIONS(189), - [aux_sym_query_tuning_token6] = ACTIONS(189), [aux_sym_of_token1] = ACTIONS(189), [aux_sym_field_definition_token1] = ACTIONS(189), [aux_sym_index_definition_token1] = ACTIONS(189), @@ -29123,9 +29354,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(189), [sym__and_operator] = ACTIONS(189), }, - [36] = { - [sym_comment] = STATE(36), - [sym_include] = STATE(36), + [35] = { + [sym_comment] = STATE(35), + [sym_include] = STATE(35), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(191), @@ -29158,6 +29389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(193), [aux_sym_variable_tuning_token6] = ACTIONS(193), [anon_sym_COMMA] = ACTIONS(193), + [aux_sym_function_call_token1] = ACTIONS(193), [aux_sym_if_statement_token2] = ACTIONS(193), [aux_sym_else_if_statement_token1] = ACTIONS(193), [anon_sym_COLON] = ACTIONS(193), @@ -29194,7 +29426,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(193), [aux_sym_query_tuning_token4] = ACTIONS(193), [aux_sym_query_tuning_token5] = ACTIONS(193), - [aux_sym_query_tuning_token6] = ACTIONS(193), [aux_sym_of_token1] = ACTIONS(193), [aux_sym_field_definition_token1] = ACTIONS(193), [aux_sym_index_definition_token1] = ACTIONS(193), @@ -29202,9 +29433,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(193), [sym__and_operator] = ACTIONS(193), }, - [37] = { - [sym_comment] = STATE(37), - [sym_include] = STATE(37), + [36] = { + [sym_comment] = STATE(36), + [sym_include] = STATE(36), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(195), @@ -29237,6 +29468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(197), [aux_sym_variable_tuning_token6] = ACTIONS(197), [anon_sym_COMMA] = ACTIONS(197), + [aux_sym_function_call_token1] = ACTIONS(197), [aux_sym_if_statement_token2] = ACTIONS(197), [aux_sym_else_if_statement_token1] = ACTIONS(197), [anon_sym_COLON] = ACTIONS(197), @@ -29273,7 +29505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(197), [aux_sym_query_tuning_token4] = ACTIONS(197), [aux_sym_query_tuning_token5] = ACTIONS(197), - [aux_sym_query_tuning_token6] = ACTIONS(197), [aux_sym_of_token1] = ACTIONS(197), [aux_sym_field_definition_token1] = ACTIONS(197), [aux_sym_index_definition_token1] = ACTIONS(197), @@ -29281,88 +29512,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(197), [sym__and_operator] = ACTIONS(197), }, - [38] = { - [sym_comment] = STATE(38), - [sym_include] = STATE(38), + [37] = { + [sym_comment] = STATE(37), + [sym_include] = STATE(37), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(87), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(77), - [sym__terminator] = ACTIONS(77), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_RPAREN] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_LT] = ACTIONS(75), - [anon_sym_LT_EQ] = ACTIONS(77), - [anon_sym_LT_GT] = ACTIONS(77), - [anon_sym_EQ] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(75), - [anon_sym_GT_EQ] = ACTIONS(77), - [aux_sym__comparison_operator_token1] = ACTIONS(77), - [aux_sym__comparison_operator_token2] = ACTIONS(77), - [aux_sym__comparison_operator_token3] = ACTIONS(77), - [aux_sym__comparison_operator_token4] = ACTIONS(77), - [aux_sym__comparison_operator_token5] = ACTIONS(77), - [aux_sym__comparison_operator_token6] = ACTIONS(77), - [aux_sym__comparison_operator_token7] = ACTIONS(77), - [aux_sym__comparison_operator_token8] = ACTIONS(77), - [aux_sym__comparison_operator_token9] = ACTIONS(77), - [aux_sym_variable_tuning_token1] = ACTIONS(77), - [aux_sym_variable_tuning_token2] = ACTIONS(77), - [aux_sym_variable_tuning_token3] = ACTIONS(77), - [aux_sym_variable_tuning_token4] = ACTIONS(77), - [aux_sym_variable_tuning_token5] = ACTIONS(77), - [aux_sym_variable_tuning_token6] = ACTIONS(77), - [anon_sym_COMMA] = ACTIONS(77), - [aux_sym_if_statement_token2] = ACTIONS(77), - [aux_sym_else_if_statement_token1] = ACTIONS(77), - [anon_sym_COLON] = ACTIONS(77), - [aux_sym_while_phrase_token1] = ACTIONS(77), - [aux_sym_property_tuning_token1] = ACTIONS(77), - [aux_sym_event_definition_token1] = ACTIONS(77), - [aux_sym_using_statement_token1] = ACTIONS(77), - [aux_sym_input_stream_tuning_token1] = ACTIONS(77), - [aux_sym_input_stream_tuning_token2] = ACTIONS(77), - [aux_sym_input_stream_tuning_token3] = ACTIONS(77), - [aux_sym_input_stream_tuning_token4] = ACTIONS(77), - [aux_sym_input_stream_tuning_token5] = ACTIONS(77), - [aux_sym_input_stream_tuning_token6] = ACTIONS(77), - [aux_sym_input_stream_tuning_token7] = ACTIONS(77), - [aux_sym_input_stream_tuning_token8] = ACTIONS(77), - [aux_sym_input_stream_tuning_token9] = ACTIONS(77), - [aux_sym_input_stream_tuning_token11] = ACTIONS(77), - [aux_sym_output_stream_tuning_token1] = ACTIONS(77), - [aux_sym_output_stream_tuning_token2] = ACTIONS(77), - [aux_sym_output_stream_tuning_token3] = ACTIONS(77), - [aux_sym_output_stream_tuning_token4] = ACTIONS(77), - [aux_sym_output_stream_tuning_token5] = ACTIONS(77), - [aux_sym_output_stream_tuning_token6] = ACTIONS(77), - [aux_sym_output_stream_tuning_token7] = ACTIONS(77), - [aux_sym_output_stream_tuning_token8] = ACTIONS(77), - [aux_sym_output_stream_statement_token1] = ACTIONS(77), - [aux_sym_on_error_phrase_token1] = ACTIONS(77), - [aux_sym_stop_after_phrase_token1] = ACTIONS(77), - [aux_sym_do_tuning_token1] = ACTIONS(77), - [anon_sym_BY] = ACTIONS(77), - [aux_sym_where_clause_token1] = ACTIONS(77), - [aux_sym_query_tuning_token1] = ACTIONS(77), - [aux_sym_query_tuning_token2] = ACTIONS(77), - [aux_sym_query_tuning_token3] = ACTIONS(77), - [aux_sym_query_tuning_token4] = ACTIONS(77), - [aux_sym_query_tuning_token5] = ACTIONS(77), - [aux_sym_query_tuning_token6] = ACTIONS(77), - [aux_sym_of_token1] = ACTIONS(77), - [aux_sym_field_definition_token1] = ACTIONS(77), - [aux_sym_index_definition_token1] = ACTIONS(77), - [aux_sym_on_statement_token1] = ACTIONS(77), - [sym__or_operator] = ACTIONS(77), - [sym__and_operator] = ACTIONS(77), + [anon_sym_STAR] = ACTIONS(89), + [sym__terminator] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RPAREN] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_EQ] = ACTIONS(89), + [aux_sym__comparison_operator_token1] = ACTIONS(89), + [aux_sym__comparison_operator_token2] = ACTIONS(89), + [aux_sym__comparison_operator_token3] = ACTIONS(89), + [aux_sym__comparison_operator_token4] = ACTIONS(89), + [aux_sym__comparison_operator_token5] = ACTIONS(89), + [aux_sym__comparison_operator_token6] = ACTIONS(89), + [aux_sym__comparison_operator_token7] = ACTIONS(89), + [aux_sym__comparison_operator_token8] = ACTIONS(89), + [aux_sym__comparison_operator_token9] = ACTIONS(89), + [aux_sym_variable_tuning_token1] = ACTIONS(89), + [aux_sym_variable_tuning_token2] = ACTIONS(89), + [aux_sym_variable_tuning_token3] = ACTIONS(89), + [aux_sym_variable_tuning_token4] = ACTIONS(89), + [aux_sym_variable_tuning_token5] = ACTIONS(89), + [aux_sym_variable_tuning_token6] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [aux_sym_function_call_token1] = ACTIONS(89), + [aux_sym_if_statement_token2] = ACTIONS(89), + [aux_sym_else_if_statement_token1] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [aux_sym_while_phrase_token1] = ACTIONS(89), + [aux_sym_property_tuning_token1] = ACTIONS(89), + [aux_sym_event_definition_token1] = ACTIONS(89), + [aux_sym_using_statement_token1] = ACTIONS(89), + [aux_sym_input_stream_tuning_token1] = ACTIONS(89), + [aux_sym_input_stream_tuning_token2] = ACTIONS(89), + [aux_sym_input_stream_tuning_token3] = ACTIONS(89), + [aux_sym_input_stream_tuning_token4] = ACTIONS(89), + [aux_sym_input_stream_tuning_token5] = ACTIONS(89), + [aux_sym_input_stream_tuning_token6] = ACTIONS(89), + [aux_sym_input_stream_tuning_token7] = ACTIONS(89), + [aux_sym_input_stream_tuning_token8] = ACTIONS(89), + [aux_sym_input_stream_tuning_token9] = ACTIONS(89), + [aux_sym_input_stream_tuning_token11] = ACTIONS(89), + [aux_sym_output_stream_tuning_token1] = ACTIONS(89), + [aux_sym_output_stream_tuning_token2] = ACTIONS(89), + [aux_sym_output_stream_tuning_token3] = ACTIONS(89), + [aux_sym_output_stream_tuning_token4] = ACTIONS(89), + [aux_sym_output_stream_tuning_token5] = ACTIONS(89), + [aux_sym_output_stream_tuning_token6] = ACTIONS(89), + [aux_sym_output_stream_tuning_token7] = ACTIONS(89), + [aux_sym_output_stream_tuning_token8] = ACTIONS(89), + [aux_sym_output_stream_statement_token1] = ACTIONS(89), + [aux_sym_on_error_phrase_token1] = ACTIONS(89), + [aux_sym_stop_after_phrase_token1] = ACTIONS(89), + [aux_sym_do_tuning_token1] = ACTIONS(89), + [anon_sym_BY] = ACTIONS(89), + [aux_sym_where_clause_token1] = ACTIONS(89), + [aux_sym_query_tuning_token1] = ACTIONS(89), + [aux_sym_query_tuning_token2] = ACTIONS(89), + [aux_sym_query_tuning_token3] = ACTIONS(89), + [aux_sym_query_tuning_token4] = ACTIONS(89), + [aux_sym_query_tuning_token5] = ACTIONS(89), + [aux_sym_of_token1] = ACTIONS(89), + [aux_sym_field_definition_token1] = ACTIONS(89), + [aux_sym_index_definition_token1] = ACTIONS(89), + [aux_sym_on_statement_token1] = ACTIONS(89), + [sym__or_operator] = ACTIONS(89), + [sym__and_operator] = ACTIONS(89), }, - [39] = { - [sym_comment] = STATE(39), - [sym_include] = STATE(39), + [38] = { + [sym_comment] = STATE(38), + [sym_include] = STATE(38), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(199), @@ -29395,6 +29626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(201), [aux_sym_variable_tuning_token6] = ACTIONS(201), [anon_sym_COMMA] = ACTIONS(201), + [aux_sym_function_call_token1] = ACTIONS(201), [aux_sym_if_statement_token2] = ACTIONS(201), [aux_sym_else_if_statement_token1] = ACTIONS(201), [anon_sym_COLON] = ACTIONS(201), @@ -29431,7 +29663,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(201), [aux_sym_query_tuning_token4] = ACTIONS(201), [aux_sym_query_tuning_token5] = ACTIONS(201), - [aux_sym_query_tuning_token6] = ACTIONS(201), [aux_sym_of_token1] = ACTIONS(201), [aux_sym_field_definition_token1] = ACTIONS(201), [aux_sym_index_definition_token1] = ACTIONS(201), @@ -29439,88 +29670,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(201), [sym__and_operator] = ACTIONS(201), }, - [40] = { - [sym_comment] = STATE(40), - [sym_include] = STATE(40), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(86), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(88), - [sym__terminator] = ACTIONS(88), - [anon_sym_LPAREN] = ACTIONS(88), - [anon_sym_RPAREN] = ACTIONS(88), - [anon_sym_PLUS] = ACTIONS(88), - [anon_sym_DASH] = ACTIONS(88), - [anon_sym_LT] = ACTIONS(86), - [anon_sym_LT_EQ] = ACTIONS(88), - [anon_sym_LT_GT] = ACTIONS(88), - [anon_sym_EQ] = ACTIONS(88), - [anon_sym_GT] = ACTIONS(86), - [anon_sym_GT_EQ] = ACTIONS(88), - [aux_sym__comparison_operator_token1] = ACTIONS(88), - [aux_sym__comparison_operator_token2] = ACTIONS(88), - [aux_sym__comparison_operator_token3] = ACTIONS(88), - [aux_sym__comparison_operator_token4] = ACTIONS(88), - [aux_sym__comparison_operator_token5] = ACTIONS(88), - [aux_sym__comparison_operator_token6] = ACTIONS(88), - [aux_sym__comparison_operator_token7] = ACTIONS(88), - [aux_sym__comparison_operator_token8] = ACTIONS(88), - [aux_sym__comparison_operator_token9] = ACTIONS(88), - [aux_sym_variable_tuning_token1] = ACTIONS(88), - [aux_sym_variable_tuning_token2] = ACTIONS(88), - [aux_sym_variable_tuning_token3] = ACTIONS(88), - [aux_sym_variable_tuning_token4] = ACTIONS(88), - [aux_sym_variable_tuning_token5] = ACTIONS(88), - [aux_sym_variable_tuning_token6] = ACTIONS(88), - [anon_sym_COMMA] = ACTIONS(88), - [aux_sym_if_statement_token2] = ACTIONS(88), - [aux_sym_else_if_statement_token1] = ACTIONS(88), - [anon_sym_COLON] = ACTIONS(88), - [aux_sym_while_phrase_token1] = ACTIONS(88), - [aux_sym_property_tuning_token1] = ACTIONS(88), - [aux_sym_event_definition_token1] = ACTIONS(88), - [aux_sym_using_statement_token1] = ACTIONS(88), - [aux_sym_input_stream_tuning_token1] = ACTIONS(88), - [aux_sym_input_stream_tuning_token2] = ACTIONS(88), - [aux_sym_input_stream_tuning_token3] = ACTIONS(88), - [aux_sym_input_stream_tuning_token4] = ACTIONS(88), - [aux_sym_input_stream_tuning_token5] = ACTIONS(88), - [aux_sym_input_stream_tuning_token6] = ACTIONS(88), - [aux_sym_input_stream_tuning_token7] = ACTIONS(88), - [aux_sym_input_stream_tuning_token8] = ACTIONS(88), - [aux_sym_input_stream_tuning_token9] = ACTIONS(88), - [aux_sym_input_stream_tuning_token11] = ACTIONS(88), - [aux_sym_output_stream_tuning_token1] = ACTIONS(88), - [aux_sym_output_stream_tuning_token2] = ACTIONS(88), - [aux_sym_output_stream_tuning_token3] = ACTIONS(88), - [aux_sym_output_stream_tuning_token4] = ACTIONS(88), - [aux_sym_output_stream_tuning_token5] = ACTIONS(88), - [aux_sym_output_stream_tuning_token6] = ACTIONS(88), - [aux_sym_output_stream_tuning_token7] = ACTIONS(88), - [aux_sym_output_stream_tuning_token8] = ACTIONS(88), - [aux_sym_output_stream_statement_token1] = ACTIONS(88), - [aux_sym_on_error_phrase_token1] = ACTIONS(88), - [aux_sym_stop_after_phrase_token1] = ACTIONS(88), - [aux_sym_do_tuning_token1] = ACTIONS(88), - [anon_sym_BY] = ACTIONS(88), - [aux_sym_where_clause_token1] = ACTIONS(88), - [aux_sym_query_tuning_token1] = ACTIONS(88), - [aux_sym_query_tuning_token2] = ACTIONS(88), - [aux_sym_query_tuning_token3] = ACTIONS(88), - [aux_sym_query_tuning_token4] = ACTIONS(88), - [aux_sym_query_tuning_token5] = ACTIONS(88), - [aux_sym_query_tuning_token6] = ACTIONS(88), - [aux_sym_of_token1] = ACTIONS(88), - [aux_sym_field_definition_token1] = ACTIONS(88), - [aux_sym_index_definition_token1] = ACTIONS(88), - [aux_sym_on_statement_token1] = ACTIONS(88), - [sym__or_operator] = ACTIONS(88), - [sym__and_operator] = ACTIONS(88), - }, - [41] = { - [sym_comment] = STATE(41), - [sym_include] = STATE(41), + [39] = { + [sym_comment] = STATE(39), + [sym_include] = STATE(39), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(203), @@ -29553,6 +29705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(205), [aux_sym_variable_tuning_token6] = ACTIONS(205), [anon_sym_COMMA] = ACTIONS(205), + [aux_sym_function_call_token1] = ACTIONS(205), [aux_sym_if_statement_token2] = ACTIONS(205), [aux_sym_else_if_statement_token1] = ACTIONS(205), [anon_sym_COLON] = ACTIONS(205), @@ -29589,7 +29742,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(205), [aux_sym_query_tuning_token4] = ACTIONS(205), [aux_sym_query_tuning_token5] = ACTIONS(205), - [aux_sym_query_tuning_token6] = ACTIONS(205), [aux_sym_of_token1] = ACTIONS(205), [aux_sym_field_definition_token1] = ACTIONS(205), [aux_sym_index_definition_token1] = ACTIONS(205), @@ -29597,9 +29749,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(205), [sym__and_operator] = ACTIONS(205), }, - [42] = { - [sym_comment] = STATE(42), - [sym_include] = STATE(42), + [40] = { + [sym_comment] = STATE(40), + [sym_include] = STATE(40), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(207), @@ -29632,6 +29784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(209), [aux_sym_variable_tuning_token6] = ACTIONS(209), [anon_sym_COMMA] = ACTIONS(209), + [aux_sym_function_call_token1] = ACTIONS(209), [aux_sym_if_statement_token2] = ACTIONS(209), [aux_sym_else_if_statement_token1] = ACTIONS(209), [anon_sym_COLON] = ACTIONS(209), @@ -29668,7 +29821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(209), [aux_sym_query_tuning_token4] = ACTIONS(209), [aux_sym_query_tuning_token5] = ACTIONS(209), - [aux_sym_query_tuning_token6] = ACTIONS(209), [aux_sym_of_token1] = ACTIONS(209), [aux_sym_field_definition_token1] = ACTIONS(209), [aux_sym_index_definition_token1] = ACTIONS(209), @@ -29676,9 +29828,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(209), [sym__and_operator] = ACTIONS(209), }, - [43] = { - [sym_comment] = STATE(43), - [sym_include] = STATE(43), + [41] = { + [sym_comment] = STATE(41), + [sym_include] = STATE(41), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(211), @@ -29711,6 +29863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(213), [aux_sym_variable_tuning_token6] = ACTIONS(213), [anon_sym_COMMA] = ACTIONS(213), + [aux_sym_function_call_token1] = ACTIONS(213), [aux_sym_if_statement_token2] = ACTIONS(213), [aux_sym_else_if_statement_token1] = ACTIONS(213), [anon_sym_COLON] = ACTIONS(213), @@ -29747,7 +29900,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(213), [aux_sym_query_tuning_token4] = ACTIONS(213), [aux_sym_query_tuning_token5] = ACTIONS(213), - [aux_sym_query_tuning_token6] = ACTIONS(213), [aux_sym_of_token1] = ACTIONS(213), [aux_sym_field_definition_token1] = ACTIONS(213), [aux_sym_index_definition_token1] = ACTIONS(213), @@ -29755,9 +29907,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(213), [sym__and_operator] = ACTIONS(213), }, - [44] = { - [sym_comment] = STATE(44), - [sym_include] = STATE(44), + [42] = { + [sym_comment] = STATE(42), + [sym_include] = STATE(42), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(215), @@ -29790,6 +29942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_variable_tuning_token5] = ACTIONS(217), [aux_sym_variable_tuning_token6] = ACTIONS(217), [anon_sym_COMMA] = ACTIONS(217), + [aux_sym_function_call_token1] = ACTIONS(217), [aux_sym_if_statement_token2] = ACTIONS(217), [aux_sym_else_if_statement_token1] = ACTIONS(217), [anon_sym_COLON] = ACTIONS(217), @@ -29826,7 +29979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_query_tuning_token3] = ACTIONS(217), [aux_sym_query_tuning_token4] = ACTIONS(217), [aux_sym_query_tuning_token5] = ACTIONS(217), - [aux_sym_query_tuning_token6] = ACTIONS(217), [aux_sym_of_token1] = ACTIONS(217), [aux_sym_field_definition_token1] = ACTIONS(217), [aux_sym_index_definition_token1] = ACTIONS(217), @@ -29834,6798 +29986,7414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(217), [sym__and_operator] = ACTIONS(217), }, + [43] = { + [sym_comment] = STATE(43), + [sym_include] = STATE(43), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(219), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(221), + [sym__terminator] = ACTIONS(221), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(221), + [anon_sym_PLUS] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(221), + [anon_sym_LT] = ACTIONS(219), + [anon_sym_LT_EQ] = ACTIONS(221), + [anon_sym_LT_GT] = ACTIONS(221), + [anon_sym_EQ] = ACTIONS(221), + [anon_sym_GT] = ACTIONS(219), + [anon_sym_GT_EQ] = ACTIONS(221), + [aux_sym__comparison_operator_token1] = ACTIONS(221), + [aux_sym__comparison_operator_token2] = ACTIONS(221), + [aux_sym__comparison_operator_token3] = ACTIONS(221), + [aux_sym__comparison_operator_token4] = ACTIONS(221), + [aux_sym__comparison_operator_token5] = ACTIONS(221), + [aux_sym__comparison_operator_token6] = ACTIONS(221), + [aux_sym__comparison_operator_token7] = ACTIONS(221), + [aux_sym__comparison_operator_token8] = ACTIONS(221), + [aux_sym__comparison_operator_token9] = ACTIONS(221), + [aux_sym_variable_tuning_token1] = ACTIONS(221), + [aux_sym_variable_tuning_token2] = ACTIONS(221), + [aux_sym_variable_tuning_token3] = ACTIONS(221), + [aux_sym_variable_tuning_token4] = ACTIONS(221), + [aux_sym_variable_tuning_token5] = ACTIONS(221), + [aux_sym_variable_tuning_token6] = ACTIONS(221), + [anon_sym_COMMA] = ACTIONS(221), + [aux_sym_function_call_token1] = ACTIONS(221), + [aux_sym_if_statement_token2] = ACTIONS(221), + [aux_sym_else_if_statement_token1] = ACTIONS(221), + [anon_sym_COLON] = ACTIONS(221), + [aux_sym_while_phrase_token1] = ACTIONS(221), + [aux_sym_property_tuning_token1] = ACTIONS(221), + [aux_sym_event_definition_token1] = ACTIONS(221), + [aux_sym_using_statement_token1] = ACTIONS(221), + [aux_sym_input_stream_tuning_token1] = ACTIONS(221), + [aux_sym_input_stream_tuning_token2] = ACTIONS(221), + [aux_sym_input_stream_tuning_token3] = ACTIONS(221), + [aux_sym_input_stream_tuning_token4] = ACTIONS(221), + [aux_sym_input_stream_tuning_token5] = ACTIONS(221), + [aux_sym_input_stream_tuning_token6] = ACTIONS(221), + [aux_sym_input_stream_tuning_token7] = ACTIONS(221), + [aux_sym_input_stream_tuning_token8] = ACTIONS(221), + [aux_sym_input_stream_tuning_token9] = ACTIONS(221), + [aux_sym_input_stream_tuning_token11] = ACTIONS(221), + [aux_sym_output_stream_tuning_token1] = ACTIONS(221), + [aux_sym_output_stream_tuning_token2] = ACTIONS(221), + [aux_sym_output_stream_tuning_token3] = ACTIONS(221), + [aux_sym_output_stream_tuning_token4] = ACTIONS(221), + [aux_sym_output_stream_tuning_token5] = ACTIONS(221), + [aux_sym_output_stream_tuning_token6] = ACTIONS(221), + [aux_sym_output_stream_tuning_token7] = ACTIONS(221), + [aux_sym_output_stream_tuning_token8] = ACTIONS(221), + [aux_sym_output_stream_statement_token1] = ACTIONS(221), + [aux_sym_on_error_phrase_token1] = ACTIONS(221), + [aux_sym_stop_after_phrase_token1] = ACTIONS(221), + [aux_sym_do_tuning_token1] = ACTIONS(221), + [anon_sym_BY] = ACTIONS(221), + [aux_sym_where_clause_token1] = ACTIONS(221), + [aux_sym_query_tuning_token1] = ACTIONS(221), + [aux_sym_query_tuning_token2] = ACTIONS(221), + [aux_sym_query_tuning_token3] = ACTIONS(221), + [aux_sym_query_tuning_token4] = ACTIONS(221), + [aux_sym_query_tuning_token5] = ACTIONS(221), + [aux_sym_of_token1] = ACTIONS(221), + [aux_sym_field_definition_token1] = ACTIONS(221), + [aux_sym_index_definition_token1] = ACTIONS(221), + [aux_sym_on_statement_token1] = ACTIONS(221), + [sym__or_operator] = ACTIONS(221), + [sym__and_operator] = ACTIONS(221), + }, + [44] = { + [sym_comment] = STATE(44), + [sym_include] = STATE(44), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(223), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(225), + [sym__terminator] = ACTIONS(225), + [anon_sym_LPAREN] = ACTIONS(225), + [anon_sym_RPAREN] = ACTIONS(225), + [anon_sym_PLUS] = ACTIONS(225), + [anon_sym_DASH] = ACTIONS(225), + [anon_sym_LT] = ACTIONS(223), + [anon_sym_LT_EQ] = ACTIONS(225), + [anon_sym_LT_GT] = ACTIONS(225), + [anon_sym_EQ] = ACTIONS(225), + [anon_sym_GT] = ACTIONS(223), + [anon_sym_GT_EQ] = ACTIONS(225), + [aux_sym__comparison_operator_token1] = ACTIONS(225), + [aux_sym__comparison_operator_token2] = ACTIONS(225), + [aux_sym__comparison_operator_token3] = ACTIONS(225), + [aux_sym__comparison_operator_token4] = ACTIONS(225), + [aux_sym__comparison_operator_token5] = ACTIONS(225), + [aux_sym__comparison_operator_token6] = ACTIONS(225), + [aux_sym__comparison_operator_token7] = ACTIONS(225), + [aux_sym__comparison_operator_token8] = ACTIONS(225), + [aux_sym__comparison_operator_token9] = ACTIONS(225), + [aux_sym_variable_tuning_token1] = ACTIONS(225), + [aux_sym_variable_tuning_token2] = ACTIONS(225), + [aux_sym_variable_tuning_token3] = ACTIONS(225), + [aux_sym_variable_tuning_token4] = ACTIONS(225), + [aux_sym_variable_tuning_token5] = ACTIONS(225), + [aux_sym_variable_tuning_token6] = ACTIONS(225), + [anon_sym_COMMA] = ACTIONS(225), + [aux_sym_function_call_token1] = ACTIONS(225), + [aux_sym_if_statement_token2] = ACTIONS(225), + [aux_sym_else_if_statement_token1] = ACTIONS(225), + [anon_sym_COLON] = ACTIONS(225), + [aux_sym_while_phrase_token1] = ACTIONS(225), + [aux_sym_property_tuning_token1] = ACTIONS(225), + [aux_sym_event_definition_token1] = ACTIONS(225), + [aux_sym_using_statement_token1] = ACTIONS(225), + [aux_sym_input_stream_tuning_token1] = ACTIONS(225), + [aux_sym_input_stream_tuning_token2] = ACTIONS(225), + [aux_sym_input_stream_tuning_token3] = ACTIONS(225), + [aux_sym_input_stream_tuning_token4] = ACTIONS(225), + [aux_sym_input_stream_tuning_token5] = ACTIONS(225), + [aux_sym_input_stream_tuning_token6] = ACTIONS(225), + [aux_sym_input_stream_tuning_token7] = ACTIONS(225), + [aux_sym_input_stream_tuning_token8] = ACTIONS(225), + [aux_sym_input_stream_tuning_token9] = ACTIONS(225), + [aux_sym_input_stream_tuning_token11] = ACTIONS(225), + [aux_sym_output_stream_tuning_token1] = ACTIONS(225), + [aux_sym_output_stream_tuning_token2] = ACTIONS(225), + [aux_sym_output_stream_tuning_token3] = ACTIONS(225), + [aux_sym_output_stream_tuning_token4] = ACTIONS(225), + [aux_sym_output_stream_tuning_token5] = ACTIONS(225), + [aux_sym_output_stream_tuning_token6] = ACTIONS(225), + [aux_sym_output_stream_tuning_token7] = ACTIONS(225), + [aux_sym_output_stream_tuning_token8] = ACTIONS(225), + [aux_sym_output_stream_statement_token1] = ACTIONS(225), + [aux_sym_on_error_phrase_token1] = ACTIONS(225), + [aux_sym_stop_after_phrase_token1] = ACTIONS(225), + [aux_sym_do_tuning_token1] = ACTIONS(225), + [anon_sym_BY] = ACTIONS(225), + [aux_sym_where_clause_token1] = ACTIONS(225), + [aux_sym_query_tuning_token1] = ACTIONS(225), + [aux_sym_query_tuning_token2] = ACTIONS(225), + [aux_sym_query_tuning_token3] = ACTIONS(225), + [aux_sym_query_tuning_token4] = ACTIONS(225), + [aux_sym_query_tuning_token5] = ACTIONS(225), + [aux_sym_of_token1] = ACTIONS(225), + [aux_sym_field_definition_token1] = ACTIONS(225), + [aux_sym_index_definition_token1] = ACTIONS(225), + [aux_sym_on_statement_token1] = ACTIONS(225), + [sym__or_operator] = ACTIONS(225), + [sym__and_operator] = ACTIONS(225), + }, [45] = { - [sym_body] = STATE(3498), [sym_comment] = STATE(45), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1166), [sym_include] = STATE(45), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym__function_terminator] = STATE(1287), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(221), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(77), + [sym__terminator] = ACTIONS(77), + [anon_sym_LPAREN] = ACTIONS(77), + [anon_sym_RPAREN] = ACTIONS(77), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_DASH] = ACTIONS(77), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(77), + [anon_sym_LT_GT] = ACTIONS(77), + [anon_sym_EQ] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(77), + [aux_sym__comparison_operator_token1] = ACTIONS(77), + [aux_sym__comparison_operator_token2] = ACTIONS(77), + [aux_sym__comparison_operator_token3] = ACTIONS(77), + [aux_sym__comparison_operator_token4] = ACTIONS(77), + [aux_sym__comparison_operator_token5] = ACTIONS(77), + [aux_sym__comparison_operator_token6] = ACTIONS(77), + [aux_sym__comparison_operator_token7] = ACTIONS(77), + [aux_sym__comparison_operator_token8] = ACTIONS(77), + [aux_sym__comparison_operator_token9] = ACTIONS(77), + [aux_sym_variable_tuning_token1] = ACTIONS(77), + [aux_sym_variable_tuning_token2] = ACTIONS(77), + [aux_sym_variable_tuning_token3] = ACTIONS(77), + [aux_sym_variable_tuning_token4] = ACTIONS(77), + [aux_sym_variable_tuning_token5] = ACTIONS(77), + [aux_sym_variable_tuning_token6] = ACTIONS(77), + [anon_sym_COMMA] = ACTIONS(77), + [aux_sym_function_call_token1] = ACTIONS(77), + [aux_sym_if_statement_token2] = ACTIONS(77), + [aux_sym_else_if_statement_token1] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(77), + [aux_sym_while_phrase_token1] = ACTIONS(77), + [aux_sym_property_tuning_token1] = ACTIONS(77), + [aux_sym_event_definition_token1] = ACTIONS(77), + [aux_sym_using_statement_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token1] = ACTIONS(77), + [aux_sym_input_stream_tuning_token2] = ACTIONS(77), + [aux_sym_input_stream_tuning_token3] = ACTIONS(77), + [aux_sym_input_stream_tuning_token4] = ACTIONS(77), + [aux_sym_input_stream_tuning_token5] = ACTIONS(77), + [aux_sym_input_stream_tuning_token6] = ACTIONS(77), + [aux_sym_input_stream_tuning_token7] = ACTIONS(77), + [aux_sym_input_stream_tuning_token8] = ACTIONS(77), + [aux_sym_input_stream_tuning_token9] = ACTIONS(77), + [aux_sym_input_stream_tuning_token11] = ACTIONS(77), + [aux_sym_output_stream_tuning_token1] = ACTIONS(77), + [aux_sym_output_stream_tuning_token2] = ACTIONS(77), + [aux_sym_output_stream_tuning_token3] = ACTIONS(77), + [aux_sym_output_stream_tuning_token4] = ACTIONS(77), + [aux_sym_output_stream_tuning_token5] = ACTIONS(77), + [aux_sym_output_stream_tuning_token6] = ACTIONS(77), + [aux_sym_output_stream_tuning_token7] = ACTIONS(77), + [aux_sym_output_stream_tuning_token8] = ACTIONS(77), + [aux_sym_output_stream_statement_token1] = ACTIONS(77), + [aux_sym_on_error_phrase_token1] = ACTIONS(77), + [aux_sym_stop_after_phrase_token1] = ACTIONS(77), + [aux_sym_do_tuning_token1] = ACTIONS(77), + [anon_sym_BY] = ACTIONS(77), + [aux_sym_where_clause_token1] = ACTIONS(77), + [aux_sym_query_tuning_token1] = ACTIONS(77), + [aux_sym_query_tuning_token2] = ACTIONS(77), + [aux_sym_query_tuning_token3] = ACTIONS(77), + [aux_sym_query_tuning_token4] = ACTIONS(77), + [aux_sym_query_tuning_token5] = ACTIONS(77), + [aux_sym_of_token1] = ACTIONS(77), + [aux_sym_field_definition_token1] = ACTIONS(77), + [aux_sym_index_definition_token1] = ACTIONS(77), + [aux_sym_on_statement_token1] = ACTIONS(77), + [sym__or_operator] = ACTIONS(77), + [sym__and_operator] = ACTIONS(77), }, [46] = { - [sym_body] = STATE(3339), [sym_comment] = STATE(46), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1476), [sym_include] = STATE(46), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym__function_terminator] = STATE(1454), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(269), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(153), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(155), + [sym__terminator] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_RPAREN] = ACTIONS(155), + [anon_sym_PLUS] = ACTIONS(155), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(153), + [anon_sym_LT_EQ] = ACTIONS(155), + [anon_sym_LT_GT] = ACTIONS(155), + [anon_sym_EQ] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(153), + [anon_sym_GT_EQ] = ACTIONS(155), + [aux_sym__comparison_operator_token1] = ACTIONS(155), + [aux_sym__comparison_operator_token2] = ACTIONS(155), + [aux_sym__comparison_operator_token3] = ACTIONS(155), + [aux_sym__comparison_operator_token4] = ACTIONS(155), + [aux_sym__comparison_operator_token5] = ACTIONS(155), + [aux_sym__comparison_operator_token6] = ACTIONS(155), + [aux_sym__comparison_operator_token7] = ACTIONS(155), + [aux_sym__comparison_operator_token8] = ACTIONS(155), + [aux_sym__comparison_operator_token9] = ACTIONS(155), + [aux_sym_variable_tuning_token1] = ACTIONS(155), + [aux_sym_variable_tuning_token2] = ACTIONS(155), + [aux_sym_variable_tuning_token3] = ACTIONS(155), + [aux_sym_variable_tuning_token4] = ACTIONS(155), + [aux_sym_variable_tuning_token5] = ACTIONS(155), + [aux_sym_variable_tuning_token6] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(155), + [aux_sym_function_call_token1] = ACTIONS(155), + [aux_sym_if_statement_token2] = ACTIONS(155), + [aux_sym_else_if_statement_token1] = ACTIONS(155), + [anon_sym_COLON] = ACTIONS(155), + [aux_sym_while_phrase_token1] = ACTIONS(155), + [aux_sym_property_tuning_token1] = ACTIONS(155), + [aux_sym_event_definition_token1] = ACTIONS(155), + [aux_sym_using_statement_token1] = ACTIONS(155), + [aux_sym_input_stream_tuning_token1] = ACTIONS(155), + [aux_sym_input_stream_tuning_token2] = ACTIONS(155), + [aux_sym_input_stream_tuning_token3] = ACTIONS(155), + [aux_sym_input_stream_tuning_token4] = ACTIONS(155), + [aux_sym_input_stream_tuning_token5] = ACTIONS(155), + [aux_sym_input_stream_tuning_token6] = ACTIONS(155), + [aux_sym_input_stream_tuning_token7] = ACTIONS(155), + [aux_sym_input_stream_tuning_token8] = ACTIONS(155), + [aux_sym_input_stream_tuning_token9] = ACTIONS(155), + [aux_sym_input_stream_tuning_token11] = ACTIONS(155), + [aux_sym_output_stream_tuning_token1] = ACTIONS(155), + [aux_sym_output_stream_tuning_token2] = ACTIONS(155), + [aux_sym_output_stream_tuning_token3] = ACTIONS(155), + [aux_sym_output_stream_tuning_token4] = ACTIONS(155), + [aux_sym_output_stream_tuning_token5] = ACTIONS(155), + [aux_sym_output_stream_tuning_token6] = ACTIONS(155), + [aux_sym_output_stream_tuning_token7] = ACTIONS(155), + [aux_sym_output_stream_tuning_token8] = ACTIONS(155), + [aux_sym_output_stream_statement_token1] = ACTIONS(155), + [aux_sym_on_error_phrase_token1] = ACTIONS(155), + [aux_sym_stop_after_phrase_token1] = ACTIONS(155), + [aux_sym_do_tuning_token1] = ACTIONS(155), + [anon_sym_BY] = ACTIONS(155), + [aux_sym_where_clause_token1] = ACTIONS(155), + [aux_sym_query_tuning_token1] = ACTIONS(155), + [aux_sym_query_tuning_token2] = ACTIONS(155), + [aux_sym_query_tuning_token3] = ACTIONS(155), + [aux_sym_query_tuning_token4] = ACTIONS(155), + [aux_sym_query_tuning_token5] = ACTIONS(155), + [aux_sym_of_token1] = ACTIONS(155), + [aux_sym_field_definition_token1] = ACTIONS(155), + [aux_sym_index_definition_token1] = ACTIONS(155), + [aux_sym_on_statement_token1] = ACTIONS(155), + [sym__or_operator] = ACTIONS(155), + [sym__and_operator] = ACTIONS(155), }, [47] = { - [sym_body] = STATE(3340), + [sym_body] = STATE(3170), [sym_comment] = STATE(47), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1476), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1311), [sym_include] = STATE(47), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym__function_terminator] = STATE(1475), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym__procedure_terminator] = STATE(1311), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(269), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(229), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [48] = { - [sym_body] = STATE(3100), + [sym_body] = STATE(3544), [sym_comment] = STATE(48), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1340), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1361), [sym_include] = STATE(48), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym__procedure_terminator] = STATE(1340), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym__procedure_terminator] = STATE(1361), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(271), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(277), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [49] = { - [sym_body] = STATE(3370), + [sym_body] = STATE(3532), [sym_comment] = STATE(49), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1280), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1545), [sym_include] = STATE(49), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym__procedure_terminator] = STATE(1280), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym__function_terminator] = STATE(1495), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(273), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(279), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [50] = { - [sym_body] = STATE(3458), + [sym_body] = STATE(3534), [sym_comment] = STATE(50), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1166), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1545), [sym_include] = STATE(50), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym__function_terminator] = STATE(1193), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym__function_terminator] = STATE(1537), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(221), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(279), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [51] = { - [sym_body] = STATE(3410), + [sym_body] = STATE(3530), [sym_comment] = STATE(51), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1166), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1545), [sym_include] = STATE(51), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym__function_terminator] = STATE(1165), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym__function_terminator] = STATE(1474), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(221), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(279), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [52] = { - [sym_body] = STATE(3051), + [sym_body] = STATE(3302), [sym_comment] = STATE(52), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1458), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1447), [sym_include] = STATE(52), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym__procedure_terminator] = STATE(1458), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym__function_terminator] = STATE(1446), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(271), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(281), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [53] = { - [sym_body] = STATE(3358), + [sym_body] = STATE(3403), [sym_comment] = STATE(53), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1208), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1447), [sym_include] = STATE(53), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym__procedure_terminator] = STATE(1208), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym__function_terminator] = STATE(1289), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(273), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(281), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [54] = { - [sym_body] = STATE(3338), + [sym_body] = STATE(3546), [sym_comment] = STATE(54), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1476), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1250), [sym_include] = STATE(54), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym__function_terminator] = STATE(1436), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym__procedure_terminator] = STATE(1250), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(269), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(277), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [55] = { - [sym_body] = STATE(3718), + [sym_body] = STATE(3138), [sym_comment] = STATE(55), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1470), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1500), [sym_include] = STATE(55), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym__procedure_terminator] = STATE(1500), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(229), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [56] = { - [sym_body] = STATE(3691), + [sym_body] = STATE(3329), [sym_comment] = STATE(56), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1183), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1447), [sym_include] = STATE(56), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym__function_terminator] = STATE(1195), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(281), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [57] = { - [sym_body] = STATE(3947), + [sym_body] = STATE(3969), [sym_comment] = STATE(57), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(921), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1050), [sym_include] = STATE(57), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [58] = { - [sym_body] = STATE(3980), + [sym_body] = STATE(3938), [sym_comment] = STATE(58), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1001), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1513), [sym_include] = STATE(58), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [59] = { - [sym_body] = STATE(3984), + [sym_body] = STATE(3677), [sym_comment] = STATE(59), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(839), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1418), [sym_include] = STATE(59), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [60] = { - [sym_body] = STATE(3985), + [sym_body] = STATE(3808), [sym_comment] = STATE(60), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(841), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3481), [sym_include] = STATE(60), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [61] = { - [sym_body] = STATE(3676), + [sym_body] = STATE(3795), [sym_comment] = STATE(61), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1206), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3479), [sym_include] = STATE(61), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [62] = { - [sym_body] = STATE(4044), + [sym_body] = STATE(3869), [sym_comment] = STATE(62), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(970), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1312), [sym_include] = STATE(62), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [63] = { - [sym_body] = STATE(3806), + [sym_body] = STATE(3743), [sym_comment] = STATE(63), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3242), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1005), [sym_include] = STATE(63), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [64] = { - [sym_body] = STATE(4053), + [sym_body] = STATE(3913), [sym_comment] = STATE(64), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(981), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1276), [sym_include] = STATE(64), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [65] = { - [sym_body] = STATE(3671), + [sym_body] = STATE(3751), [sym_comment] = STATE(65), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1191), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(866), [sym_include] = STATE(65), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [66] = { - [sym_body] = STATE(3670), + [sym_body] = STATE(3787), [sym_comment] = STATE(66), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1202), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3463), [sym_include] = STATE(66), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [67] = { - [sym_body] = STATE(3990), + [sym_body] = STATE(3630), [sym_comment] = STATE(67), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(848), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1455), [sym_include] = STATE(67), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [68] = { - [sym_body] = STATE(3602), + [sym_body] = STATE(3629), [sym_comment] = STATE(68), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1035), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1458), [sym_include] = STATE(68), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [69] = { - [sym_body] = STATE(3991), + [sym_body] = STATE(3786), [sym_comment] = STATE(69), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(835), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3439), [sym_include] = STATE(69), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [70] = { - [sym_body] = STATE(4054), + [sym_body] = STATE(3775), [sym_comment] = STATE(70), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(988), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3447), [sym_include] = STATE(70), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [71] = { - [sym_body] = STATE(3993), + [sym_body] = STATE(3642), [sym_comment] = STATE(71), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(855), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(852), [sym_include] = STATE(71), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [72] = { - [sym_body] = STATE(3976), + [sym_body] = STATE(3572), [sym_comment] = STATE(72), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1366), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(993), [sym_include] = STATE(72), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [73] = { - [sym_body] = STATE(3549), + [sym_body] = STATE(3763), [sym_comment] = STATE(73), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(955), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3437), [sym_include] = STATE(73), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [74] = { - [sym_body] = STATE(3994), + [sym_body] = STATE(3597), [sym_comment] = STATE(74), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(857), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1486), [sym_include] = STATE(74), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [75] = { - [sym_body] = STATE(3995), + [sym_body] = STATE(3668), [sym_comment] = STATE(75), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(854), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(857), [sym_include] = STATE(75), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [76] = { - [sym_body] = STATE(4000), + [sym_body] = STATE(3596), [sym_comment] = STATE(76), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(858), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1488), [sym_include] = STATE(76), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [77] = { - [sym_body] = STATE(3970), + [sym_body] = STATE(3759), [sym_comment] = STATE(77), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1368), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3435), [sym_include] = STATE(77), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [78] = { - [sym_body] = STATE(3740), + [sym_body] = STATE(3746), [sym_comment] = STATE(78), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3180), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3429), [sym_include] = STATE(78), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [79] = { - [sym_body] = STATE(3737), + [sym_body] = STATE(3739), [sym_comment] = STATE(79), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3220), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3420), [sym_include] = STATE(79), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [80] = { - [sym_body] = STATE(3954), + [sym_body] = STATE(3728), [sym_comment] = STATE(80), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1362), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3414), [sym_include] = STATE(80), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [81] = { - [sym_body] = STATE(3779), + [sym_body] = STATE(3727), [sym_comment] = STATE(81), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1507), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3411), [sym_include] = STATE(81), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [82] = { - [sym_body] = STATE(4002), + [sym_body] = STATE(3724), [sym_comment] = STATE(82), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(863), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3408), [sym_include] = STATE(82), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [83] = { - [sym_body] = STATE(3601), + [sym_body] = STATE(3719), [sym_comment] = STATE(83), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1279), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3400), [sym_include] = STATE(83), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [84] = { - [sym_body] = STATE(3535), + [sym_body] = STATE(3718), [sym_comment] = STATE(84), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(953), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3398), [sym_include] = STATE(84), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [85] = { - [sym_body] = STATE(3716), + [sym_body] = STATE(3715), [sym_comment] = STATE(85), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3214), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3397), [sym_include] = STATE(85), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [86] = { - [sym_body] = STATE(3707), + [sym_body] = STATE(3711), [sym_comment] = STATE(86), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1057), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3056), [sym_include] = STATE(86), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [87] = { - [sym_body] = STATE(4005), + [sym_body] = STATE(3710), [sym_comment] = STATE(87), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(865), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3392), [sym_include] = STATE(87), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [88] = { - [sym_body] = STATE(3715), + [sym_body] = STATE(3705), [sym_comment] = STATE(88), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1059), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(862), [sym_include] = STATE(88), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [89] = { - [sym_body] = STATE(4006), + [sym_body] = STATE(3874), [sym_comment] = STATE(89), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(870), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1185), [sym_include] = STATE(89), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [90] = { - [sym_body] = STATE(3793), + [sym_body] = STATE(3709), [sym_comment] = STATE(90), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3231), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(864), [sym_include] = STATE(90), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [91] = { - [sym_body] = STATE(4010), + [sym_body] = STATE(3815), [sym_comment] = STATE(91), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(871), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(923), [sym_include] = STATE(91), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [92] = { - [sym_body] = STATE(3579), + [sym_body] = STATE(3839), [sym_comment] = STATE(92), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1293), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(925), [sym_include] = STATE(92), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [93] = { - [sym_body] = STATE(3695), + [sym_body] = STATE(3579), [sym_comment] = STATE(93), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3206), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1509), [sym_include] = STATE(93), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [94] = { - [sym_body] = STATE(3723), + [sym_body] = STATE(4065), [sym_comment] = STATE(94), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1065), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1149), [sym_include] = STATE(94), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [95] = { - [sym_body] = STATE(3951), + [sym_body] = STATE(3699), [sym_comment] = STATE(95), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1343), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3391), [sym_include] = STATE(95), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [96] = { - [sym_body] = STATE(3802), + [sym_body] = STATE(3676), [sym_comment] = STATE(96), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1486), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3387), [sym_include] = STATE(96), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [97] = { - [sym_body] = STATE(3619), + [sym_body] = STATE(3998), [sym_comment] = STATE(97), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1050), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1182), [sym_include] = STATE(97), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [98] = { - [sym_body] = STATE(4035), + [sym_body] = STATE(4020), [sym_comment] = STATE(98), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1012), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1223), [sym_include] = STATE(98), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [99] = { - [sym_body] = STATE(4012), + [sym_body] = STATE(3731), [sym_comment] = STATE(99), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(881), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(876), [sym_include] = STATE(99), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [100] = { - [sym_body] = STATE(4013), + [sym_body] = STATE(4037), [sym_comment] = STATE(100), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(885), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1258), [sym_include] = STATE(100), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [101] = { - [sym_body] = STATE(3996), + [sym_body] = STATE(3879), [sym_comment] = STATE(101), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1376), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1428), [sym_include] = STATE(101), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [102] = { - [sym_body] = STATE(4017), + [sym_body] = STATE(3900), [sym_comment] = STATE(102), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(892), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1421), [sym_include] = STATE(102), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [103] = { - [sym_body] = STATE(4020), + [sym_body] = STATE(3745), [sym_comment] = STATE(103), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(898), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(883), [sym_include] = STATE(103), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [104] = { - [sym_body] = STATE(3923), + [sym_body] = STATE(3831), [sym_comment] = STATE(104), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3286), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3495), [sym_include] = STATE(104), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [105] = { - [sym_body] = STATE(3868), + [sym_body] = STATE(3833), [sym_comment] = STATE(105), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3267), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3498), [sym_include] = STATE(105), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [106] = { - [sym_body] = STATE(3694), + [sym_body] = STATE(3752), [sym_comment] = STATE(106), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1398), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(887), [sym_include] = STATE(106), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [107] = { - [sym_body] = STATE(3933), + [sym_body] = STATE(3674), [sym_comment] = STATE(107), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1294), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3390), [sym_include] = STATE(107), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [108] = { - [sym_body] = STATE(3889), + [sym_body] = STATE(3670), [sym_comment] = STATE(108), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1160), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3388), [sym_include] = STATE(108), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [109] = { - [sym_body] = STATE(3801), + [sym_body] = STATE(3577), [sym_comment] = STATE(109), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1484), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1028), [sym_include] = STATE(109), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [110] = { - [sym_body] = STATE(4009), + [sym_body] = STATE(3883), [sym_comment] = STATE(110), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1014), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(943), [sym_include] = STATE(110), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [111] = { - [sym_body] = STATE(3730), + [sym_body] = STATE(3662), [sym_comment] = STATE(111), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1356), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3382), [sym_include] = STATE(111), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [112] = { - [sym_body] = STATE(3572), + [sym_body] = STATE(3659), [sym_comment] = STATE(112), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1000), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1355), [sym_include] = STATE(112), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [113] = { - [sym_body] = STATE(3898), + [sym_body] = STATE(3961), [sym_comment] = STATE(113), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1267), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1372), [sym_include] = STATE(113), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [114] = { - [sym_body] = STATE(3532), + [sym_body] = STATE(4068), [sym_comment] = STATE(114), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1205), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1389), [sym_include] = STATE(114), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [115] = { - [sym_body] = STATE(3672), + [sym_body] = STATE(3888), [sym_comment] = STATE(115), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3200), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(952), [sym_include] = STATE(115), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [116] = { - [sym_body] = STATE(3561), + [sym_body] = STATE(3765), [sym_comment] = STATE(116), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1363), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(899), [sym_include] = STATE(116), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [117] = { + [sym_body] = STATE(4047), [sym_comment] = STATE(117), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1134), [sym_include] = STATE(117), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(287), - [sym__terminator] = ACTIONS(289), - [anon_sym_LPAREN] = ACTIONS(289), - [anon_sym_RPAREN] = ACTIONS(289), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(293), - [anon_sym_LT_EQ] = ACTIONS(289), - [anon_sym_LT_GT] = ACTIONS(289), - [anon_sym_EQ] = ACTIONS(289), - [anon_sym_GT] = ACTIONS(293), - [anon_sym_GT_EQ] = ACTIONS(289), - [aux_sym__comparison_operator_token1] = ACTIONS(289), - [aux_sym__comparison_operator_token2] = ACTIONS(289), - [aux_sym__comparison_operator_token3] = ACTIONS(289), - [aux_sym__comparison_operator_token4] = ACTIONS(289), - [aux_sym__comparison_operator_token5] = ACTIONS(289), - [aux_sym__comparison_operator_token6] = ACTIONS(289), - [aux_sym__comparison_operator_token7] = ACTIONS(289), - [aux_sym__comparison_operator_token8] = ACTIONS(289), - [aux_sym__comparison_operator_token9] = ACTIONS(289), - [aux_sym_variable_tuning_token1] = ACTIONS(289), - [aux_sym_variable_tuning_token2] = ACTIONS(289), - [aux_sym_variable_tuning_token3] = ACTIONS(289), - [aux_sym_variable_tuning_token4] = ACTIONS(289), - [aux_sym_variable_tuning_token5] = ACTIONS(289), - [aux_sym_variable_tuning_token6] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(289), - [aux_sym_if_statement_token2] = ACTIONS(289), - [aux_sym_else_if_statement_token1] = ACTIONS(289), - [anon_sym_COLON] = ACTIONS(289), - [aux_sym_while_phrase_token1] = ACTIONS(289), - [aux_sym_property_tuning_token1] = ACTIONS(289), - [aux_sym_event_definition_token1] = ACTIONS(289), - [aux_sym_input_stream_tuning_token1] = ACTIONS(289), - [aux_sym_input_stream_tuning_token2] = ACTIONS(289), - [aux_sym_input_stream_tuning_token3] = ACTIONS(289), - [aux_sym_input_stream_tuning_token4] = ACTIONS(289), - [aux_sym_input_stream_tuning_token5] = ACTIONS(289), - [aux_sym_input_stream_tuning_token6] = ACTIONS(289), - [aux_sym_input_stream_tuning_token7] = ACTIONS(289), - [aux_sym_input_stream_tuning_token8] = ACTIONS(289), - [aux_sym_input_stream_tuning_token9] = ACTIONS(289), - [aux_sym_input_stream_tuning_token11] = ACTIONS(289), - [aux_sym_output_stream_tuning_token1] = ACTIONS(289), - [aux_sym_output_stream_tuning_token2] = ACTIONS(289), - [aux_sym_output_stream_tuning_token3] = ACTIONS(289), - [aux_sym_output_stream_tuning_token4] = ACTIONS(289), - [aux_sym_output_stream_tuning_token5] = ACTIONS(289), - [aux_sym_output_stream_tuning_token6] = ACTIONS(289), - [aux_sym_output_stream_tuning_token7] = ACTIONS(289), - [aux_sym_output_stream_tuning_token8] = ACTIONS(289), - [aux_sym_output_stream_statement_token1] = ACTIONS(289), - [aux_sym_on_error_phrase_token1] = ACTIONS(289), - [aux_sym_stop_after_phrase_token1] = ACTIONS(289), - [aux_sym_do_tuning_token1] = ACTIONS(289), - [anon_sym_BY] = ACTIONS(289), - [aux_sym_of_token1] = ACTIONS(289), - [aux_sym_field_definition_token1] = ACTIONS(289), - [aux_sym_index_definition_token1] = ACTIONS(289), - [aux_sym_on_statement_token1] = ACTIONS(289), - [sym__or_operator] = ACTIONS(289), - [sym__and_operator] = ACTIONS(289), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [118] = { - [sym_body] = STATE(4015), + [sym_body] = STATE(3907), [sym_comment] = STATE(118), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1330), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(961), [sym_include] = STATE(118), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [119] = { - [sym_body] = STATE(3659), + [sym_body] = STATE(3784), [sym_comment] = STATE(119), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3198), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(901), [sym_include] = STATE(119), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [120] = { - [sym_body] = STATE(3862), [sym_comment] = STATE(120), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1225), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), [sym_include] = STATE(120), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), - }, - [121] = { - [sym_comment] = STATE(121), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), - [sym_include] = STATE(121), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(295), + [anon_sym_SLASH] = ACTIONS(293), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(297), - [sym__terminator] = ACTIONS(297), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_RPAREN] = ACTIONS(297), + [anon_sym_STAR] = ACTIONS(295), + [sym__terminator] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(297), [anon_sym_DASH] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(295), - [anon_sym_LT_EQ] = ACTIONS(297), - [anon_sym_LT_GT] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(295), - [anon_sym_GT_EQ] = ACTIONS(297), - [aux_sym__comparison_operator_token1] = ACTIONS(297), - [aux_sym__comparison_operator_token2] = ACTIONS(297), - [aux_sym__comparison_operator_token3] = ACTIONS(297), - [aux_sym__comparison_operator_token4] = ACTIONS(297), - [aux_sym__comparison_operator_token5] = ACTIONS(297), - [aux_sym__comparison_operator_token6] = ACTIONS(297), - [aux_sym__comparison_operator_token7] = ACTIONS(297), - [aux_sym__comparison_operator_token8] = ACTIONS(297), - [aux_sym__comparison_operator_token9] = ACTIONS(297), - [aux_sym_variable_tuning_token1] = ACTIONS(297), - [aux_sym_variable_tuning_token2] = ACTIONS(297), - [aux_sym_variable_tuning_token3] = ACTIONS(297), - [aux_sym_variable_tuning_token4] = ACTIONS(297), - [aux_sym_variable_tuning_token5] = ACTIONS(297), - [aux_sym_variable_tuning_token6] = ACTIONS(297), - [anon_sym_COMMA] = ACTIONS(297), - [aux_sym_if_statement_token2] = ACTIONS(297), - [aux_sym_else_if_statement_token1] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(297), - [aux_sym_while_phrase_token1] = ACTIONS(297), - [aux_sym_property_tuning_token1] = ACTIONS(297), - [aux_sym_event_definition_token1] = ACTIONS(297), - [aux_sym_input_stream_tuning_token1] = ACTIONS(297), - [aux_sym_input_stream_tuning_token2] = ACTIONS(297), - [aux_sym_input_stream_tuning_token3] = ACTIONS(297), - [aux_sym_input_stream_tuning_token4] = ACTIONS(297), - [aux_sym_input_stream_tuning_token5] = ACTIONS(297), - [aux_sym_input_stream_tuning_token6] = ACTIONS(297), - [aux_sym_input_stream_tuning_token7] = ACTIONS(297), - [aux_sym_input_stream_tuning_token8] = ACTIONS(297), - [aux_sym_input_stream_tuning_token9] = ACTIONS(297), - [aux_sym_input_stream_tuning_token11] = ACTIONS(297), - [aux_sym_output_stream_tuning_token1] = ACTIONS(297), - [aux_sym_output_stream_tuning_token2] = ACTIONS(297), - [aux_sym_output_stream_tuning_token3] = ACTIONS(297), - [aux_sym_output_stream_tuning_token4] = ACTIONS(297), - [aux_sym_output_stream_tuning_token5] = ACTIONS(297), - [aux_sym_output_stream_tuning_token6] = ACTIONS(297), - [aux_sym_output_stream_tuning_token7] = ACTIONS(297), - [aux_sym_output_stream_tuning_token8] = ACTIONS(297), - [aux_sym_output_stream_statement_token1] = ACTIONS(297), - [aux_sym_on_error_phrase_token1] = ACTIONS(297), - [aux_sym_stop_after_phrase_token1] = ACTIONS(297), - [aux_sym_do_tuning_token1] = ACTIONS(297), - [anon_sym_BY] = ACTIONS(297), - [aux_sym_of_token1] = ACTIONS(297), - [aux_sym_field_definition_token1] = ACTIONS(297), - [aux_sym_index_definition_token1] = ACTIONS(297), - [aux_sym_on_statement_token1] = ACTIONS(297), - [sym__or_operator] = ACTIONS(297), - [sym__and_operator] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(301), + [anon_sym_LT_GT] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(301), + [aux_sym__comparison_operator_token1] = ACTIONS(301), + [aux_sym__comparison_operator_token2] = ACTIONS(301), + [aux_sym__comparison_operator_token3] = ACTIONS(301), + [aux_sym__comparison_operator_token4] = ACTIONS(301), + [aux_sym__comparison_operator_token5] = ACTIONS(301), + [aux_sym__comparison_operator_token6] = ACTIONS(301), + [aux_sym__comparison_operator_token7] = ACTIONS(301), + [aux_sym__comparison_operator_token8] = ACTIONS(301), + [aux_sym__comparison_operator_token9] = ACTIONS(301), + [aux_sym_variable_tuning_token1] = ACTIONS(161), + [aux_sym_variable_tuning_token2] = ACTIONS(161), + [aux_sym_variable_tuning_token3] = ACTIONS(161), + [aux_sym_variable_tuning_token4] = ACTIONS(161), + [aux_sym_variable_tuning_token5] = ACTIONS(161), + [aux_sym_variable_tuning_token6] = ACTIONS(161), + [anon_sym_COMMA] = ACTIONS(161), + [aux_sym_if_statement_token2] = ACTIONS(161), + [aux_sym_else_if_statement_token1] = ACTIONS(161), + [anon_sym_COLON] = ACTIONS(161), + [aux_sym_while_phrase_token1] = ACTIONS(161), + [aux_sym_property_tuning_token1] = ACTIONS(161), + [aux_sym_event_definition_token1] = ACTIONS(161), + [aux_sym_input_stream_tuning_token1] = ACTIONS(161), + [aux_sym_input_stream_tuning_token2] = ACTIONS(161), + [aux_sym_input_stream_tuning_token3] = ACTIONS(161), + [aux_sym_input_stream_tuning_token4] = ACTIONS(161), + [aux_sym_input_stream_tuning_token5] = ACTIONS(161), + [aux_sym_input_stream_tuning_token6] = ACTIONS(161), + [aux_sym_input_stream_tuning_token7] = ACTIONS(161), + [aux_sym_input_stream_tuning_token8] = ACTIONS(161), + [aux_sym_input_stream_tuning_token9] = ACTIONS(161), + [aux_sym_input_stream_tuning_token11] = ACTIONS(161), + [aux_sym_output_stream_tuning_token1] = ACTIONS(161), + [aux_sym_output_stream_tuning_token2] = ACTIONS(161), + [aux_sym_output_stream_tuning_token3] = ACTIONS(161), + [aux_sym_output_stream_tuning_token4] = ACTIONS(161), + [aux_sym_output_stream_tuning_token5] = ACTIONS(161), + [aux_sym_output_stream_tuning_token6] = ACTIONS(161), + [aux_sym_output_stream_tuning_token7] = ACTIONS(161), + [aux_sym_output_stream_tuning_token8] = ACTIONS(161), + [aux_sym_output_stream_statement_token1] = ACTIONS(161), + [aux_sym_on_error_phrase_token1] = ACTIONS(161), + [aux_sym_stop_after_phrase_token1] = ACTIONS(161), + [aux_sym_do_tuning_token1] = ACTIONS(161), + [anon_sym_BY] = ACTIONS(161), + [aux_sym_of_token1] = ACTIONS(161), + [aux_sym_field_definition_token1] = ACTIONS(161), + [aux_sym_index_definition_token1] = ACTIONS(161), + [aux_sym_on_statement_token1] = ACTIONS(161), + [sym__or_operator] = ACTIONS(161), + [sym__and_operator] = ACTIONS(161), + }, + [121] = { + [sym_body] = STATE(3698), + [sym_comment] = STATE(121), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1384), + [sym_include] = STATE(121), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [122] = { - [sym_body] = STATE(3847), + [sym_body] = STATE(3997), [sym_comment] = STATE(122), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3264), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1345), [sym_include] = STATE(122), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [123] = { - [sym_body] = STATE(3746), [sym_comment] = STATE(123), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1425), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), [sym_include] = STATE(123), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(295), + [sym__terminator] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_RPAREN] = ACTIONS(303), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(301), + [anon_sym_LT_GT] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(301), + [aux_sym__comparison_operator_token1] = ACTIONS(301), + [aux_sym__comparison_operator_token2] = ACTIONS(301), + [aux_sym__comparison_operator_token3] = ACTIONS(301), + [aux_sym__comparison_operator_token4] = ACTIONS(301), + [aux_sym__comparison_operator_token5] = ACTIONS(301), + [aux_sym__comparison_operator_token6] = ACTIONS(301), + [aux_sym__comparison_operator_token7] = ACTIONS(301), + [aux_sym__comparison_operator_token8] = ACTIONS(301), + [aux_sym__comparison_operator_token9] = ACTIONS(301), + [aux_sym_variable_tuning_token1] = ACTIONS(303), + [aux_sym_variable_tuning_token2] = ACTIONS(303), + [aux_sym_variable_tuning_token3] = ACTIONS(303), + [aux_sym_variable_tuning_token4] = ACTIONS(303), + [aux_sym_variable_tuning_token5] = ACTIONS(303), + [aux_sym_variable_tuning_token6] = ACTIONS(303), + [anon_sym_COMMA] = ACTIONS(303), + [aux_sym_if_statement_token2] = ACTIONS(303), + [aux_sym_else_if_statement_token1] = ACTIONS(303), + [anon_sym_COLON] = ACTIONS(303), + [aux_sym_while_phrase_token1] = ACTIONS(303), + [aux_sym_property_tuning_token1] = ACTIONS(303), + [aux_sym_event_definition_token1] = ACTIONS(303), + [aux_sym_input_stream_tuning_token1] = ACTIONS(303), + [aux_sym_input_stream_tuning_token2] = ACTIONS(303), + [aux_sym_input_stream_tuning_token3] = ACTIONS(303), + [aux_sym_input_stream_tuning_token4] = ACTIONS(303), + [aux_sym_input_stream_tuning_token5] = ACTIONS(303), + [aux_sym_input_stream_tuning_token6] = ACTIONS(303), + [aux_sym_input_stream_tuning_token7] = ACTIONS(303), + [aux_sym_input_stream_tuning_token8] = ACTIONS(303), + [aux_sym_input_stream_tuning_token9] = ACTIONS(303), + [aux_sym_input_stream_tuning_token11] = ACTIONS(303), + [aux_sym_output_stream_tuning_token1] = ACTIONS(303), + [aux_sym_output_stream_tuning_token2] = ACTIONS(303), + [aux_sym_output_stream_tuning_token3] = ACTIONS(303), + [aux_sym_output_stream_tuning_token4] = ACTIONS(303), + [aux_sym_output_stream_tuning_token5] = ACTIONS(303), + [aux_sym_output_stream_tuning_token6] = ACTIONS(303), + [aux_sym_output_stream_tuning_token7] = ACTIONS(303), + [aux_sym_output_stream_tuning_token8] = ACTIONS(303), + [aux_sym_output_stream_statement_token1] = ACTIONS(303), + [aux_sym_on_error_phrase_token1] = ACTIONS(303), + [aux_sym_stop_after_phrase_token1] = ACTIONS(303), + [aux_sym_do_tuning_token1] = ACTIONS(303), + [anon_sym_BY] = ACTIONS(303), + [aux_sym_of_token1] = ACTIONS(303), + [aux_sym_field_definition_token1] = ACTIONS(303), + [aux_sym_index_definition_token1] = ACTIONS(303), + [aux_sym_on_statement_token1] = ACTIONS(303), + [sym__or_operator] = ACTIONS(305), + [sym__and_operator] = ACTIONS(305), }, [124] = { - [sym_body] = STATE(3958), + [sym_body] = STATE(4030), [sym_comment] = STATE(124), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1042), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1139), [sym_include] = STATE(124), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [125] = { [sym_comment] = STATE(125), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), [sym_include] = STATE(125), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(293), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(287), - [sym__terminator] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(299), - [anon_sym_RPAREN] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_LT] = ACTIONS(301), - [anon_sym_LT_EQ] = ACTIONS(299), - [anon_sym_LT_GT] = ACTIONS(299), - [anon_sym_EQ] = ACTIONS(299), - [anon_sym_GT] = ACTIONS(301), - [anon_sym_GT_EQ] = ACTIONS(299), - [aux_sym__comparison_operator_token1] = ACTIONS(299), - [aux_sym__comparison_operator_token2] = ACTIONS(299), - [aux_sym__comparison_operator_token3] = ACTIONS(299), - [aux_sym__comparison_operator_token4] = ACTIONS(299), - [aux_sym__comparison_operator_token5] = ACTIONS(299), - [aux_sym__comparison_operator_token6] = ACTIONS(299), - [aux_sym__comparison_operator_token7] = ACTIONS(299), - [aux_sym__comparison_operator_token8] = ACTIONS(299), - [aux_sym__comparison_operator_token9] = ACTIONS(299), - [aux_sym_variable_tuning_token1] = ACTIONS(299), - [aux_sym_variable_tuning_token2] = ACTIONS(299), - [aux_sym_variable_tuning_token3] = ACTIONS(299), - [aux_sym_variable_tuning_token4] = ACTIONS(299), - [aux_sym_variable_tuning_token5] = ACTIONS(299), - [aux_sym_variable_tuning_token6] = ACTIONS(299), - [anon_sym_COMMA] = ACTIONS(299), - [aux_sym_if_statement_token2] = ACTIONS(299), - [aux_sym_else_if_statement_token1] = ACTIONS(299), - [anon_sym_COLON] = ACTIONS(299), - [aux_sym_while_phrase_token1] = ACTIONS(299), - [aux_sym_property_tuning_token1] = ACTIONS(299), - [aux_sym_event_definition_token1] = ACTIONS(299), - [aux_sym_input_stream_tuning_token1] = ACTIONS(299), - [aux_sym_input_stream_tuning_token2] = ACTIONS(299), - [aux_sym_input_stream_tuning_token3] = ACTIONS(299), - [aux_sym_input_stream_tuning_token4] = ACTIONS(299), - [aux_sym_input_stream_tuning_token5] = ACTIONS(299), - [aux_sym_input_stream_tuning_token6] = ACTIONS(299), - [aux_sym_input_stream_tuning_token7] = ACTIONS(299), - [aux_sym_input_stream_tuning_token8] = ACTIONS(299), - [aux_sym_input_stream_tuning_token9] = ACTIONS(299), - [aux_sym_input_stream_tuning_token11] = ACTIONS(299), - [aux_sym_output_stream_tuning_token1] = ACTIONS(299), - [aux_sym_output_stream_tuning_token2] = ACTIONS(299), - [aux_sym_output_stream_tuning_token3] = ACTIONS(299), - [aux_sym_output_stream_tuning_token4] = ACTIONS(299), - [aux_sym_output_stream_tuning_token5] = ACTIONS(299), - [aux_sym_output_stream_tuning_token6] = ACTIONS(299), - [aux_sym_output_stream_tuning_token7] = ACTIONS(299), - [aux_sym_output_stream_tuning_token8] = ACTIONS(299), - [aux_sym_output_stream_statement_token1] = ACTIONS(299), - [aux_sym_on_error_phrase_token1] = ACTIONS(299), - [aux_sym_stop_after_phrase_token1] = ACTIONS(299), - [aux_sym_do_tuning_token1] = ACTIONS(299), - [anon_sym_BY] = ACTIONS(299), - [aux_sym_of_token1] = ACTIONS(299), - [aux_sym_field_definition_token1] = ACTIONS(299), - [aux_sym_index_definition_token1] = ACTIONS(299), - [aux_sym_on_statement_token1] = ACTIONS(299), - [sym__or_operator] = ACTIONS(299), - [sym__and_operator] = ACTIONS(299), + [anon_sym_STAR] = ACTIONS(295), + [sym__terminator] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(307), + [anon_sym_RPAREN] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(301), + [anon_sym_LT_GT] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(301), + [aux_sym__comparison_operator_token1] = ACTIONS(301), + [aux_sym__comparison_operator_token2] = ACTIONS(301), + [aux_sym__comparison_operator_token3] = ACTIONS(301), + [aux_sym__comparison_operator_token4] = ACTIONS(301), + [aux_sym__comparison_operator_token5] = ACTIONS(301), + [aux_sym__comparison_operator_token6] = ACTIONS(301), + [aux_sym__comparison_operator_token7] = ACTIONS(301), + [aux_sym__comparison_operator_token8] = ACTIONS(301), + [aux_sym__comparison_operator_token9] = ACTIONS(301), + [aux_sym_variable_tuning_token1] = ACTIONS(307), + [aux_sym_variable_tuning_token2] = ACTIONS(307), + [aux_sym_variable_tuning_token3] = ACTIONS(307), + [aux_sym_variable_tuning_token4] = ACTIONS(307), + [aux_sym_variable_tuning_token5] = ACTIONS(307), + [aux_sym_variable_tuning_token6] = ACTIONS(307), + [anon_sym_COMMA] = ACTIONS(307), + [aux_sym_if_statement_token2] = ACTIONS(307), + [aux_sym_else_if_statement_token1] = ACTIONS(307), + [anon_sym_COLON] = ACTIONS(307), + [aux_sym_while_phrase_token1] = ACTIONS(307), + [aux_sym_property_tuning_token1] = ACTIONS(307), + [aux_sym_event_definition_token1] = ACTIONS(307), + [aux_sym_input_stream_tuning_token1] = ACTIONS(307), + [aux_sym_input_stream_tuning_token2] = ACTIONS(307), + [aux_sym_input_stream_tuning_token3] = ACTIONS(307), + [aux_sym_input_stream_tuning_token4] = ACTIONS(307), + [aux_sym_input_stream_tuning_token5] = ACTIONS(307), + [aux_sym_input_stream_tuning_token6] = ACTIONS(307), + [aux_sym_input_stream_tuning_token7] = ACTIONS(307), + [aux_sym_input_stream_tuning_token8] = ACTIONS(307), + [aux_sym_input_stream_tuning_token9] = ACTIONS(307), + [aux_sym_input_stream_tuning_token11] = ACTIONS(307), + [aux_sym_output_stream_tuning_token1] = ACTIONS(307), + [aux_sym_output_stream_tuning_token2] = ACTIONS(307), + [aux_sym_output_stream_tuning_token3] = ACTIONS(307), + [aux_sym_output_stream_tuning_token4] = ACTIONS(307), + [aux_sym_output_stream_tuning_token5] = ACTIONS(307), + [aux_sym_output_stream_tuning_token6] = ACTIONS(307), + [aux_sym_output_stream_tuning_token7] = ACTIONS(307), + [aux_sym_output_stream_tuning_token8] = ACTIONS(307), + [aux_sym_output_stream_statement_token1] = ACTIONS(307), + [aux_sym_on_error_phrase_token1] = ACTIONS(307), + [aux_sym_stop_after_phrase_token1] = ACTIONS(307), + [aux_sym_do_tuning_token1] = ACTIONS(307), + [anon_sym_BY] = ACTIONS(307), + [aux_sym_of_token1] = ACTIONS(307), + [aux_sym_field_definition_token1] = ACTIONS(307), + [aux_sym_index_definition_token1] = ACTIONS(307), + [aux_sym_on_statement_token1] = ACTIONS(307), + [sym__or_operator] = ACTIONS(305), + [sym__and_operator] = ACTIONS(305), }, [126] = { - [sym_body] = STATE(3649), [sym_comment] = STATE(126), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3193), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), [sym_include] = STATE(126), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(295), + [sym__terminator] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(301), + [anon_sym_LT_GT] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(301), + [aux_sym__comparison_operator_token1] = ACTIONS(301), + [aux_sym__comparison_operator_token2] = ACTIONS(301), + [aux_sym__comparison_operator_token3] = ACTIONS(301), + [aux_sym__comparison_operator_token4] = ACTIONS(301), + [aux_sym__comparison_operator_token5] = ACTIONS(301), + [aux_sym__comparison_operator_token6] = ACTIONS(301), + [aux_sym__comparison_operator_token7] = ACTIONS(301), + [aux_sym__comparison_operator_token8] = ACTIONS(301), + [aux_sym__comparison_operator_token9] = ACTIONS(301), + [aux_sym_variable_tuning_token1] = ACTIONS(309), + [aux_sym_variable_tuning_token2] = ACTIONS(309), + [aux_sym_variable_tuning_token3] = ACTIONS(309), + [aux_sym_variable_tuning_token4] = ACTIONS(309), + [aux_sym_variable_tuning_token5] = ACTIONS(309), + [aux_sym_variable_tuning_token6] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(309), + [aux_sym_if_statement_token2] = ACTIONS(309), + [aux_sym_else_if_statement_token1] = ACTIONS(309), + [anon_sym_COLON] = ACTIONS(309), + [aux_sym_while_phrase_token1] = ACTIONS(309), + [aux_sym_property_tuning_token1] = ACTIONS(309), + [aux_sym_event_definition_token1] = ACTIONS(309), + [aux_sym_input_stream_tuning_token1] = ACTIONS(309), + [aux_sym_input_stream_tuning_token2] = ACTIONS(309), + [aux_sym_input_stream_tuning_token3] = ACTIONS(309), + [aux_sym_input_stream_tuning_token4] = ACTIONS(309), + [aux_sym_input_stream_tuning_token5] = ACTIONS(309), + [aux_sym_input_stream_tuning_token6] = ACTIONS(309), + [aux_sym_input_stream_tuning_token7] = ACTIONS(309), + [aux_sym_input_stream_tuning_token8] = ACTIONS(309), + [aux_sym_input_stream_tuning_token9] = ACTIONS(309), + [aux_sym_input_stream_tuning_token11] = ACTIONS(309), + [aux_sym_output_stream_tuning_token1] = ACTIONS(309), + [aux_sym_output_stream_tuning_token2] = ACTIONS(309), + [aux_sym_output_stream_tuning_token3] = ACTIONS(309), + [aux_sym_output_stream_tuning_token4] = ACTIONS(309), + [aux_sym_output_stream_tuning_token5] = ACTIONS(309), + [aux_sym_output_stream_tuning_token6] = ACTIONS(309), + [aux_sym_output_stream_tuning_token7] = ACTIONS(309), + [aux_sym_output_stream_tuning_token8] = ACTIONS(309), + [aux_sym_output_stream_statement_token1] = ACTIONS(309), + [aux_sym_on_error_phrase_token1] = ACTIONS(309), + [aux_sym_stop_after_phrase_token1] = ACTIONS(309), + [aux_sym_do_tuning_token1] = ACTIONS(309), + [anon_sym_BY] = ACTIONS(309), + [aux_sym_of_token1] = ACTIONS(309), + [aux_sym_field_definition_token1] = ACTIONS(309), + [aux_sym_index_definition_token1] = ACTIONS(309), + [aux_sym_on_statement_token1] = ACTIONS(309), + [sym__or_operator] = ACTIONS(305), + [sym__and_operator] = ACTIONS(305), }, [127] = { - [sym_body] = STATE(3971), + [sym_body] = STATE(3841), [sym_comment] = STATE(127), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1299), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(916), [sym_include] = STATE(127), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [128] = { - [sym_body] = STATE(4024), + [sym_body] = STATE(3846), [sym_comment] = STATE(128), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(919), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(918), [sym_include] = STATE(128), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [129] = { - [sym_body] = STATE(3880), + [sym_body] = STATE(3812), [sym_comment] = STATE(129), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1272), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1533), [sym_include] = STATE(129), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [130] = { - [sym_body] = STATE(3631), + [sym_body] = STATE(3599), [sym_comment] = STATE(130), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1409), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1075), [sym_include] = STATE(130), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [131] = { - [sym_body] = STATE(3637), + [sym_body] = STATE(3911), [sym_comment] = STATE(131), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1411), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1065), [sym_include] = STATE(131), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [132] = { - [sym_body] = STATE(3638), + [sym_body] = STATE(3681), [sym_comment] = STATE(132), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1413), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1414), [sym_include] = STATE(132), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [133] = { - [sym_body] = STATE(3578), + [sym_body] = STATE(3916), [sym_comment] = STATE(133), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1419), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1007), [sym_include] = STATE(133), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [134] = { + [sym_body] = STATE(3920), [sym_comment] = STATE(134), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1062), [sym_include] = STATE(134), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(287), - [sym__terminator] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(303), - [anon_sym_RPAREN] = ACTIONS(303), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(307), - [anon_sym_LT_GT] = ACTIONS(307), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(307), - [aux_sym__comparison_operator_token1] = ACTIONS(307), - [aux_sym__comparison_operator_token2] = ACTIONS(307), - [aux_sym__comparison_operator_token3] = ACTIONS(307), - [aux_sym__comparison_operator_token4] = ACTIONS(307), - [aux_sym__comparison_operator_token5] = ACTIONS(307), - [aux_sym__comparison_operator_token6] = ACTIONS(307), - [aux_sym__comparison_operator_token7] = ACTIONS(307), - [aux_sym__comparison_operator_token8] = ACTIONS(307), - [aux_sym__comparison_operator_token9] = ACTIONS(307), - [aux_sym_variable_tuning_token1] = ACTIONS(303), - [aux_sym_variable_tuning_token2] = ACTIONS(303), - [aux_sym_variable_tuning_token3] = ACTIONS(303), - [aux_sym_variable_tuning_token4] = ACTIONS(303), - [aux_sym_variable_tuning_token5] = ACTIONS(303), - [aux_sym_variable_tuning_token6] = ACTIONS(303), - [anon_sym_COMMA] = ACTIONS(303), - [aux_sym_if_statement_token2] = ACTIONS(303), - [aux_sym_else_if_statement_token1] = ACTIONS(303), - [anon_sym_COLON] = ACTIONS(303), - [aux_sym_while_phrase_token1] = ACTIONS(303), - [aux_sym_property_tuning_token1] = ACTIONS(303), - [aux_sym_event_definition_token1] = ACTIONS(303), - [aux_sym_input_stream_tuning_token1] = ACTIONS(303), - [aux_sym_input_stream_tuning_token2] = ACTIONS(303), - [aux_sym_input_stream_tuning_token3] = ACTIONS(303), - [aux_sym_input_stream_tuning_token4] = ACTIONS(303), - [aux_sym_input_stream_tuning_token5] = ACTIONS(303), - [aux_sym_input_stream_tuning_token6] = ACTIONS(303), - [aux_sym_input_stream_tuning_token7] = ACTIONS(303), - [aux_sym_input_stream_tuning_token8] = ACTIONS(303), - [aux_sym_input_stream_tuning_token9] = ACTIONS(303), - [aux_sym_input_stream_tuning_token11] = ACTIONS(303), - [aux_sym_output_stream_tuning_token1] = ACTIONS(303), - [aux_sym_output_stream_tuning_token2] = ACTIONS(303), - [aux_sym_output_stream_tuning_token3] = ACTIONS(303), - [aux_sym_output_stream_tuning_token4] = ACTIONS(303), - [aux_sym_output_stream_tuning_token5] = ACTIONS(303), - [aux_sym_output_stream_tuning_token6] = ACTIONS(303), - [aux_sym_output_stream_tuning_token7] = ACTIONS(303), - [aux_sym_output_stream_tuning_token8] = ACTIONS(303), - [aux_sym_output_stream_statement_token1] = ACTIONS(303), - [aux_sym_on_error_phrase_token1] = ACTIONS(303), - [aux_sym_stop_after_phrase_token1] = ACTIONS(303), - [aux_sym_do_tuning_token1] = ACTIONS(303), - [anon_sym_BY] = ACTIONS(303), - [aux_sym_of_token1] = ACTIONS(303), - [aux_sym_field_definition_token1] = ACTIONS(303), - [aux_sym_index_definition_token1] = ACTIONS(303), - [aux_sym_on_statement_token1] = ACTIONS(303), - [sym__or_operator] = ACTIONS(309), - [sym__and_operator] = ACTIONS(309), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [135] = { + [sym_body] = STATE(3595), [sym_comment] = STATE(135), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(846), [sym_include] = STATE(135), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), + }, + [136] = { + [sym_body] = STATE(4022), + [sym_comment] = STATE(136), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1252), + [sym_include] = STATE(136), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), + }, + [137] = { + [sym_body] = STATE(3571), + [sym_comment] = STATE(137), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(906), + [sym_include] = STATE(137), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), + }, + [138] = { + [sym_body] = STATE(3657), + [sym_comment] = STATE(138), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3378), + [sym_include] = STATE(138), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), + }, + [139] = { + [sym_body] = STATE(3927), + [sym_comment] = STATE(139), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1061), + [sym_include] = STATE(139), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), + }, + [140] = { + [sym_body] = STATE(3930), + [sym_comment] = STATE(140), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1060), + [sym_include] = STATE(140), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), + }, + [141] = { + [sym_comment] = STATE(141), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), + [sym_include] = STATE(141), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(293), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(295), [sym__terminator] = ACTIONS(311), [anon_sym_LPAREN] = ACTIONS(311), [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(307), - [anon_sym_LT_GT] = ACTIONS(307), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(307), - [aux_sym__comparison_operator_token1] = ACTIONS(307), - [aux_sym__comparison_operator_token2] = ACTIONS(307), - [aux_sym__comparison_operator_token3] = ACTIONS(307), - [aux_sym__comparison_operator_token4] = ACTIONS(307), - [aux_sym__comparison_operator_token5] = ACTIONS(307), - [aux_sym__comparison_operator_token6] = ACTIONS(307), - [aux_sym__comparison_operator_token7] = ACTIONS(307), - [aux_sym__comparison_operator_token8] = ACTIONS(307), - [aux_sym__comparison_operator_token9] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(301), + [anon_sym_LT_GT] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(301), + [aux_sym__comparison_operator_token1] = ACTIONS(301), + [aux_sym__comparison_operator_token2] = ACTIONS(301), + [aux_sym__comparison_operator_token3] = ACTIONS(301), + [aux_sym__comparison_operator_token4] = ACTIONS(301), + [aux_sym__comparison_operator_token5] = ACTIONS(301), + [aux_sym__comparison_operator_token6] = ACTIONS(301), + [aux_sym__comparison_operator_token7] = ACTIONS(301), + [aux_sym__comparison_operator_token8] = ACTIONS(301), + [aux_sym__comparison_operator_token9] = ACTIONS(301), [aux_sym_variable_tuning_token1] = ACTIONS(311), [aux_sym_variable_tuning_token2] = ACTIONS(311), [aux_sym_variable_tuning_token3] = ACTIONS(311), @@ -36666,641 +37434,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(311), [aux_sym_index_definition_token1] = ACTIONS(311), [aux_sym_on_statement_token1] = ACTIONS(311), - [sym__or_operator] = ACTIONS(309), - [sym__and_operator] = ACTIONS(309), - }, - [136] = { - [sym_body] = STATE(3953), - [sym_comment] = STATE(136), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1045), - [sym_include] = STATE(136), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), - }, - [137] = { - [sym_body] = STATE(3738), - [sym_comment] = STATE(137), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1071), - [sym_include] = STATE(137), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), - }, - [138] = { - [sym_body] = STATE(3648), - [sym_comment] = STATE(138), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1420), - [sym_include] = STATE(138), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), - }, - [139] = { - [sym_body] = STATE(3843), - [sym_comment] = STATE(139), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1211), - [sym_include] = STATE(139), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), - }, - [140] = { - [sym_body] = STATE(3852), - [sym_comment] = STATE(140), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1446), - [sym_include] = STATE(140), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), - }, - [141] = { - [sym_body] = STATE(3642), - [sym_comment] = STATE(141), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3187), - [sym_include] = STATE(141), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [sym__or_operator] = ACTIONS(305), + [sym__and_operator] = ACTIONS(305), }, [142] = { - [sym_body] = STATE(3810), [sym_comment] = STATE(142), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3248), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), [sym_include] = STATE(142), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), - }, - [143] = { - [sym_body] = STATE(3650), - [sym_comment] = STATE(143), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1421), - [sym_include] = STATE(143), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), - }, - [144] = { - [sym_comment] = STATE(144), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), - [sym_include] = STATE(144), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(293), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(295), [sym__terminator] = ACTIONS(313), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_RPAREN] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(307), - [anon_sym_LT_GT] = ACTIONS(307), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(307), - [aux_sym__comparison_operator_token1] = ACTIONS(307), - [aux_sym__comparison_operator_token2] = ACTIONS(307), - [aux_sym__comparison_operator_token3] = ACTIONS(307), - [aux_sym__comparison_operator_token4] = ACTIONS(307), - [aux_sym__comparison_operator_token5] = ACTIONS(307), - [aux_sym__comparison_operator_token6] = ACTIONS(307), - [aux_sym__comparison_operator_token7] = ACTIONS(307), - [aux_sym__comparison_operator_token8] = ACTIONS(307), - [aux_sym__comparison_operator_token9] = ACTIONS(307), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(301), + [anon_sym_LT_GT] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(301), + [aux_sym__comparison_operator_token1] = ACTIONS(301), + [aux_sym__comparison_operator_token2] = ACTIONS(301), + [aux_sym__comparison_operator_token3] = ACTIONS(301), + [aux_sym__comparison_operator_token4] = ACTIONS(301), + [aux_sym__comparison_operator_token5] = ACTIONS(301), + [aux_sym__comparison_operator_token6] = ACTIONS(301), + [aux_sym__comparison_operator_token7] = ACTIONS(301), + [aux_sym__comparison_operator_token8] = ACTIONS(301), + [aux_sym__comparison_operator_token9] = ACTIONS(301), [aux_sym_variable_tuning_token1] = ACTIONS(313), [aux_sym_variable_tuning_token2] = ACTIONS(313), [aux_sym_variable_tuning_token3] = ACTIONS(313), @@ -37341,11282 +37509,11582 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(313), [aux_sym_index_definition_token1] = ACTIONS(313), [aux_sym_on_statement_token1] = ACTIONS(313), - [sym__or_operator] = ACTIONS(309), - [sym__and_operator] = ACTIONS(309), + [sym__or_operator] = ACTIONS(305), + [sym__and_operator] = ACTIONS(305), + }, + [143] = { + [sym_comment] = STATE(143), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), + [sym_include] = STATE(143), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(295), + [sym__terminator] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_LT] = ACTIONS(317), + [anon_sym_LT_EQ] = ACTIONS(315), + [anon_sym_LT_GT] = ACTIONS(315), + [anon_sym_EQ] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(317), + [anon_sym_GT_EQ] = ACTIONS(315), + [aux_sym__comparison_operator_token1] = ACTIONS(315), + [aux_sym__comparison_operator_token2] = ACTIONS(315), + [aux_sym__comparison_operator_token3] = ACTIONS(315), + [aux_sym__comparison_operator_token4] = ACTIONS(315), + [aux_sym__comparison_operator_token5] = ACTIONS(315), + [aux_sym__comparison_operator_token6] = ACTIONS(315), + [aux_sym__comparison_operator_token7] = ACTIONS(315), + [aux_sym__comparison_operator_token8] = ACTIONS(315), + [aux_sym__comparison_operator_token9] = ACTIONS(315), + [aux_sym_variable_tuning_token1] = ACTIONS(315), + [aux_sym_variable_tuning_token2] = ACTIONS(315), + [aux_sym_variable_tuning_token3] = ACTIONS(315), + [aux_sym_variable_tuning_token4] = ACTIONS(315), + [aux_sym_variable_tuning_token5] = ACTIONS(315), + [aux_sym_variable_tuning_token6] = ACTIONS(315), + [anon_sym_COMMA] = ACTIONS(315), + [aux_sym_if_statement_token2] = ACTIONS(315), + [aux_sym_else_if_statement_token1] = ACTIONS(315), + [anon_sym_COLON] = ACTIONS(315), + [aux_sym_while_phrase_token1] = ACTIONS(315), + [aux_sym_property_tuning_token1] = ACTIONS(315), + [aux_sym_event_definition_token1] = ACTIONS(315), + [aux_sym_input_stream_tuning_token1] = ACTIONS(315), + [aux_sym_input_stream_tuning_token2] = ACTIONS(315), + [aux_sym_input_stream_tuning_token3] = ACTIONS(315), + [aux_sym_input_stream_tuning_token4] = ACTIONS(315), + [aux_sym_input_stream_tuning_token5] = ACTIONS(315), + [aux_sym_input_stream_tuning_token6] = ACTIONS(315), + [aux_sym_input_stream_tuning_token7] = ACTIONS(315), + [aux_sym_input_stream_tuning_token8] = ACTIONS(315), + [aux_sym_input_stream_tuning_token9] = ACTIONS(315), + [aux_sym_input_stream_tuning_token11] = ACTIONS(315), + [aux_sym_output_stream_tuning_token1] = ACTIONS(315), + [aux_sym_output_stream_tuning_token2] = ACTIONS(315), + [aux_sym_output_stream_tuning_token3] = ACTIONS(315), + [aux_sym_output_stream_tuning_token4] = ACTIONS(315), + [aux_sym_output_stream_tuning_token5] = ACTIONS(315), + [aux_sym_output_stream_tuning_token6] = ACTIONS(315), + [aux_sym_output_stream_tuning_token7] = ACTIONS(315), + [aux_sym_output_stream_tuning_token8] = ACTIONS(315), + [aux_sym_output_stream_statement_token1] = ACTIONS(315), + [aux_sym_on_error_phrase_token1] = ACTIONS(315), + [aux_sym_stop_after_phrase_token1] = ACTIONS(315), + [aux_sym_do_tuning_token1] = ACTIONS(315), + [anon_sym_BY] = ACTIONS(315), + [aux_sym_of_token1] = ACTIONS(315), + [aux_sym_field_definition_token1] = ACTIONS(315), + [aux_sym_index_definition_token1] = ACTIONS(315), + [aux_sym_on_statement_token1] = ACTIONS(315), + [sym__or_operator] = ACTIONS(315), + [sym__and_operator] = ACTIONS(315), + }, + [144] = { + [sym_comment] = STATE(144), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), + [sym_include] = STATE(144), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(321), + [sym__terminator] = ACTIONS(321), + [anon_sym_LPAREN] = ACTIONS(321), + [anon_sym_RPAREN] = ACTIONS(321), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_LT] = ACTIONS(319), + [anon_sym_LT_EQ] = ACTIONS(321), + [anon_sym_LT_GT] = ACTIONS(321), + [anon_sym_EQ] = ACTIONS(321), + [anon_sym_GT] = ACTIONS(319), + [anon_sym_GT_EQ] = ACTIONS(321), + [aux_sym__comparison_operator_token1] = ACTIONS(321), + [aux_sym__comparison_operator_token2] = ACTIONS(321), + [aux_sym__comparison_operator_token3] = ACTIONS(321), + [aux_sym__comparison_operator_token4] = ACTIONS(321), + [aux_sym__comparison_operator_token5] = ACTIONS(321), + [aux_sym__comparison_operator_token6] = ACTIONS(321), + [aux_sym__comparison_operator_token7] = ACTIONS(321), + [aux_sym__comparison_operator_token8] = ACTIONS(321), + [aux_sym__comparison_operator_token9] = ACTIONS(321), + [aux_sym_variable_tuning_token1] = ACTIONS(321), + [aux_sym_variable_tuning_token2] = ACTIONS(321), + [aux_sym_variable_tuning_token3] = ACTIONS(321), + [aux_sym_variable_tuning_token4] = ACTIONS(321), + [aux_sym_variable_tuning_token5] = ACTIONS(321), + [aux_sym_variable_tuning_token6] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(321), + [aux_sym_if_statement_token2] = ACTIONS(321), + [aux_sym_else_if_statement_token1] = ACTIONS(321), + [anon_sym_COLON] = ACTIONS(321), + [aux_sym_while_phrase_token1] = ACTIONS(321), + [aux_sym_property_tuning_token1] = ACTIONS(321), + [aux_sym_event_definition_token1] = ACTIONS(321), + [aux_sym_input_stream_tuning_token1] = ACTIONS(321), + [aux_sym_input_stream_tuning_token2] = ACTIONS(321), + [aux_sym_input_stream_tuning_token3] = ACTIONS(321), + [aux_sym_input_stream_tuning_token4] = ACTIONS(321), + [aux_sym_input_stream_tuning_token5] = ACTIONS(321), + [aux_sym_input_stream_tuning_token6] = ACTIONS(321), + [aux_sym_input_stream_tuning_token7] = ACTIONS(321), + [aux_sym_input_stream_tuning_token8] = ACTIONS(321), + [aux_sym_input_stream_tuning_token9] = ACTIONS(321), + [aux_sym_input_stream_tuning_token11] = ACTIONS(321), + [aux_sym_output_stream_tuning_token1] = ACTIONS(321), + [aux_sym_output_stream_tuning_token2] = ACTIONS(321), + [aux_sym_output_stream_tuning_token3] = ACTIONS(321), + [aux_sym_output_stream_tuning_token4] = ACTIONS(321), + [aux_sym_output_stream_tuning_token5] = ACTIONS(321), + [aux_sym_output_stream_tuning_token6] = ACTIONS(321), + [aux_sym_output_stream_tuning_token7] = ACTIONS(321), + [aux_sym_output_stream_tuning_token8] = ACTIONS(321), + [aux_sym_output_stream_statement_token1] = ACTIONS(321), + [aux_sym_on_error_phrase_token1] = ACTIONS(321), + [aux_sym_stop_after_phrase_token1] = ACTIONS(321), + [aux_sym_do_tuning_token1] = ACTIONS(321), + [anon_sym_BY] = ACTIONS(321), + [aux_sym_of_token1] = ACTIONS(321), + [aux_sym_field_definition_token1] = ACTIONS(321), + [aux_sym_index_definition_token1] = ACTIONS(321), + [aux_sym_on_statement_token1] = ACTIONS(321), + [sym__or_operator] = ACTIONS(321), + [sym__and_operator] = ACTIONS(321), }, [145] = { - [sym_body] = STATE(3972), [sym_comment] = STATE(145), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(956), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), [sym_include] = STATE(145), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(295), + [sym__terminator] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(323), + [anon_sym_RPAREN] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(325), + [anon_sym_LT_EQ] = ACTIONS(323), + [anon_sym_LT_GT] = ACTIONS(323), + [anon_sym_EQ] = ACTIONS(323), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_GT_EQ] = ACTIONS(323), + [aux_sym__comparison_operator_token1] = ACTIONS(323), + [aux_sym__comparison_operator_token2] = ACTIONS(323), + [aux_sym__comparison_operator_token3] = ACTIONS(323), + [aux_sym__comparison_operator_token4] = ACTIONS(323), + [aux_sym__comparison_operator_token5] = ACTIONS(323), + [aux_sym__comparison_operator_token6] = ACTIONS(323), + [aux_sym__comparison_operator_token7] = ACTIONS(323), + [aux_sym__comparison_operator_token8] = ACTIONS(323), + [aux_sym__comparison_operator_token9] = ACTIONS(323), + [aux_sym_variable_tuning_token1] = ACTIONS(323), + [aux_sym_variable_tuning_token2] = ACTIONS(323), + [aux_sym_variable_tuning_token3] = ACTIONS(323), + [aux_sym_variable_tuning_token4] = ACTIONS(323), + [aux_sym_variable_tuning_token5] = ACTIONS(323), + [aux_sym_variable_tuning_token6] = ACTIONS(323), + [anon_sym_COMMA] = ACTIONS(323), + [aux_sym_if_statement_token2] = ACTIONS(323), + [aux_sym_else_if_statement_token1] = ACTIONS(323), + [anon_sym_COLON] = ACTIONS(323), + [aux_sym_while_phrase_token1] = ACTIONS(323), + [aux_sym_property_tuning_token1] = ACTIONS(323), + [aux_sym_event_definition_token1] = ACTIONS(323), + [aux_sym_input_stream_tuning_token1] = ACTIONS(323), + [aux_sym_input_stream_tuning_token2] = ACTIONS(323), + [aux_sym_input_stream_tuning_token3] = ACTIONS(323), + [aux_sym_input_stream_tuning_token4] = ACTIONS(323), + [aux_sym_input_stream_tuning_token5] = ACTIONS(323), + [aux_sym_input_stream_tuning_token6] = ACTIONS(323), + [aux_sym_input_stream_tuning_token7] = ACTIONS(323), + [aux_sym_input_stream_tuning_token8] = ACTIONS(323), + [aux_sym_input_stream_tuning_token9] = ACTIONS(323), + [aux_sym_input_stream_tuning_token11] = ACTIONS(323), + [aux_sym_output_stream_tuning_token1] = ACTIONS(323), + [aux_sym_output_stream_tuning_token2] = ACTIONS(323), + [aux_sym_output_stream_tuning_token3] = ACTIONS(323), + [aux_sym_output_stream_tuning_token4] = ACTIONS(323), + [aux_sym_output_stream_tuning_token5] = ACTIONS(323), + [aux_sym_output_stream_tuning_token6] = ACTIONS(323), + [aux_sym_output_stream_tuning_token7] = ACTIONS(323), + [aux_sym_output_stream_tuning_token8] = ACTIONS(323), + [aux_sym_output_stream_statement_token1] = ACTIONS(323), + [aux_sym_on_error_phrase_token1] = ACTIONS(323), + [aux_sym_stop_after_phrase_token1] = ACTIONS(323), + [aux_sym_do_tuning_token1] = ACTIONS(323), + [anon_sym_BY] = ACTIONS(323), + [aux_sym_of_token1] = ACTIONS(323), + [aux_sym_field_definition_token1] = ACTIONS(323), + [aux_sym_index_definition_token1] = ACTIONS(323), + [aux_sym_on_statement_token1] = ACTIONS(323), + [sym__or_operator] = ACTIONS(323), + [sym__and_operator] = ACTIONS(323), }, [146] = { - [sym_body] = STATE(3964), + [sym_body] = STATE(3942), [sym_comment] = STATE(146), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(959), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1059), [sym_include] = STATE(146), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [147] = { - [sym_body] = STATE(4028), + [sym_body] = STATE(4025), [sym_comment] = STATE(147), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(927), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1292), [sym_include] = STATE(147), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [148] = { - [sym_body] = STATE(3743), + [sym_body] = STATE(3952), [sym_comment] = STATE(148), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1456), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1058), [sym_include] = STATE(148), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [149] = { - [sym_body] = STATE(3656), + [sym_body] = STATE(3556), [sym_comment] = STATE(149), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1422), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(907), [sym_include] = STATE(149), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [150] = { - [sym_body] = STATE(3909), + [sym_body] = STATE(3590), [sym_comment] = STATE(150), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1098), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1073), [sym_include] = STATE(150), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [151] = { - [sym_body] = STATE(3908), + [sym_body] = STATE(3954), [sym_comment] = STATE(151), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1100), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1056), [sym_include] = STATE(151), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [152] = { - [sym_body] = STATE(3658), + [sym_body] = STATE(3924), [sym_comment] = STATE(152), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1424), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1251), [sym_include] = STATE(152), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [153] = { - [sym_body] = STATE(3667), + [sym_body] = STATE(3570), [sym_comment] = STATE(153), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1427), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(990), [sym_include] = STATE(153), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [154] = { - [sym_body] = STATE(3682), + [sym_body] = STATE(3959), [sym_comment] = STATE(154), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1433), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1055), [sym_include] = STATE(154), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [155] = { - [sym_body] = STATE(3683), + [sym_body] = STATE(3877), [sym_comment] = STATE(155), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1438), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1434), [sym_include] = STATE(155), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [156] = { - [sym_body] = STATE(3813), + [sym_body] = STATE(3882), [sym_comment] = STATE(156), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1448), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1436), [sym_include] = STATE(156), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [157] = { - [sym_body] = STATE(3688), + [sym_body] = STATE(4005), [sym_comment] = STATE(157), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1457), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(977), [sym_include] = STATE(157), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [158] = { - [sym_body] = STATE(3907), + [sym_body] = STATE(3884), [sym_comment] = STATE(158), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1101), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1438), [sym_include] = STATE(158), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [159] = { - [sym_body] = STATE(3696), + [sym_body] = STATE(3931), [sym_comment] = STATE(159), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1443), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1336), [sym_include] = STATE(159), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [160] = { - [sym_body] = STATE(3902), + [sym_body] = STATE(3593), [sym_comment] = STATE(160), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1102), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1074), [sym_include] = STATE(160), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [161] = { - [sym_body] = STATE(3766), + [sym_body] = STATE(3885), [sym_comment] = STATE(161), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1075), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1440), [sym_include] = STATE(161), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [162] = { - [sym_body] = STATE(3827), + [sym_body] = STATE(4017), [sym_comment] = STATE(162), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1190), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(979), [sym_include] = STATE(162), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [163] = { - [sym_body] = STATE(3621), + [sym_body] = STATE(3862), [sym_comment] = STATE(163), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3185), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1377), [sym_include] = STATE(163), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [164] = { - [sym_body] = STATE(3771), + [sym_body] = STATE(3889), [sym_comment] = STATE(164), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1077), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1442), [sym_include] = STATE(164), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [165] = { - [sym_body] = STATE(4031), + [sym_body] = STATE(3618), [sym_comment] = STATE(165), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(935), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1084), [sym_include] = STATE(165), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [166] = { - [sym_body] = STATE(3609), + [sym_body] = STATE(3896), [sym_comment] = STATE(166), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3183), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1443), [sym_include] = STATE(166), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [167] = { - [sym_body] = STATE(3704), + [sym_body] = STATE(3897), [sym_comment] = STATE(167), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1460), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1445), [sym_include] = STATE(167), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [168] = { - [sym_body] = STATE(3706), + [sym_body] = STATE(3899), [sym_comment] = STATE(168), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1464), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1450), [sym_include] = STATE(168), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [169] = { - [sym_body] = STATE(4041), + [sym_body] = STATE(3779), [sym_comment] = STATE(169), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1251), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1493), [sym_include] = STATE(169), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [170] = { - [sym_body] = STATE(3742), + [sym_body] = STATE(3561), [sym_comment] = STATE(170), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1453), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(930), [sym_include] = STATE(170), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [171] = { - [sym_body] = STATE(3797), + [sym_body] = STATE(3617), [sym_comment] = STATE(171), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1081), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1082), [sym_include] = STATE(171), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [172] = { - [sym_body] = STATE(3896), + [sym_body] = STATE(3905), [sym_comment] = STATE(172), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1103), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1453), [sym_include] = STATE(172), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [173] = { - [sym_body] = STATE(3791), + [sym_body] = STATE(4040), [sym_comment] = STATE(173), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1168), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(986), [sym_include] = STATE(173), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [174] = { - [sym_body] = STATE(3894), + [sym_body] = STATE(3908), [sym_comment] = STATE(174), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1104), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1463), [sym_include] = STATE(174), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [175] = { - [sym_body] = STATE(3891), + [sym_body] = STATE(3914), [sym_comment] = STATE(175), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1105), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1478), [sym_include] = STATE(175), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [176] = { - [sym_body] = STATE(3803), + [sym_body] = STATE(4073), [sym_comment] = STATE(176), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1091), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(996), [sym_include] = STATE(176), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [177] = { - [sym_body] = STATE(3963), + [sym_body] = STATE(3757), [sym_comment] = STATE(177), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(962), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1484), [sym_include] = STATE(177), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [178] = { - [sym_body] = STATE(4033), + [sym_body] = STATE(3568), [sym_comment] = STATE(178), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(937), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(844), [sym_include] = STATE(178), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [179] = { - [sym_body] = STATE(3599), + [sym_body] = STATE(3939), [sym_comment] = STATE(179), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3143), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1367), [sym_include] = STATE(179), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [180] = { - [sym_body] = STATE(3913), + [sym_body] = STATE(3562), [sym_comment] = STATE(180), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3282), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3358), [sym_include] = STATE(180), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [181] = { - [sym_body] = STATE(3598), + [sym_body] = STATE(3578), [sym_comment] = STATE(181), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3177), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3360), [sym_include] = STATE(181), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [182] = { - [sym_body] = STATE(3887), + [sym_body] = STATE(3614), [sym_comment] = STATE(182), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1106), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1079), [sym_include] = STATE(182), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [183] = { - [sym_body] = STATE(3826), [sym_comment] = STATE(183), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1474), + [sym__logical_operator] = STATE(442), + [sym__additive_operator] = STATE(441), + [sym__multiplicative_operator] = STATE(440), + [sym__comparison_operator] = STATE(439), [sym_include] = STATE(183), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(295), + [sym__terminator] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_RPAREN] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(297), + [anon_sym_DASH] = ACTIONS(297), + [anon_sym_LT] = ACTIONS(299), + [anon_sym_LT_EQ] = ACTIONS(301), + [anon_sym_LT_GT] = ACTIONS(301), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(299), + [anon_sym_GT_EQ] = ACTIONS(301), + [aux_sym__comparison_operator_token1] = ACTIONS(301), + [aux_sym__comparison_operator_token2] = ACTIONS(301), + [aux_sym__comparison_operator_token3] = ACTIONS(301), + [aux_sym__comparison_operator_token4] = ACTIONS(301), + [aux_sym__comparison_operator_token5] = ACTIONS(301), + [aux_sym__comparison_operator_token6] = ACTIONS(301), + [aux_sym__comparison_operator_token7] = ACTIONS(301), + [aux_sym__comparison_operator_token8] = ACTIONS(301), + [aux_sym__comparison_operator_token9] = ACTIONS(301), + [aux_sym_variable_tuning_token1] = ACTIONS(327), + [aux_sym_variable_tuning_token2] = ACTIONS(327), + [aux_sym_variable_tuning_token3] = ACTIONS(327), + [aux_sym_variable_tuning_token4] = ACTIONS(327), + [aux_sym_variable_tuning_token5] = ACTIONS(327), + [aux_sym_variable_tuning_token6] = ACTIONS(327), + [anon_sym_COMMA] = ACTIONS(327), + [aux_sym_if_statement_token2] = ACTIONS(327), + [aux_sym_else_if_statement_token1] = ACTIONS(327), + [anon_sym_COLON] = ACTIONS(327), + [aux_sym_while_phrase_token1] = ACTIONS(327), + [aux_sym_property_tuning_token1] = ACTIONS(327), + [aux_sym_event_definition_token1] = ACTIONS(327), + [aux_sym_input_stream_tuning_token1] = ACTIONS(327), + [aux_sym_input_stream_tuning_token2] = ACTIONS(327), + [aux_sym_input_stream_tuning_token3] = ACTIONS(327), + [aux_sym_input_stream_tuning_token4] = ACTIONS(327), + [aux_sym_input_stream_tuning_token5] = ACTIONS(327), + [aux_sym_input_stream_tuning_token6] = ACTIONS(327), + [aux_sym_input_stream_tuning_token7] = ACTIONS(327), + [aux_sym_input_stream_tuning_token8] = ACTIONS(327), + [aux_sym_input_stream_tuning_token9] = ACTIONS(327), + [aux_sym_input_stream_tuning_token11] = ACTIONS(327), + [aux_sym_output_stream_tuning_token1] = ACTIONS(327), + [aux_sym_output_stream_tuning_token2] = ACTIONS(327), + [aux_sym_output_stream_tuning_token3] = ACTIONS(327), + [aux_sym_output_stream_tuning_token4] = ACTIONS(327), + [aux_sym_output_stream_tuning_token5] = ACTIONS(327), + [aux_sym_output_stream_tuning_token6] = ACTIONS(327), + [aux_sym_output_stream_tuning_token7] = ACTIONS(327), + [aux_sym_output_stream_tuning_token8] = ACTIONS(327), + [aux_sym_output_stream_statement_token1] = ACTIONS(327), + [aux_sym_on_error_phrase_token1] = ACTIONS(327), + [aux_sym_stop_after_phrase_token1] = ACTIONS(327), + [aux_sym_do_tuning_token1] = ACTIONS(327), + [anon_sym_BY] = ACTIONS(327), + [aux_sym_of_token1] = ACTIONS(327), + [aux_sym_field_definition_token1] = ACTIONS(327), + [aux_sym_index_definition_token1] = ACTIONS(327), + [aux_sym_on_statement_token1] = ACTIONS(327), + [sym__or_operator] = ACTIONS(305), + [sym__and_operator] = ACTIONS(305), }, [184] = { - [sym_body] = STATE(3590), + [sym_body] = STATE(3974), [sym_comment] = STATE(184), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3173), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1048), [sym_include] = STATE(184), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [185] = { - [sym_body] = STATE(3883), + [sym_body] = STATE(3858), [sym_comment] = STATE(185), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1107), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1208), [sym_include] = STATE(185), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [186] = { - [sym_body] = STATE(3556), + [sym_body] = STATE(3729), [sym_comment] = STATE(186), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3146), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1365), [sym_include] = STATE(186), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [187] = { - [sym_body] = STATE(3654), + [sym_body] = STATE(3580), [sym_comment] = STATE(187), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1412), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3361), [sym_include] = STATE(187), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [188] = { - [sym_body] = STATE(3720), + [sym_body] = STATE(4042), [sym_comment] = STATE(188), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1477), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1229), [sym_include] = STATE(188), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [189] = { - [sym_body] = STATE(3557), + [sym_body] = STATE(3592), [sym_comment] = STATE(189), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3148), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3365), [sym_include] = STATE(189), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [190] = { - [sym_body] = STATE(3558), + [sym_body] = STATE(3612), [sym_comment] = STATE(190), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3149), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1077), [sym_include] = STATE(190), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [191] = { - [sym_body] = STATE(3722), + [sym_body] = STATE(3923), [sym_comment] = STATE(191), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1478), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1496), [sym_include] = STATE(191), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [192] = { - [sym_body] = STATE(3729), + [sym_body] = STATE(3928), [sym_comment] = STATE(192), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1496), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1481), [sym_include] = STATE(192), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [193] = { - [sym_body] = STATE(4046), + [sym_body] = STATE(3619), [sym_comment] = STATE(193), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1201), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3366), [sym_include] = STATE(193), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [194] = { - [sym_body] = STATE(3559), + [sym_body] = STATE(3716), [sym_comment] = STATE(194), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3150), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1281), [sym_include] = STATE(194), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [195] = { - [sym_body] = STATE(3560), + [sym_body] = STATE(3937), [sym_comment] = STATE(195), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3151), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1499), [sym_include] = STATE(195), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [196] = { - [sym_body] = STATE(3657), + [sym_body] = STATE(3628), [sym_comment] = STATE(196), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1416), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3367), [sym_include] = STATE(196), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [197] = { - [sym_body] = STATE(3543), + [sym_body] = STATE(3740), [sym_comment] = STATE(197), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3154), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1358), [sym_include] = STATE(197), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [198] = { - [sym_body] = STATE(3798), + [sym_body] = STATE(3600), [sym_comment] = STATE(198), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1148), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(848), [sym_include] = STATE(198), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [199] = { - [sym_body] = STATE(3565), + [sym_body] = STATE(3965), [sym_comment] = STATE(199), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3155), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1519), [sym_include] = STATE(199), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [200] = { - [sym_body] = STATE(3585), + [sym_body] = STATE(4052), [sym_comment] = STATE(200), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3167), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1012), [sym_include] = STATE(200), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [201] = { - [sym_body] = STATE(3974), + [sym_body] = STATE(3606), [sym_comment] = STATE(201), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(934), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1076), [sym_include] = STATE(201), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [202] = { - [sym_body] = STATE(3567), + [sym_body] = STATE(3636), [sym_comment] = STATE(202), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3158), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3368), [sym_include] = STATE(202), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [203] = { [sym_body] = STATE(3582), [sym_comment] = STATE(203), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3172), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1063), [sym_include] = STATE(203), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [204] = { - [sym_body] = STATE(3571), + [sym_body] = STATE(3565), [sym_comment] = STATE(204), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3159), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(932), [sym_include] = STATE(204), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [205] = { - [sym_body] = STATE(3937), + [sym_body] = STATE(3957), [sym_comment] = STATE(205), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1335), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1461), [sym_include] = STATE(205), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [206] = { - [sym_body] = STATE(3581), + [sym_body] = STATE(3978), [sym_comment] = STATE(206), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3170), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1044), [sym_include] = STATE(206), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [207] = { - [sym_body] = STATE(3741), + [sym_body] = STATE(3986), [sym_comment] = STATE(207), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1502), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1546), [sym_include] = STATE(207), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [208] = { - [sym_body] = STATE(3562), + [sym_body] = STATE(4050), [sym_comment] = STATE(208), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(993), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1014), [sym_include] = STATE(208), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [209] = { - [sym_body] = STATE(3773), + [sym_body] = STATE(3983), [sym_comment] = STATE(209), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1152), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1042), [sym_include] = STATE(209), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [210] = { + [sym_body] = STATE(3646), [sym_comment] = STATE(210), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3372), [sym_include] = STATE(210), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(287), - [sym__terminator] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(153), - [anon_sym_RPAREN] = ACTIONS(153), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(307), - [anon_sym_LT_GT] = ACTIONS(307), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(307), - [aux_sym__comparison_operator_token1] = ACTIONS(307), - [aux_sym__comparison_operator_token2] = ACTIONS(307), - [aux_sym__comparison_operator_token3] = ACTIONS(307), - [aux_sym__comparison_operator_token4] = ACTIONS(307), - [aux_sym__comparison_operator_token5] = ACTIONS(307), - [aux_sym__comparison_operator_token6] = ACTIONS(307), - [aux_sym__comparison_operator_token7] = ACTIONS(307), - [aux_sym__comparison_operator_token8] = ACTIONS(307), - [aux_sym__comparison_operator_token9] = ACTIONS(307), - [aux_sym_variable_tuning_token1] = ACTIONS(153), - [aux_sym_variable_tuning_token2] = ACTIONS(153), - [aux_sym_variable_tuning_token3] = ACTIONS(153), - [aux_sym_variable_tuning_token4] = ACTIONS(153), - [aux_sym_variable_tuning_token5] = ACTIONS(153), - [aux_sym_variable_tuning_token6] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(153), - [aux_sym_if_statement_token2] = ACTIONS(153), - [aux_sym_else_if_statement_token1] = ACTIONS(153), - [anon_sym_COLON] = ACTIONS(153), - [aux_sym_while_phrase_token1] = ACTIONS(153), - [aux_sym_property_tuning_token1] = ACTIONS(153), - [aux_sym_event_definition_token1] = ACTIONS(153), - [aux_sym_input_stream_tuning_token1] = ACTIONS(153), - [aux_sym_input_stream_tuning_token2] = ACTIONS(153), - [aux_sym_input_stream_tuning_token3] = ACTIONS(153), - [aux_sym_input_stream_tuning_token4] = ACTIONS(153), - [aux_sym_input_stream_tuning_token5] = ACTIONS(153), - [aux_sym_input_stream_tuning_token6] = ACTIONS(153), - [aux_sym_input_stream_tuning_token7] = ACTIONS(153), - [aux_sym_input_stream_tuning_token8] = ACTIONS(153), - [aux_sym_input_stream_tuning_token9] = ACTIONS(153), - [aux_sym_input_stream_tuning_token11] = ACTIONS(153), - [aux_sym_output_stream_tuning_token1] = ACTIONS(153), - [aux_sym_output_stream_tuning_token2] = ACTIONS(153), - [aux_sym_output_stream_tuning_token3] = ACTIONS(153), - [aux_sym_output_stream_tuning_token4] = ACTIONS(153), - [aux_sym_output_stream_tuning_token5] = ACTIONS(153), - [aux_sym_output_stream_tuning_token6] = ACTIONS(153), - [aux_sym_output_stream_tuning_token7] = ACTIONS(153), - [aux_sym_output_stream_tuning_token8] = ACTIONS(153), - [aux_sym_output_stream_statement_token1] = ACTIONS(153), - [aux_sym_on_error_phrase_token1] = ACTIONS(153), - [aux_sym_stop_after_phrase_token1] = ACTIONS(153), - [aux_sym_do_tuning_token1] = ACTIONS(153), - [anon_sym_BY] = ACTIONS(153), - [aux_sym_of_token1] = ACTIONS(153), - [aux_sym_field_definition_token1] = ACTIONS(153), - [aux_sym_index_definition_token1] = ACTIONS(153), - [aux_sym_on_statement_token1] = ACTIONS(153), - [sym__or_operator] = ACTIONS(153), - [sym__and_operator] = ACTIONS(153), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [211] = { - [sym_body] = STATE(3809), + [sym_body] = STATE(3988), [sym_comment] = STATE(211), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1093), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1517), [sym_include] = STATE(211), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [212] = { + [sym_body] = STATE(3573), [sym_comment] = STATE(212), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1002), [sym_include] = STATE(212), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(287), - [sym__terminator] = ACTIONS(315), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_RPAREN] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(307), - [anon_sym_LT_GT] = ACTIONS(307), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(307), - [aux_sym__comparison_operator_token1] = ACTIONS(307), - [aux_sym__comparison_operator_token2] = ACTIONS(307), - [aux_sym__comparison_operator_token3] = ACTIONS(307), - [aux_sym__comparison_operator_token4] = ACTIONS(307), - [aux_sym__comparison_operator_token5] = ACTIONS(307), - [aux_sym__comparison_operator_token6] = ACTIONS(307), - [aux_sym__comparison_operator_token7] = ACTIONS(307), - [aux_sym__comparison_operator_token8] = ACTIONS(307), - [aux_sym__comparison_operator_token9] = ACTIONS(307), - [aux_sym_variable_tuning_token1] = ACTIONS(315), - [aux_sym_variable_tuning_token2] = ACTIONS(315), - [aux_sym_variable_tuning_token3] = ACTIONS(315), - [aux_sym_variable_tuning_token4] = ACTIONS(315), - [aux_sym_variable_tuning_token5] = ACTIONS(315), - [aux_sym_variable_tuning_token6] = ACTIONS(315), - [anon_sym_COMMA] = ACTIONS(315), - [aux_sym_if_statement_token2] = ACTIONS(315), - [aux_sym_else_if_statement_token1] = ACTIONS(315), - [anon_sym_COLON] = ACTIONS(315), - [aux_sym_while_phrase_token1] = ACTIONS(315), - [aux_sym_property_tuning_token1] = ACTIONS(315), - [aux_sym_event_definition_token1] = ACTIONS(315), - [aux_sym_input_stream_tuning_token1] = ACTIONS(315), - [aux_sym_input_stream_tuning_token2] = ACTIONS(315), - [aux_sym_input_stream_tuning_token3] = ACTIONS(315), - [aux_sym_input_stream_tuning_token4] = ACTIONS(315), - [aux_sym_input_stream_tuning_token5] = ACTIONS(315), - [aux_sym_input_stream_tuning_token6] = ACTIONS(315), - [aux_sym_input_stream_tuning_token7] = ACTIONS(315), - [aux_sym_input_stream_tuning_token8] = ACTIONS(315), - [aux_sym_input_stream_tuning_token9] = ACTIONS(315), - [aux_sym_input_stream_tuning_token11] = ACTIONS(315), - [aux_sym_output_stream_tuning_token1] = ACTIONS(315), - [aux_sym_output_stream_tuning_token2] = ACTIONS(315), - [aux_sym_output_stream_tuning_token3] = ACTIONS(315), - [aux_sym_output_stream_tuning_token4] = ACTIONS(315), - [aux_sym_output_stream_tuning_token5] = ACTIONS(315), - [aux_sym_output_stream_tuning_token6] = ACTIONS(315), - [aux_sym_output_stream_tuning_token7] = ACTIONS(315), - [aux_sym_output_stream_tuning_token8] = ACTIONS(315), - [aux_sym_output_stream_statement_token1] = ACTIONS(315), - [aux_sym_on_error_phrase_token1] = ACTIONS(315), - [aux_sym_stop_after_phrase_token1] = ACTIONS(315), - [aux_sym_do_tuning_token1] = ACTIONS(315), - [anon_sym_BY] = ACTIONS(315), - [aux_sym_of_token1] = ACTIONS(315), - [aux_sym_field_definition_token1] = ACTIONS(315), - [aux_sym_index_definition_token1] = ACTIONS(315), - [aux_sym_on_statement_token1] = ACTIONS(315), - [sym__or_operator] = ACTIONS(309), - [sym__and_operator] = ACTIONS(309), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [213] = { - [sym_body] = STATE(3957), + [sym_body] = STATE(3985), [sym_comment] = STATE(213), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(972), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1045), [sym_include] = STATE(213), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(279), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [214] = { + [sym_body] = STATE(3990), [sym_comment] = STATE(214), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1471), [sym_include] = STATE(214), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(287), - [sym__terminator] = ACTIONS(317), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_RPAREN] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(307), - [anon_sym_LT_GT] = ACTIONS(307), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(307), - [aux_sym__comparison_operator_token1] = ACTIONS(307), - [aux_sym__comparison_operator_token2] = ACTIONS(307), - [aux_sym__comparison_operator_token3] = ACTIONS(307), - [aux_sym__comparison_operator_token4] = ACTIONS(307), - [aux_sym__comparison_operator_token5] = ACTIONS(307), - [aux_sym__comparison_operator_token6] = ACTIONS(307), - [aux_sym__comparison_operator_token7] = ACTIONS(307), - [aux_sym__comparison_operator_token8] = ACTIONS(307), - [aux_sym__comparison_operator_token9] = ACTIONS(307), - [aux_sym_variable_tuning_token1] = ACTIONS(317), - [aux_sym_variable_tuning_token2] = ACTIONS(317), - [aux_sym_variable_tuning_token3] = ACTIONS(317), - [aux_sym_variable_tuning_token4] = ACTIONS(317), - [aux_sym_variable_tuning_token5] = ACTIONS(317), - [aux_sym_variable_tuning_token6] = ACTIONS(317), - [anon_sym_COMMA] = ACTIONS(317), - [aux_sym_if_statement_token2] = ACTIONS(317), - [aux_sym_else_if_statement_token1] = ACTIONS(317), - [anon_sym_COLON] = ACTIONS(317), - [aux_sym_while_phrase_token1] = ACTIONS(317), - [aux_sym_property_tuning_token1] = ACTIONS(317), - [aux_sym_event_definition_token1] = ACTIONS(317), - [aux_sym_input_stream_tuning_token1] = ACTIONS(317), - [aux_sym_input_stream_tuning_token2] = ACTIONS(317), - [aux_sym_input_stream_tuning_token3] = ACTIONS(317), - [aux_sym_input_stream_tuning_token4] = ACTIONS(317), - [aux_sym_input_stream_tuning_token5] = ACTIONS(317), - [aux_sym_input_stream_tuning_token6] = ACTIONS(317), - [aux_sym_input_stream_tuning_token7] = ACTIONS(317), - [aux_sym_input_stream_tuning_token8] = ACTIONS(317), - [aux_sym_input_stream_tuning_token9] = ACTIONS(317), - [aux_sym_input_stream_tuning_token11] = ACTIONS(317), - [aux_sym_output_stream_tuning_token1] = ACTIONS(317), - [aux_sym_output_stream_tuning_token2] = ACTIONS(317), - [aux_sym_output_stream_tuning_token3] = ACTIONS(317), - [aux_sym_output_stream_tuning_token4] = ACTIONS(317), - [aux_sym_output_stream_tuning_token5] = ACTIONS(317), - [aux_sym_output_stream_tuning_token6] = ACTIONS(317), - [aux_sym_output_stream_tuning_token7] = ACTIONS(317), - [aux_sym_output_stream_tuning_token8] = ACTIONS(317), - [aux_sym_output_stream_statement_token1] = ACTIONS(317), - [aux_sym_on_error_phrase_token1] = ACTIONS(317), - [aux_sym_stop_after_phrase_token1] = ACTIONS(317), - [aux_sym_do_tuning_token1] = ACTIONS(317), - [anon_sym_BY] = ACTIONS(317), - [aux_sym_of_token1] = ACTIONS(317), - [aux_sym_field_definition_token1] = ACTIONS(317), - [aux_sym_index_definition_token1] = ACTIONS(317), - [aux_sym_on_statement_token1] = ACTIONS(317), - [sym__or_operator] = ACTIONS(309), - [sym__and_operator] = ACTIONS(309), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [215] = { - [sym_body] = STATE(3811), + [sym_body] = STATE(4041), [sym_comment] = STATE(215), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(836), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1017), [sym_include] = STATE(215), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [216] = { - [sym_body] = STATE(3757), + [sym_body] = STATE(4007), [sym_comment] = STATE(216), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1505), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1403), [sym_include] = STATE(216), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [217] = { - [sym_body] = STATE(3758), + [sym_body] = STATE(3566), [sym_comment] = STATE(217), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1511), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(941), [sym_include] = STATE(217), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [218] = { - [sym_body] = STATE(3821), + [sym_body] = STATE(4036), [sym_comment] = STATE(218), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1120), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1021), [sym_include] = STATE(218), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [219] = { - [sym_body] = STATE(3938), + [sym_body] = STATE(4035), [sym_comment] = STATE(219), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1118), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1394), [sym_include] = STATE(219), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [220] = { - [sym_body] = STATE(3576), + [sym_body] = STATE(4038), [sym_comment] = STATE(220), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3162), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1388), [sym_include] = STATE(220), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [221] = { - [sym_body] = STATE(3764), + [sym_body] = STATE(3652), [sym_comment] = STATE(221), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1288), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(3373), [sym_include] = STATE(221), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(289), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [222] = { - [sym_body] = STATE(3830), + [sym_body] = STATE(4045), [sym_comment] = STATE(222), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1117), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1140), [sym_include] = STATE(222), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [223] = { - [sym_body] = STATE(3775), + [sym_body] = STATE(4021), [sym_comment] = STATE(223), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1130), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1030), [sym_include] = STATE(223), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [224] = { + [sym_body] = STATE(4016), [sym_comment] = STATE(224), - [sym__logical_operator] = STATE(355), - [sym__additive_operator] = STATE(448), - [sym__multiplicative_operator] = STATE(453), - [sym__comparison_operator] = STATE(489), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1031), [sym_include] = STATE(224), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(287), - [sym__terminator] = ACTIONS(319), - [anon_sym_LPAREN] = ACTIONS(319), - [anon_sym_RPAREN] = ACTIONS(319), - [anon_sym_PLUS] = ACTIONS(291), - [anon_sym_DASH] = ACTIONS(291), - [anon_sym_LT] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(307), - [anon_sym_LT_GT] = ACTIONS(307), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(307), - [aux_sym__comparison_operator_token1] = ACTIONS(307), - [aux_sym__comparison_operator_token2] = ACTIONS(307), - [aux_sym__comparison_operator_token3] = ACTIONS(307), - [aux_sym__comparison_operator_token4] = ACTIONS(307), - [aux_sym__comparison_operator_token5] = ACTIONS(307), - [aux_sym__comparison_operator_token6] = ACTIONS(307), - [aux_sym__comparison_operator_token7] = ACTIONS(307), - [aux_sym__comparison_operator_token8] = ACTIONS(307), - [aux_sym__comparison_operator_token9] = ACTIONS(307), - [aux_sym_variable_tuning_token1] = ACTIONS(319), - [aux_sym_variable_tuning_token2] = ACTIONS(319), - [aux_sym_variable_tuning_token3] = ACTIONS(319), - [aux_sym_variable_tuning_token4] = ACTIONS(319), - [aux_sym_variable_tuning_token5] = ACTIONS(319), - [aux_sym_variable_tuning_token6] = ACTIONS(319), - [anon_sym_COMMA] = ACTIONS(319), - [aux_sym_if_statement_token2] = ACTIONS(319), - [aux_sym_else_if_statement_token1] = ACTIONS(319), - [anon_sym_COLON] = ACTIONS(319), - [aux_sym_while_phrase_token1] = ACTIONS(319), - [aux_sym_property_tuning_token1] = ACTIONS(319), - [aux_sym_event_definition_token1] = ACTIONS(319), - [aux_sym_input_stream_tuning_token1] = ACTIONS(319), - [aux_sym_input_stream_tuning_token2] = ACTIONS(319), - [aux_sym_input_stream_tuning_token3] = ACTIONS(319), - [aux_sym_input_stream_tuning_token4] = ACTIONS(319), - [aux_sym_input_stream_tuning_token5] = ACTIONS(319), - [aux_sym_input_stream_tuning_token6] = ACTIONS(319), - [aux_sym_input_stream_tuning_token7] = ACTIONS(319), - [aux_sym_input_stream_tuning_token8] = ACTIONS(319), - [aux_sym_input_stream_tuning_token9] = ACTIONS(319), - [aux_sym_input_stream_tuning_token11] = ACTIONS(319), - [aux_sym_output_stream_tuning_token1] = ACTIONS(319), - [aux_sym_output_stream_tuning_token2] = ACTIONS(319), - [aux_sym_output_stream_tuning_token3] = ACTIONS(319), - [aux_sym_output_stream_tuning_token4] = ACTIONS(319), - [aux_sym_output_stream_tuning_token5] = ACTIONS(319), - [aux_sym_output_stream_tuning_token6] = ACTIONS(319), - [aux_sym_output_stream_tuning_token7] = ACTIONS(319), - [aux_sym_output_stream_tuning_token8] = ACTIONS(319), - [aux_sym_output_stream_statement_token1] = ACTIONS(319), - [aux_sym_on_error_phrase_token1] = ACTIONS(319), - [aux_sym_stop_after_phrase_token1] = ACTIONS(319), - [aux_sym_do_tuning_token1] = ACTIONS(319), - [anon_sym_BY] = ACTIONS(319), - [aux_sym_of_token1] = ACTIONS(319), - [aux_sym_field_definition_token1] = ACTIONS(319), - [aux_sym_index_definition_token1] = ACTIONS(319), - [aux_sym_on_statement_token1] = ACTIONS(319), - [sym__or_operator] = ACTIONS(309), - [sym__and_operator] = ACTIONS(309), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [225] = { - [sym_body] = STATE(3687), + [sym_body] = STATE(4070), [sym_comment] = STATE(225), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1029), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1152), [sym_include] = STATE(225), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [226] = { - [sym_body] = STATE(3837), + [sym_body] = STATE(4011), [sym_comment] = STATE(226), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1113), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1034), [sym_include] = STATE(226), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [227] = { - [sym_body] = STATE(3854), + [sym_body] = STATE(3567), [sym_comment] = STATE(227), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1116), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(974), [sym_include] = STATE(227), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [228] = { - [sym_body] = STATE(3857), + [sym_body] = STATE(4010), [sym_comment] = STATE(228), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1114), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1036), [sym_include] = STATE(228), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [229] = { - [sym_body] = STATE(3577), + [sym_body] = STATE(4061), [sym_comment] = STATE(229), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(3165), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1167), [sym_include] = STATE(229), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(281), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [230] = { - [sym_body] = STATE(3864), + [sym_body] = STATE(3971), [sym_comment] = STATE(230), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1112), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1494), [sym_include] = STATE(230), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [231] = { - [sym_body] = STATE(3788), + [sym_body] = STATE(3854), [sym_comment] = STATE(231), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1140), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1204), [sym_include] = STATE(231), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(275), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [232] = { - [sym_body] = STATE(3905), + [sym_body] = STATE(3789), [sym_comment] = STATE(232), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1313), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1295), [sym_include] = STATE(232), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [233] = { - [sym_body] = STATE(3871), + [sym_body] = STATE(4057), [sym_comment] = STATE(233), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1110), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1171), [sym_include] = STATE(233), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(283), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(285), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [234] = { - [sym_body] = STATE(3769), + [sym_body] = STATE(3994), [sym_comment] = STATE(234), - [sym_qualified_name] = STATE(4699), - [sym__block_terminator] = STATE(1131), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1041), [sym_include] = STATE(234), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(277), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(283), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [235] = { - [sym_body] = STATE(4581), + [sym_body] = STATE(3855), [sym_comment] = STATE(235), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1193), [sym_include] = STATE(235), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(321), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(287), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [236] = { + [sym_body] = STATE(3586), [sym_comment] = STATE(236), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), + [sym__block_terminator] = STATE(1070), [sym_include] = STATE(236), - [sym__function_call_arguments] = STATE(4587), - [sym_argument_mode] = STATE(4530), - [sym__function_argument_with_mode] = STATE(3635), - [sym_function_call_argument] = STATE(3434), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_can_find_expression] = STATE(38), - [sym_accumulate_aggregate] = STATE(3048), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(859), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(339), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(343), - [aux_sym_ambiguous_expression_token1] = ACTIONS(345), - [aux_sym_current_changed_expression_token1] = ACTIONS(347), - [aux_sym_locked_expression_token1] = ACTIONS(349), - [aux_sym_input_expression_token1] = ACTIONS(351), - [aux_sym_scope_tuning_token1] = ACTIONS(353), - [aux_sym_argument_mode_token1] = ACTIONS(355), - [aux_sym_argument_mode_token2] = ACTIONS(355), - [aux_sym_if_statement_token1] = ACTIONS(357), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(361), - [aux_sym_accumulate_expression_token1] = ACTIONS(363), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(291), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [237] = { - [sym_body] = STATE(4514), + [sym_body] = STATE(4510), [sym_comment] = STATE(237), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(237), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(367), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(329), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [238] = { - [sym_body] = STATE(4439), + [sym_body] = STATE(4426), [sym_comment] = STATE(238), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(238), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(369), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(331), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [239] = { - [sym_body] = STATE(4395), + [sym_body] = STATE(4247), [sym_comment] = STATE(239), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(239), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(371), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(333), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [240] = { - [sym_body] = STATE(4365), [sym_comment] = STATE(240), - [sym_qualified_name] = STATE(4699), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(240), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym__function_call_arguments] = STATE(4294), + [sym_argument_mode] = STATE(4606), + [sym__function_argument_with_mode] = STATE(3622), + [sym_function_call_argument] = STATE(3082), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_can_find_expression] = STATE(45), + [sym_accumulate_aggregate] = STATE(3306), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(1081), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(373), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(351), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(355), + [aux_sym_ambiguous_expression_token1] = ACTIONS(357), + [aux_sym_current_changed_expression_token1] = ACTIONS(359), + [aux_sym_locked_expression_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(363), + [aux_sym_scope_tuning_token1] = ACTIONS(365), + [aux_sym_argument_mode_token1] = ACTIONS(367), + [aux_sym_argument_mode_token2] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(373), + [aux_sym_accumulate_expression_token1] = ACTIONS(375), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [241] = { - [sym_body] = STATE(4366), + [sym_body] = STATE(4694), [sym_comment] = STATE(241), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(241), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(375), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(379), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [242] = { + [sym_body] = STATE(4429), [sym_comment] = STATE(242), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(242), - [sym__function_call_arguments] = STATE(4587), - [sym_argument_mode] = STATE(4530), - [sym__function_argument_with_mode] = STATE(3635), - [sym_function_call_argument] = STATE(3434), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_can_find_expression] = STATE(38), - [sym_accumulate_aggregate] = STATE(3120), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(859), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(339), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(343), - [aux_sym_ambiguous_expression_token1] = ACTIONS(345), - [aux_sym_current_changed_expression_token1] = ACTIONS(347), - [aux_sym_locked_expression_token1] = ACTIONS(349), - [aux_sym_input_expression_token1] = ACTIONS(351), - [aux_sym_scope_tuning_token1] = ACTIONS(353), - [aux_sym_argument_mode_token1] = ACTIONS(355), - [aux_sym_argument_mode_token2] = ACTIONS(355), - [aux_sym_if_statement_token1] = ACTIONS(357), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(361), - [aux_sym_accumulate_expression_token1] = ACTIONS(363), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(381), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [243] = { - [sym_body] = STATE(4100), + [sym_body] = STATE(4580), [sym_comment] = STATE(243), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(243), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(377), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(383), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [244] = { - [sym_body] = STATE(4460), + [sym_body] = STATE(4226), [sym_comment] = STATE(244), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(244), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(379), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(385), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [245] = { + [sym_body] = STATE(4129), [sym_comment] = STATE(245), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(245), - [sym__function_call_arguments] = STATE(4587), - [sym_argument_mode] = STATE(4530), - [sym__function_argument_with_mode] = STATE(3635), - [sym_function_call_argument] = STATE(3434), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_can_find_expression] = STATE(38), - [sym_accumulate_aggregate] = STATE(3073), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(859), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(339), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(343), - [aux_sym_ambiguous_expression_token1] = ACTIONS(345), - [aux_sym_current_changed_expression_token1] = ACTIONS(347), - [aux_sym_locked_expression_token1] = ACTIONS(349), - [aux_sym_input_expression_token1] = ACTIONS(351), - [aux_sym_scope_tuning_token1] = ACTIONS(353), - [aux_sym_argument_mode_token1] = ACTIONS(355), - [aux_sym_argument_mode_token2] = ACTIONS(355), - [aux_sym_if_statement_token1] = ACTIONS(357), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(361), - [aux_sym_accumulate_expression_token1] = ACTIONS(363), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(387), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [246] = { - [sym_body] = STATE(4560), + [sym_body] = STATE(4444), [sym_comment] = STATE(246), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(246), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(381), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(389), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [247] = { - [sym_body] = STATE(4258), + [sym_body] = STATE(4141), [sym_comment] = STATE(247), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(247), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(383), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(391), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [248] = { - [sym_body] = STATE(4547), + [sym_body] = STATE(4584), [sym_comment] = STATE(248), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(248), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(385), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(393), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [249] = { [sym_comment] = STATE(249), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(249), - [sym__function_call_arguments] = STATE(4587), - [sym_argument_mode] = STATE(4530), - [sym__function_argument_with_mode] = STATE(3635), - [sym_function_call_argument] = STATE(3434), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_can_find_expression] = STATE(38), - [sym_accumulate_aggregate] = STATE(3331), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(859), - [sym_identifier] = ACTIONS(323), + [sym__function_call_arguments] = STATE(4294), + [sym_argument_mode] = STATE(4606), + [sym__function_argument_with_mode] = STATE(3622), + [sym_function_call_argument] = STATE(3082), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_can_find_expression] = STATE(45), + [sym_accumulate_aggregate] = STATE(3228), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(1081), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(339), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(343), - [aux_sym_ambiguous_expression_token1] = ACTIONS(345), - [aux_sym_current_changed_expression_token1] = ACTIONS(347), - [aux_sym_locked_expression_token1] = ACTIONS(349), - [aux_sym_input_expression_token1] = ACTIONS(351), - [aux_sym_scope_tuning_token1] = ACTIONS(353), - [aux_sym_argument_mode_token1] = ACTIONS(355), - [aux_sym_argument_mode_token2] = ACTIONS(355), - [aux_sym_if_statement_token1] = ACTIONS(357), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(361), - [aux_sym_accumulate_expression_token1] = ACTIONS(363), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(351), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(355), + [aux_sym_ambiguous_expression_token1] = ACTIONS(357), + [aux_sym_current_changed_expression_token1] = ACTIONS(359), + [aux_sym_locked_expression_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(363), + [aux_sym_scope_tuning_token1] = ACTIONS(365), + [aux_sym_argument_mode_token1] = ACTIONS(367), + [aux_sym_argument_mode_token2] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(373), + [aux_sym_accumulate_expression_token1] = ACTIONS(375), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [250] = { - [sym_body] = STATE(4707), + [sym_body] = STATE(4376), [sym_comment] = STATE(250), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(250), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(387), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(395), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [251] = { - [sym_body] = STATE(4386), + [sym_body] = STATE(4494), [sym_comment] = STATE(251), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(251), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(389), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(397), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [252] = { - [sym_body] = STATE(4540), + [sym_body] = STATE(4380), [sym_comment] = STATE(252), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(252), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(391), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(399), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [253] = { - [sym_body] = STATE(4686), [sym_comment] = STATE(253), - [sym_qualified_name] = STATE(4699), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(253), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym__function_call_arguments] = STATE(4294), + [sym_argument_mode] = STATE(4606), + [sym__function_argument_with_mode] = STATE(3622), + [sym_function_call_argument] = STATE(3082), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_can_find_expression] = STATE(45), + [sym_accumulate_aggregate] = STATE(3152), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(1081), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(393), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(351), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(355), + [aux_sym_ambiguous_expression_token1] = ACTIONS(357), + [aux_sym_current_changed_expression_token1] = ACTIONS(359), + [aux_sym_locked_expression_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(363), + [aux_sym_scope_tuning_token1] = ACTIONS(365), + [aux_sym_argument_mode_token1] = ACTIONS(367), + [aux_sym_argument_mode_token2] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(373), + [aux_sym_accumulate_expression_token1] = ACTIONS(375), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [254] = { - [sym_body] = STATE(4565), [sym_comment] = STATE(254), - [sym_qualified_name] = STATE(4699), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(254), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym__function_call_arguments] = STATE(4294), + [sym_argument_mode] = STATE(4606), + [sym__function_argument_with_mode] = STATE(3622), + [sym_function_call_argument] = STATE(3082), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_can_find_expression] = STATE(45), + [sym_accumulate_aggregate] = STATE(3151), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(1081), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(395), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(351), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(355), + [aux_sym_ambiguous_expression_token1] = ACTIONS(357), + [aux_sym_current_changed_expression_token1] = ACTIONS(359), + [aux_sym_locked_expression_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(363), + [aux_sym_scope_tuning_token1] = ACTIONS(365), + [aux_sym_argument_mode_token1] = ACTIONS(367), + [aux_sym_argument_mode_token2] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(373), + [aux_sym_accumulate_expression_token1] = ACTIONS(375), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [255] = { - [sym_body] = STATE(4430), + [sym_body] = STATE(4665), [sym_comment] = STATE(255), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(255), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(397), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(401), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [256] = { - [sym_body] = STATE(4428), + [sym_body] = STATE(4617), [sym_comment] = STATE(256), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(256), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(399), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(403), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [257] = { - [sym_body] = STATE(4382), + [sym_body] = STATE(4520), [sym_comment] = STATE(257), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(257), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(401), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(405), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [258] = { - [sym_body] = STATE(4320), [sym_comment] = STATE(258), - [sym_qualified_name] = STATE(4699), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(258), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym__function_call_arguments] = STATE(4294), + [sym_argument_mode] = STATE(4606), + [sym__function_argument_with_mode] = STATE(3622), + [sym_function_call_argument] = STATE(3082), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_can_find_expression] = STATE(45), + [sym_accumulate_aggregate] = STATE(3490), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(1081), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(403), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(351), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(355), + [aux_sym_ambiguous_expression_token1] = ACTIONS(357), + [aux_sym_current_changed_expression_token1] = ACTIONS(359), + [aux_sym_locked_expression_token1] = ACTIONS(361), + [aux_sym_input_expression_token1] = ACTIONS(363), + [aux_sym_scope_tuning_token1] = ACTIONS(365), + [aux_sym_argument_mode_token1] = ACTIONS(367), + [aux_sym_argument_mode_token2] = ACTIONS(367), + [aux_sym_if_statement_token1] = ACTIONS(369), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(373), + [aux_sym_accumulate_expression_token1] = ACTIONS(375), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [259] = { + [sym_body] = STATE(4507), [sym_comment] = STATE(259), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(259), - [sym__function_call_arguments] = STATE(4587), - [sym_argument_mode] = STATE(4530), - [sym__function_argument_with_mode] = STATE(3635), - [sym_function_call_argument] = STATE(3434), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_can_find_expression] = STATE(38), - [sym_accumulate_aggregate] = STATE(3448), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(859), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(339), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(343), - [aux_sym_ambiguous_expression_token1] = ACTIONS(345), - [aux_sym_current_changed_expression_token1] = ACTIONS(347), - [aux_sym_locked_expression_token1] = ACTIONS(349), - [aux_sym_input_expression_token1] = ACTIONS(351), - [aux_sym_scope_tuning_token1] = ACTIONS(353), - [aux_sym_argument_mode_token1] = ACTIONS(355), - [aux_sym_argument_mode_token2] = ACTIONS(355), - [aux_sym_if_statement_token1] = ACTIONS(357), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(361), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(361), - [aux_sym_accumulate_expression_token1] = ACTIONS(363), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(407), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [260] = { - [sym_body] = STATE(4685), + [sym_body] = STATE(4505), [sym_comment] = STATE(260), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(260), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(405), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(409), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [261] = { - [sym_body] = STATE(4491), + [sym_body] = STATE(4550), [sym_comment] = STATE(261), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(261), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(407), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(411), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [262] = { - [sym_body] = STATE(4336), + [sym_body] = STATE(4392), [sym_comment] = STATE(262), - [sym_qualified_name] = STATE(4699), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(262), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(269), - [sym_identifier] = ACTIONS(219), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(409), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [aux_sym__block_terminator_token1] = ACTIONS(413), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [263] = { + [sym_body] = STATE(4642), [sym_comment] = STATE(263), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(263), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(597), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1872), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(411), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(415), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [264] = { + [sym_body] = STATE(4473), [sym_comment] = STATE(264), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(264), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(591), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1869), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(441), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(417), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [265] = { [sym_comment] = STATE(265), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(265), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(595), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1871), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(606), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1875), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(443), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(419), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [266] = { [sym_comment] = STATE(266), - [sym_qualified_name] = STATE(4699), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(266), - [sym_assignment] = STATE(4698), - [sym_variable_definition] = STATE(1158), - [sym_variable_assignment] = STATE(1158), - [sym_buffer_definition] = STATE(1158), - [sym_query_definition] = STATE(1158), - [sym_function_call_statement] = STATE(1158), - [sym_function_call] = STATE(4693), - [sym_if_statement] = STATE(1158), - [sym_label] = STATE(1163), - [sym_repeat_statement] = STATE(1158), - [sym_procedure_statement] = STATE(1158), - [sym_procedure_parameter_definition] = STATE(1158), - [sym_function_statement] = STATE(1158), - [sym_return_statement] = STATE(1158), - [sym_interface_statement] = STATE(1158), - [sym_using_statement] = STATE(1158), - [sym_class_statement] = STATE(1158), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1158), - [sym_input_close_statement] = STATE(1158), - [sym_output_close_statement] = STATE(1158), - [sym__stream_statement] = STATE(1158), - [sym_input_stream_statement] = STATE(1169), - [sym_output_stream_statement] = STATE(1169), - [sym_do_block] = STATE(1158), - [sym_case_statement] = STATE(1158), - [sym_for_statement] = STATE(1158), - [sym_find_statement] = STATE(1158), - [sym_abl_statement] = STATE(1158), - [sym_assign_statement] = STATE(1158), - [sym_catch_statement] = STATE(1158), - [sym_finally_statement] = STATE(1158), - [sym_accumulate_statement] = STATE(1158), - [sym_undo_statement] = STATE(1158), - [sym_error_scope_statement] = STATE(1158), - [sym_temp_table_definition] = STATE(1158), - [sym_on_statement] = STATE(1158), - [sym__statement] = STATE(1175), - [aux_sym_source_code_repeat1] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(445), - [sym_identifier] = ACTIONS(11), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(603), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1872), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(13), - [aux_sym_primitive_type_token19] = ACTIONS(15), - [aux_sym_variable_definition_token1] = ACTIONS(17), - [aux_sym_variable_definition_token2] = ACTIONS(19), - [aux_sym_buffer_definition_token2] = ACTIONS(21), - [aux_sym_argument_mode_token1] = ACTIONS(23), - [aux_sym_if_statement_token1] = ACTIONS(25), - [aux_sym_repeat_statement_token1] = ACTIONS(27), - [aux_sym__procedure_terminator_token1] = ACTIONS(29), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(31), - [aux_sym__function_terminator_token1] = ACTIONS(33), - [aux_sym_interface_statement_token1] = ACTIONS(35), - [aux_sym_using_statement_token1] = ACTIONS(37), - [aux_sym_on_error_phrase_token1] = ACTIONS(39), - [aux_sym_on_error_phrase_token3] = ACTIONS(41), - [aux_sym_do_block_token1] = ACTIONS(43), - [aux_sym__case_terminator_token1] = ACTIONS(45), - [aux_sym_find_statement_token1] = ACTIONS(47), - [aux_sym_assign_statement_token1] = ACTIONS(49), - [aux_sym_catch_statement_token1] = ACTIONS(51), - [aux_sym_finally_statement_token1] = ACTIONS(53), - [aux_sym_accumulate_statement_token1] = ACTIONS(55), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(57), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(449), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [267] = { [sym_comment] = STATE(267), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(267), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(604), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1875), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(594), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1880), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(447), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(451), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [268] = { [sym_comment] = STATE(268), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(268), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(593), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1866), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(608), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1882), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(449), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(453), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [269] = { [sym_comment] = STATE(269), - [sym_qualified_name] = STATE(4699), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(269), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(219), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(597), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1886), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(451), - [aux_sym_input_expression_token1] = ACTIONS(223), - [aux_sym_primitive_type_token19] = ACTIONS(225), - [aux_sym_variable_definition_token1] = ACTIONS(227), - [aux_sym_variable_definition_token2] = ACTIONS(229), - [aux_sym_buffer_definition_token2] = ACTIONS(231), - [aux_sym_argument_mode_token1] = ACTIONS(233), - [aux_sym_if_statement_token1] = ACTIONS(235), - [aux_sym_repeat_statement_token1] = ACTIONS(237), - [aux_sym__procedure_terminator_token1] = ACTIONS(239), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(241), - [aux_sym__function_terminator_token1] = ACTIONS(243), - [aux_sym_interface_statement_token1] = ACTIONS(245), - [aux_sym_using_statement_token1] = ACTIONS(247), - [aux_sym_on_error_phrase_token1] = ACTIONS(249), - [aux_sym_on_error_phrase_token3] = ACTIONS(251), - [aux_sym_do_block_token1] = ACTIONS(253), - [aux_sym__case_terminator_token1] = ACTIONS(255), - [aux_sym_find_statement_token1] = ACTIONS(257), - [aux_sym_assign_statement_token1] = ACTIONS(259), - [aux_sym_catch_statement_token1] = ACTIONS(261), - [aux_sym_finally_statement_token1] = ACTIONS(263), - [aux_sym_accumulate_statement_token1] = ACTIONS(265), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(267), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(267), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(455), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [270] = { [sym_comment] = STATE(270), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(270), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(592), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1867), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(596), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1894), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(453), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(457), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [271] = { [sym_comment] = STATE(271), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(271), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(602), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1886), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(609), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1883), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(455), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(459), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [272] = { [sym_comment] = STATE(272), - [sym_qualified_name] = STATE(4699), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(272), - [sym_assignment] = STATE(4698), - [sym_variable_definition] = STATE(1158), - [sym_variable_assignment] = STATE(1158), - [sym_buffer_definition] = STATE(1158), - [sym_query_definition] = STATE(1158), - [sym_function_call_statement] = STATE(1158), - [sym_function_call] = STATE(4693), - [sym_if_statement] = STATE(1158), - [sym_label] = STATE(1163), - [sym_repeat_statement] = STATE(1158), - [sym_procedure_statement] = STATE(1158), - [sym_procedure_parameter_definition] = STATE(1158), - [sym_function_statement] = STATE(1158), - [sym_return_statement] = STATE(1158), - [sym_interface_statement] = STATE(1158), - [sym_using_statement] = STATE(1158), - [sym_class_statement] = STATE(1158), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1158), - [sym_input_close_statement] = STATE(1158), - [sym_output_close_statement] = STATE(1158), - [sym__stream_statement] = STATE(1158), - [sym_input_stream_statement] = STATE(1169), - [sym_output_stream_statement] = STATE(1169), - [sym_do_block] = STATE(1158), - [sym_case_statement] = STATE(1158), - [sym_for_statement] = STATE(1158), - [sym_find_statement] = STATE(1158), - [sym_abl_statement] = STATE(1158), - [sym_assign_statement] = STATE(1158), - [sym_catch_statement] = STATE(1158), - [sym_finally_statement] = STATE(1158), - [sym_accumulate_statement] = STATE(1158), - [sym_undo_statement] = STATE(1158), - [sym_error_scope_statement] = STATE(1158), - [sym_temp_table_definition] = STATE(1158), - [sym_on_statement] = STATE(1158), - [sym__statement] = STATE(1175), - [aux_sym_source_code_repeat1] = STATE(272), - [ts_builtin_sym_end] = ACTIONS(457), - [sym_identifier] = ACTIONS(459), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(607), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1869), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(462), - [aux_sym_primitive_type_token19] = ACTIONS(465), - [aux_sym_variable_definition_token1] = ACTIONS(468), - [aux_sym_variable_definition_token2] = ACTIONS(471), - [aux_sym_buffer_definition_token2] = ACTIONS(474), - [aux_sym_argument_mode_token1] = ACTIONS(477), - [aux_sym_if_statement_token1] = ACTIONS(480), - [aux_sym_repeat_statement_token1] = ACTIONS(483), - [aux_sym__procedure_terminator_token1] = ACTIONS(486), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(489), - [aux_sym__function_terminator_token1] = ACTIONS(492), - [aux_sym_interface_statement_token1] = ACTIONS(495), - [aux_sym_using_statement_token1] = ACTIONS(498), - [aux_sym_on_error_phrase_token1] = ACTIONS(501), - [aux_sym_on_error_phrase_token3] = ACTIONS(504), - [aux_sym_do_block_token1] = ACTIONS(507), - [aux_sym__case_terminator_token1] = ACTIONS(510), - [aux_sym_find_statement_token1] = ACTIONS(513), - [aux_sym_assign_statement_token1] = ACTIONS(516), - [aux_sym_catch_statement_token1] = ACTIONS(519), - [aux_sym_finally_statement_token1] = ACTIONS(522), - [aux_sym_accumulate_statement_token1] = ACTIONS(525), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(528), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(528), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(461), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [273] = { [sym_comment] = STATE(273), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(273), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(594), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1865), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(598), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1881), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(531), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(463), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [274] = { [sym_comment] = STATE(274), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(274), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), [sym__expression] = STATE(600), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1883), - [sym_identifier] = ACTIONS(323), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1871), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(533), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(465), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [275] = { [sym_comment] = STATE(275), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(275), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(601), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1864), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(227), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(535), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(467), + [aux_sym_input_expression_token1] = ACTIONS(231), + [aux_sym_primitive_type_token19] = ACTIONS(233), + [aux_sym_variable_definition_token1] = ACTIONS(235), + [aux_sym_variable_definition_token2] = ACTIONS(237), + [aux_sym_buffer_definition_token2] = ACTIONS(239), + [aux_sym_argument_mode_token1] = ACTIONS(241), + [aux_sym_if_statement_token1] = ACTIONS(243), + [aux_sym_repeat_statement_token1] = ACTIONS(245), + [aux_sym__procedure_terminator_token1] = ACTIONS(247), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(249), + [aux_sym__function_terminator_token1] = ACTIONS(251), + [aux_sym_interface_statement_token1] = ACTIONS(253), + [aux_sym_using_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(257), + [aux_sym_on_error_phrase_token3] = ACTIONS(259), + [aux_sym_do_block_token1] = ACTIONS(261), + [aux_sym__case_terminator_token1] = ACTIONS(263), + [aux_sym_find_statement_token1] = ACTIONS(265), + [aux_sym_assign_statement_token1] = ACTIONS(267), + [aux_sym_catch_statement_token1] = ACTIONS(269), + [aux_sym_finally_statement_token1] = ACTIONS(271), + [aux_sym_accumulate_statement_token1] = ACTIONS(273), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(275), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(275), }, [276] = { [sym_comment] = STATE(276), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(276), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(605), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1860), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(602), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1878), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(537), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(469), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [277] = { [sym_comment] = STATE(277), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(277), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(596), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1863), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4720), + [sym_variable_definition] = STATE(1150), + [sym_variable_assignment] = STATE(1150), + [sym_buffer_definition] = STATE(1150), + [sym_query_definition] = STATE(1150), + [sym_function_call_statement] = STATE(1150), + [sym_function_call] = STATE(4719), + [sym_if_statement] = STATE(1150), + [sym_label] = STATE(1151), + [sym_repeat_statement] = STATE(1150), + [sym_procedure_statement] = STATE(1150), + [sym_procedure_parameter_definition] = STATE(1150), + [sym_function_statement] = STATE(1150), + [sym_return_statement] = STATE(1150), + [sym_interface_statement] = STATE(1150), + [sym_using_statement] = STATE(1150), + [sym_class_statement] = STATE(1150), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1150), + [sym_input_close_statement] = STATE(1150), + [sym_output_close_statement] = STATE(1150), + [sym__stream_statement] = STATE(1150), + [sym_input_stream_statement] = STATE(1155), + [sym_output_stream_statement] = STATE(1155), + [sym_do_block] = STATE(1150), + [sym_case_statement] = STATE(1150), + [sym_for_statement] = STATE(1150), + [sym_find_statement] = STATE(1150), + [sym_abl_statement] = STATE(1150), + [sym_assign_statement] = STATE(1150), + [sym_catch_statement] = STATE(1150), + [sym_finally_statement] = STATE(1150), + [sym_accumulate_statement] = STATE(1150), + [sym_undo_statement] = STATE(1150), + [sym_error_scope_statement] = STATE(1150), + [sym_temp_table_definition] = STATE(1150), + [sym_on_statement] = STATE(1150), + [sym__statement] = STATE(1156), + [aux_sym_source_code_repeat1] = STATE(278), + [ts_builtin_sym_end] = ACTIONS(471), + [sym_identifier] = ACTIONS(11), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(539), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(13), + [aux_sym_primitive_type_token19] = ACTIONS(15), + [aux_sym_variable_definition_token1] = ACTIONS(17), + [aux_sym_variable_definition_token2] = ACTIONS(19), + [aux_sym_buffer_definition_token2] = ACTIONS(21), + [aux_sym_argument_mode_token1] = ACTIONS(23), + [aux_sym_if_statement_token1] = ACTIONS(25), + [aux_sym_repeat_statement_token1] = ACTIONS(27), + [aux_sym__procedure_terminator_token1] = ACTIONS(29), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(31), + [aux_sym__function_terminator_token1] = ACTIONS(33), + [aux_sym_interface_statement_token1] = ACTIONS(35), + [aux_sym_using_statement_token1] = ACTIONS(37), + [aux_sym_on_error_phrase_token1] = ACTIONS(39), + [aux_sym_on_error_phrase_token3] = ACTIONS(41), + [aux_sym_do_block_token1] = ACTIONS(43), + [aux_sym__case_terminator_token1] = ACTIONS(45), + [aux_sym_find_statement_token1] = ACTIONS(47), + [aux_sym_assign_statement_token1] = ACTIONS(49), + [aux_sym_catch_statement_token1] = ACTIONS(51), + [aux_sym_finally_statement_token1] = ACTIONS(53), + [aux_sym_accumulate_statement_token1] = ACTIONS(55), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(57), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(57), }, [278] = { [sym_comment] = STATE(278), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(278), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(599), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1880), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4720), + [sym_variable_definition] = STATE(1150), + [sym_variable_assignment] = STATE(1150), + [sym_buffer_definition] = STATE(1150), + [sym_query_definition] = STATE(1150), + [sym_function_call_statement] = STATE(1150), + [sym_function_call] = STATE(4719), + [sym_if_statement] = STATE(1150), + [sym_label] = STATE(1151), + [sym_repeat_statement] = STATE(1150), + [sym_procedure_statement] = STATE(1150), + [sym_procedure_parameter_definition] = STATE(1150), + [sym_function_statement] = STATE(1150), + [sym_return_statement] = STATE(1150), + [sym_interface_statement] = STATE(1150), + [sym_using_statement] = STATE(1150), + [sym_class_statement] = STATE(1150), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1150), + [sym_input_close_statement] = STATE(1150), + [sym_output_close_statement] = STATE(1150), + [sym__stream_statement] = STATE(1150), + [sym_input_stream_statement] = STATE(1155), + [sym_output_stream_statement] = STATE(1155), + [sym_do_block] = STATE(1150), + [sym_case_statement] = STATE(1150), + [sym_for_statement] = STATE(1150), + [sym_find_statement] = STATE(1150), + [sym_abl_statement] = STATE(1150), + [sym_assign_statement] = STATE(1150), + [sym_catch_statement] = STATE(1150), + [sym_finally_statement] = STATE(1150), + [sym_accumulate_statement] = STATE(1150), + [sym_undo_statement] = STATE(1150), + [sym_error_scope_statement] = STATE(1150), + [sym_temp_table_definition] = STATE(1150), + [sym_on_statement] = STATE(1150), + [sym__statement] = STATE(1156), + [aux_sym_source_code_repeat1] = STATE(278), + [ts_builtin_sym_end] = ACTIONS(473), + [sym_identifier] = ACTIONS(475), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(541), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym_input_expression_token1] = ACTIONS(478), + [aux_sym_primitive_type_token19] = ACTIONS(481), + [aux_sym_variable_definition_token1] = ACTIONS(484), + [aux_sym_variable_definition_token2] = ACTIONS(487), + [aux_sym_buffer_definition_token2] = ACTIONS(490), + [aux_sym_argument_mode_token1] = ACTIONS(493), + [aux_sym_if_statement_token1] = ACTIONS(496), + [aux_sym_repeat_statement_token1] = ACTIONS(499), + [aux_sym__procedure_terminator_token1] = ACTIONS(502), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(505), + [aux_sym__function_terminator_token1] = ACTIONS(508), + [aux_sym_interface_statement_token1] = ACTIONS(511), + [aux_sym_using_statement_token1] = ACTIONS(514), + [aux_sym_on_error_phrase_token1] = ACTIONS(517), + [aux_sym_on_error_phrase_token3] = ACTIONS(520), + [aux_sym_do_block_token1] = ACTIONS(523), + [aux_sym__case_terminator_token1] = ACTIONS(526), + [aux_sym_find_statement_token1] = ACTIONS(529), + [aux_sym_assign_statement_token1] = ACTIONS(532), + [aux_sym_catch_statement_token1] = ACTIONS(535), + [aux_sym_finally_statement_token1] = ACTIONS(538), + [aux_sym_accumulate_statement_token1] = ACTIONS(541), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(544), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(544), }, [279] = { [sym_comment] = STATE(279), - [sym_qualified_name] = STATE(4699), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(279), - [sym_assignment] = STATE(4066), - [sym_variable_definition] = STATE(1527), - [sym_variable_assignment] = STATE(1527), - [sym_buffer_definition] = STATE(1527), - [sym_query_definition] = STATE(1527), - [sym_function_call_statement] = STATE(1527), - [sym_function_call] = STATE(4068), - [sym_if_statement] = STATE(1527), - [sym_label] = STATE(1528), - [sym_repeat_statement] = STATE(1527), - [sym_procedure_statement] = STATE(1527), - [sym_procedure_parameter_definition] = STATE(1527), - [sym_function_statement] = STATE(1527), - [sym_return_statement] = STATE(1527), - [sym_interface_statement] = STATE(1527), - [sym_using_statement] = STATE(1527), - [sym_class_statement] = STATE(1527), - [sym_object_access] = STATE(3544), - [sym_stream_definition] = STATE(1527), - [sym_input_close_statement] = STATE(1527), - [sym_output_close_statement] = STATE(1527), - [sym__stream_statement] = STATE(1527), - [sym_input_stream_statement] = STATE(1529), - [sym_output_stream_statement] = STATE(1529), - [sym_do_block] = STATE(1527), - [sym_case_statement] = STATE(1527), - [sym_for_statement] = STATE(1527), - [sym_find_statement] = STATE(1527), - [sym_abl_statement] = STATE(1527), - [sym_assign_statement] = STATE(1527), - [sym_catch_statement] = STATE(1527), - [sym_finally_statement] = STATE(1527), - [sym_accumulate_statement] = STATE(1527), - [sym_undo_statement] = STATE(1527), - [sym_error_scope_statement] = STATE(1527), - [sym_temp_table_definition] = STATE(1527), - [sym_on_statement] = STATE(1527), - [sym__statement] = STATE(1530), - [aux_sym_source_code_repeat1] = STATE(279), - [sym_identifier] = ACTIONS(543), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(599), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1892), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(546), - [aux_sym_input_expression_token1] = ACTIONS(548), - [aux_sym_primitive_type_token19] = ACTIONS(551), - [aux_sym_variable_definition_token1] = ACTIONS(554), - [aux_sym_variable_definition_token2] = ACTIONS(557), - [aux_sym_buffer_definition_token2] = ACTIONS(560), - [aux_sym_argument_mode_token1] = ACTIONS(563), - [aux_sym_if_statement_token1] = ACTIONS(566), - [aux_sym_repeat_statement_token1] = ACTIONS(569), - [aux_sym__procedure_terminator_token1] = ACTIONS(572), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(575), - [aux_sym__function_terminator_token1] = ACTIONS(578), - [aux_sym_interface_statement_token1] = ACTIONS(581), - [aux_sym_using_statement_token1] = ACTIONS(584), - [aux_sym_on_error_phrase_token1] = ACTIONS(587), - [aux_sym_on_error_phrase_token3] = ACTIONS(590), - [aux_sym_do_block_token1] = ACTIONS(593), - [aux_sym__case_terminator_token1] = ACTIONS(596), - [aux_sym_find_statement_token1] = ACTIONS(599), - [aux_sym_assign_statement_token1] = ACTIONS(602), - [aux_sym_catch_statement_token1] = ACTIONS(605), - [aux_sym_finally_statement_token1] = ACTIONS(608), - [aux_sym_accumulate_statement_token1] = ACTIONS(611), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(614), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(547), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [280] = { [sym_comment] = STATE(280), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_qualified_name] = STATE(4721), [sym_include] = STATE(280), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(603), - [aux_sym_qualified_name_repeat1] = STATE(719), - [aux_sym_can_find_expression_repeat2] = STATE(1858), - [sym_identifier] = ACTIONS(323), + [sym_assignment] = STATE(4300), + [sym_variable_definition] = STATE(1133), + [sym_variable_assignment] = STATE(1133), + [sym_buffer_definition] = STATE(1133), + [sym_query_definition] = STATE(1133), + [sym_function_call_statement] = STATE(1133), + [sym_function_call] = STATE(4341), + [sym_if_statement] = STATE(1133), + [sym_label] = STATE(1530), + [sym_repeat_statement] = STATE(1133), + [sym_procedure_statement] = STATE(1133), + [sym_procedure_parameter_definition] = STATE(1133), + [sym_function_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_interface_statement] = STATE(1133), + [sym_using_statement] = STATE(1133), + [sym_class_statement] = STATE(1133), + [sym_object_access] = STATE(3560), + [sym_stream_definition] = STATE(1133), + [sym_input_close_statement] = STATE(1133), + [sym_output_close_statement] = STATE(1133), + [sym__stream_statement] = STATE(1133), + [sym_input_stream_statement] = STATE(1531), + [sym_output_stream_statement] = STATE(1531), + [sym_do_block] = STATE(1133), + [sym_case_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_find_statement] = STATE(1133), + [sym_abl_statement] = STATE(1133), + [sym_assign_statement] = STATE(1133), + [sym_catch_statement] = STATE(1133), + [sym_finally_statement] = STATE(1133), + [sym_accumulate_statement] = STATE(1133), + [sym_undo_statement] = STATE(1133), + [sym_error_scope_statement] = STATE(1133), + [sym_temp_table_definition] = STATE(1133), + [sym_on_statement] = STATE(1133), + [sym__statement] = STATE(1532), + [aux_sym_source_code_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(549), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(617), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), - [sym__namedot] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(552), + [aux_sym_input_expression_token1] = ACTIONS(554), + [aux_sym_primitive_type_token19] = ACTIONS(557), + [aux_sym_variable_definition_token1] = ACTIONS(560), + [aux_sym_variable_definition_token2] = ACTIONS(563), + [aux_sym_buffer_definition_token2] = ACTIONS(566), + [aux_sym_argument_mode_token1] = ACTIONS(569), + [aux_sym_if_statement_token1] = ACTIONS(572), + [aux_sym_repeat_statement_token1] = ACTIONS(575), + [aux_sym__procedure_terminator_token1] = ACTIONS(578), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(581), + [aux_sym__function_terminator_token1] = ACTIONS(584), + [aux_sym_interface_statement_token1] = ACTIONS(587), + [aux_sym_using_statement_token1] = ACTIONS(590), + [aux_sym_on_error_phrase_token1] = ACTIONS(593), + [aux_sym_on_error_phrase_token3] = ACTIONS(596), + [aux_sym_do_block_token1] = ACTIONS(599), + [aux_sym__case_terminator_token1] = ACTIONS(602), + [aux_sym_find_statement_token1] = ACTIONS(605), + [aux_sym_assign_statement_token1] = ACTIONS(608), + [aux_sym_catch_statement_token1] = ACTIONS(611), + [aux_sym_finally_statement_token1] = ACTIONS(614), + [aux_sym_accumulate_statement_token1] = ACTIONS(617), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(620), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(620), }, [281] = { [sym_comment] = STATE(281), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(281), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(213), - [sym__terminator] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_PLUS] = ACTIONS(213), - [anon_sym_DASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_LT_EQ] = ACTIONS(213), - [anon_sym_LT_GT] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(213), - [aux_sym__comparison_operator_token1] = ACTIONS(213), - [aux_sym__comparison_operator_token2] = ACTIONS(213), - [aux_sym__comparison_operator_token3] = ACTIONS(213), - [aux_sym__comparison_operator_token4] = ACTIONS(213), - [aux_sym__comparison_operator_token5] = ACTIONS(213), - [aux_sym__comparison_operator_token6] = ACTIONS(213), - [aux_sym__comparison_operator_token7] = ACTIONS(213), - [aux_sym__comparison_operator_token8] = ACTIONS(213), - [aux_sym__comparison_operator_token9] = ACTIONS(213), - [aux_sym_variable_tuning_token1] = ACTIONS(213), - [aux_sym_variable_tuning_token2] = ACTIONS(213), - [aux_sym_variable_tuning_token3] = ACTIONS(213), - [aux_sym_variable_tuning_token4] = ACTIONS(213), - [aux_sym_variable_tuning_token5] = ACTIONS(213), - [aux_sym_variable_tuning_token6] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [aux_sym_if_statement_token2] = ACTIONS(213), - [aux_sym_else_if_statement_token1] = ACTIONS(213), - [anon_sym_COLON] = ACTIONS(213), - [aux_sym_while_phrase_token1] = ACTIONS(213), - [aux_sym_property_tuning_token1] = ACTIONS(213), - [aux_sym_event_definition_token1] = ACTIONS(213), - [anon_sym_NO_DASHERROR] = ACTIONS(619), - [aux_sym_input_stream_tuning_token1] = ACTIONS(213), - [aux_sym_input_stream_tuning_token2] = ACTIONS(213), - [aux_sym_input_stream_tuning_token3] = ACTIONS(213), - [aux_sym_input_stream_tuning_token4] = ACTIONS(213), - [aux_sym_input_stream_tuning_token5] = ACTIONS(213), - [aux_sym_input_stream_tuning_token6] = ACTIONS(213), - [aux_sym_input_stream_tuning_token7] = ACTIONS(213), - [aux_sym_input_stream_tuning_token8] = ACTIONS(213), - [aux_sym_input_stream_tuning_token9] = ACTIONS(213), - [aux_sym_input_stream_tuning_token11] = ACTIONS(213), - [aux_sym_output_stream_tuning_token1] = ACTIONS(213), - [aux_sym_output_stream_tuning_token2] = ACTIONS(213), - [aux_sym_output_stream_tuning_token3] = ACTIONS(213), - [aux_sym_output_stream_tuning_token4] = ACTIONS(213), - [aux_sym_output_stream_tuning_token5] = ACTIONS(213), - [aux_sym_output_stream_tuning_token6] = ACTIONS(213), - [aux_sym_output_stream_tuning_token7] = ACTIONS(213), - [aux_sym_output_stream_tuning_token8] = ACTIONS(213), - [aux_sym_output_stream_statement_token1] = ACTIONS(213), - [aux_sym_on_error_phrase_token1] = ACTIONS(213), - [aux_sym_stop_after_phrase_token1] = ACTIONS(213), - [aux_sym_do_tuning_token1] = ACTIONS(213), - [anon_sym_BY] = ACTIONS(213), - [aux_sym_of_token1] = ACTIONS(213), - [aux_sym_field_definition_token1] = ACTIONS(213), - [aux_sym_index_definition_token1] = ACTIONS(213), - [aux_sym_on_statement_token1] = ACTIONS(213), - [sym__or_operator] = ACTIONS(213), - [sym__and_operator] = ACTIONS(213), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(595), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1890), + [sym_identifier] = ACTIONS(335), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(623), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [282] = { [sym_comment] = STATE(282), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(282), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(623), - [sym__terminator] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_LT_GT] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(623), - [aux_sym__comparison_operator_token1] = ACTIONS(623), - [aux_sym__comparison_operator_token2] = ACTIONS(623), - [aux_sym__comparison_operator_token3] = ACTIONS(623), - [aux_sym__comparison_operator_token4] = ACTIONS(623), - [aux_sym__comparison_operator_token5] = ACTIONS(623), - [aux_sym__comparison_operator_token6] = ACTIONS(623), - [aux_sym__comparison_operator_token7] = ACTIONS(623), - [aux_sym__comparison_operator_token8] = ACTIONS(623), - [aux_sym__comparison_operator_token9] = ACTIONS(623), - [aux_sym_variable_tuning_token1] = ACTIONS(623), - [aux_sym_variable_tuning_token2] = ACTIONS(623), - [aux_sym_variable_tuning_token3] = ACTIONS(623), - [aux_sym_variable_tuning_token4] = ACTIONS(623), - [aux_sym_variable_tuning_token5] = ACTIONS(623), - [aux_sym_variable_tuning_token6] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [aux_sym_if_statement_token2] = ACTIONS(623), - [aux_sym_else_if_statement_token1] = ACTIONS(623), - [anon_sym_COLON] = ACTIONS(623), - [aux_sym_while_phrase_token1] = ACTIONS(623), - [aux_sym_property_tuning_token1] = ACTIONS(623), - [aux_sym_event_definition_token1] = ACTIONS(623), - [anon_sym_NO_DASHERROR] = ACTIONS(625), - [aux_sym_input_stream_tuning_token1] = ACTIONS(623), - [aux_sym_input_stream_tuning_token2] = ACTIONS(623), - [aux_sym_input_stream_tuning_token3] = ACTIONS(623), - [aux_sym_input_stream_tuning_token4] = ACTIONS(623), - [aux_sym_input_stream_tuning_token5] = ACTIONS(623), - [aux_sym_input_stream_tuning_token6] = ACTIONS(623), - [aux_sym_input_stream_tuning_token7] = ACTIONS(623), - [aux_sym_input_stream_tuning_token8] = ACTIONS(623), - [aux_sym_input_stream_tuning_token9] = ACTIONS(623), - [aux_sym_input_stream_tuning_token11] = ACTIONS(623), - [aux_sym_output_stream_tuning_token1] = ACTIONS(623), - [aux_sym_output_stream_tuning_token2] = ACTIONS(623), - [aux_sym_output_stream_tuning_token3] = ACTIONS(623), - [aux_sym_output_stream_tuning_token4] = ACTIONS(623), - [aux_sym_output_stream_tuning_token5] = ACTIONS(623), - [aux_sym_output_stream_tuning_token6] = ACTIONS(623), - [aux_sym_output_stream_tuning_token7] = ACTIONS(623), - [aux_sym_output_stream_tuning_token8] = ACTIONS(623), - [aux_sym_output_stream_statement_token1] = ACTIONS(623), - [aux_sym_on_error_phrase_token1] = ACTIONS(623), - [aux_sym_stop_after_phrase_token1] = ACTIONS(623), - [aux_sym_do_tuning_token1] = ACTIONS(623), - [anon_sym_BY] = ACTIONS(623), - [aux_sym_of_token1] = ACTIONS(623), - [aux_sym_field_definition_token1] = ACTIONS(623), - [aux_sym_index_definition_token1] = ACTIONS(623), - [aux_sym_on_statement_token1] = ACTIONS(623), - [sym__or_operator] = ACTIONS(623), - [sym__and_operator] = ACTIONS(623), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(604), + [aux_sym_qualified_name_repeat1] = STATE(725), + [aux_sym_can_find_expression_repeat2] = STATE(1884), + [sym_identifier] = ACTIONS(335), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(625), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + [sym__namedot] = ACTIONS(447), }, [283] = { [sym_comment] = STATE(283), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), [sym_include] = STATE(283), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(603), - [aux_sym_can_find_expression_repeat2] = STATE(1858), - [sym_identifier] = ACTIONS(323), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(617), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(629), + [sym__terminator] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(629), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_DASH] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(627), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_LT_GT] = ACTIONS(629), + [anon_sym_EQ] = ACTIONS(629), + [anon_sym_GT] = ACTIONS(627), + [anon_sym_GT_EQ] = ACTIONS(629), + [aux_sym__comparison_operator_token1] = ACTIONS(629), + [aux_sym__comparison_operator_token2] = ACTIONS(629), + [aux_sym__comparison_operator_token3] = ACTIONS(629), + [aux_sym__comparison_operator_token4] = ACTIONS(629), + [aux_sym__comparison_operator_token5] = ACTIONS(629), + [aux_sym__comparison_operator_token6] = ACTIONS(629), + [aux_sym__comparison_operator_token7] = ACTIONS(629), + [aux_sym__comparison_operator_token8] = ACTIONS(629), + [aux_sym__comparison_operator_token9] = ACTIONS(629), + [aux_sym_variable_tuning_token1] = ACTIONS(629), + [aux_sym_variable_tuning_token2] = ACTIONS(629), + [aux_sym_variable_tuning_token3] = ACTIONS(629), + [aux_sym_variable_tuning_token4] = ACTIONS(629), + [aux_sym_variable_tuning_token5] = ACTIONS(629), + [aux_sym_variable_tuning_token6] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(629), + [aux_sym_if_statement_token2] = ACTIONS(629), + [aux_sym_else_if_statement_token1] = ACTIONS(629), + [anon_sym_COLON] = ACTIONS(629), + [aux_sym_while_phrase_token1] = ACTIONS(629), + [aux_sym_property_tuning_token1] = ACTIONS(629), + [aux_sym_event_definition_token1] = ACTIONS(629), + [anon_sym_NO_DASHERROR] = ACTIONS(631), + [aux_sym_input_stream_tuning_token1] = ACTIONS(629), + [aux_sym_input_stream_tuning_token2] = ACTIONS(629), + [aux_sym_input_stream_tuning_token3] = ACTIONS(629), + [aux_sym_input_stream_tuning_token4] = ACTIONS(629), + [aux_sym_input_stream_tuning_token5] = ACTIONS(629), + [aux_sym_input_stream_tuning_token6] = ACTIONS(629), + [aux_sym_input_stream_tuning_token7] = ACTIONS(629), + [aux_sym_input_stream_tuning_token8] = ACTIONS(629), + [aux_sym_input_stream_tuning_token9] = ACTIONS(629), + [aux_sym_input_stream_tuning_token11] = ACTIONS(629), + [aux_sym_output_stream_tuning_token1] = ACTIONS(629), + [aux_sym_output_stream_tuning_token2] = ACTIONS(629), + [aux_sym_output_stream_tuning_token3] = ACTIONS(629), + [aux_sym_output_stream_tuning_token4] = ACTIONS(629), + [aux_sym_output_stream_tuning_token5] = ACTIONS(629), + [aux_sym_output_stream_tuning_token6] = ACTIONS(629), + [aux_sym_output_stream_tuning_token7] = ACTIONS(629), + [aux_sym_output_stream_tuning_token8] = ACTIONS(629), + [aux_sym_output_stream_statement_token1] = ACTIONS(629), + [aux_sym_on_error_phrase_token1] = ACTIONS(629), + [aux_sym_stop_after_phrase_token1] = ACTIONS(629), + [aux_sym_do_tuning_token1] = ACTIONS(629), + [anon_sym_BY] = ACTIONS(629), + [aux_sym_of_token1] = ACTIONS(629), + [aux_sym_field_definition_token1] = ACTIONS(629), + [aux_sym_index_definition_token1] = ACTIONS(629), + [aux_sym_on_statement_token1] = ACTIONS(629), + [sym__or_operator] = ACTIONS(629), + [sym__and_operator] = ACTIONS(629), }, [284] = { [sym_comment] = STATE(284), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), [sym_include] = STATE(284), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(592), - [aux_sym_can_find_expression_repeat2] = STATE(1867), - [sym_identifier] = ACTIONS(323), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(453), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(193), + [sym__terminator] = ACTIONS(193), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(193), + [anon_sym_PLUS] = ACTIONS(193), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_EQ] = ACTIONS(193), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(193), + [aux_sym__comparison_operator_token1] = ACTIONS(193), + [aux_sym__comparison_operator_token2] = ACTIONS(193), + [aux_sym__comparison_operator_token3] = ACTIONS(193), + [aux_sym__comparison_operator_token4] = ACTIONS(193), + [aux_sym__comparison_operator_token5] = ACTIONS(193), + [aux_sym__comparison_operator_token6] = ACTIONS(193), + [aux_sym__comparison_operator_token7] = ACTIONS(193), + [aux_sym__comparison_operator_token8] = ACTIONS(193), + [aux_sym__comparison_operator_token9] = ACTIONS(193), + [aux_sym_variable_tuning_token1] = ACTIONS(193), + [aux_sym_variable_tuning_token2] = ACTIONS(193), + [aux_sym_variable_tuning_token3] = ACTIONS(193), + [aux_sym_variable_tuning_token4] = ACTIONS(193), + [aux_sym_variable_tuning_token5] = ACTIONS(193), + [aux_sym_variable_tuning_token6] = ACTIONS(193), + [anon_sym_COMMA] = ACTIONS(193), + [aux_sym_if_statement_token2] = ACTIONS(193), + [aux_sym_else_if_statement_token1] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(193), + [aux_sym_while_phrase_token1] = ACTIONS(193), + [aux_sym_property_tuning_token1] = ACTIONS(193), + [aux_sym_event_definition_token1] = ACTIONS(193), + [anon_sym_NO_DASHERROR] = ACTIONS(633), + [aux_sym_input_stream_tuning_token1] = ACTIONS(193), + [aux_sym_input_stream_tuning_token2] = ACTIONS(193), + [aux_sym_input_stream_tuning_token3] = ACTIONS(193), + [aux_sym_input_stream_tuning_token4] = ACTIONS(193), + [aux_sym_input_stream_tuning_token5] = ACTIONS(193), + [aux_sym_input_stream_tuning_token6] = ACTIONS(193), + [aux_sym_input_stream_tuning_token7] = ACTIONS(193), + [aux_sym_input_stream_tuning_token8] = ACTIONS(193), + [aux_sym_input_stream_tuning_token9] = ACTIONS(193), + [aux_sym_input_stream_tuning_token11] = ACTIONS(193), + [aux_sym_output_stream_tuning_token1] = ACTIONS(193), + [aux_sym_output_stream_tuning_token2] = ACTIONS(193), + [aux_sym_output_stream_tuning_token3] = ACTIONS(193), + [aux_sym_output_stream_tuning_token4] = ACTIONS(193), + [aux_sym_output_stream_tuning_token5] = ACTIONS(193), + [aux_sym_output_stream_tuning_token6] = ACTIONS(193), + [aux_sym_output_stream_tuning_token7] = ACTIONS(193), + [aux_sym_output_stream_tuning_token8] = ACTIONS(193), + [aux_sym_output_stream_statement_token1] = ACTIONS(193), + [aux_sym_on_error_phrase_token1] = ACTIONS(193), + [aux_sym_stop_after_phrase_token1] = ACTIONS(193), + [aux_sym_do_tuning_token1] = ACTIONS(193), + [anon_sym_BY] = ACTIONS(193), + [aux_sym_of_token1] = ACTIONS(193), + [aux_sym_field_definition_token1] = ACTIONS(193), + [aux_sym_index_definition_token1] = ACTIONS(193), + [aux_sym_on_statement_token1] = ACTIONS(193), + [sym__or_operator] = ACTIONS(193), + [sym__and_operator] = ACTIONS(193), }, [285] = { [sym_comment] = STATE(285), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(285), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(594), - [aux_sym_can_find_expression_repeat2] = STATE(1865), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(604), + [aux_sym_can_find_expression_repeat2] = STATE(1884), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(531), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(625), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [286] = { [sym_comment] = STATE(286), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(286), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(597), - [aux_sym_can_find_expression_repeat2] = STATE(1872), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(600), + [aux_sym_can_find_expression_repeat2] = STATE(1871), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(411), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(465), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [287] = { [sym_comment] = STATE(287), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(287), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), [sym__expression] = STATE(602), - [aux_sym_can_find_expression_repeat2] = STATE(1886), - [sym_identifier] = ACTIONS(323), + [aux_sym_can_find_expression_repeat2] = STATE(1878), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(455), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(469), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [288] = { [sym_comment] = STATE(288), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(288), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(604), - [aux_sym_can_find_expression_repeat2] = STATE(1875), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(599), + [aux_sym_can_find_expression_repeat2] = STATE(1892), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(447), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(547), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [289] = { [sym_comment] = STATE(289), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(289), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(593), - [aux_sym_can_find_expression_repeat2] = STATE(1866), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(608), + [aux_sym_can_find_expression_repeat2] = STATE(1882), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(449), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(453), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [290] = { [sym_comment] = STATE(290), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(290), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(599), - [aux_sym_can_find_expression_repeat2] = STATE(1880), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(609), + [aux_sym_can_find_expression_repeat2] = STATE(1883), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(541), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(459), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [291] = { [sym_comment] = STATE(291), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(291), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), [sym__expression] = STATE(595), - [aux_sym_can_find_expression_repeat2] = STATE(1871), - [sym_identifier] = ACTIONS(323), + [aux_sym_can_find_expression_repeat2] = STATE(1890), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(443), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(623), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [292] = { [sym_comment] = STATE(292), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(292), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(600), - [aux_sym_can_find_expression_repeat2] = STATE(1883), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(603), + [aux_sym_can_find_expression_repeat2] = STATE(1872), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(533), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(449), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [293] = { [sym_comment] = STATE(293), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(293), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(605), - [aux_sym_can_find_expression_repeat2] = STATE(1860), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(596), + [aux_sym_can_find_expression_repeat2] = STATE(1894), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(537), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(457), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [294] = { [sym_comment] = STATE(294), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(294), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(601), - [aux_sym_can_find_expression_repeat2] = STATE(1864), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(594), + [aux_sym_can_find_expression_repeat2] = STATE(1880), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(535), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(451), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [295] = { [sym_comment] = STATE(295), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(295), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(596), - [aux_sym_can_find_expression_repeat2] = STATE(1863), - [sym_identifier] = ACTIONS(323), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(606), + [aux_sym_can_find_expression_repeat2] = STATE(1875), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(539), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(419), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, [296] = { [sym_comment] = STATE(296), - [sym_constant] = STATE(38), - [sym_qualified_name] = STATE(38), - [sym_boolean_literal] = STATE(38), - [sym__decimal_literal] = STATE(28), - [sym_number_literal] = STATE(38), - [sym__string_literal] = STATE(38), - [sym_double_quoted_string] = STATE(24), - [sym_single_quoted_string] = STATE(24), - [sym_parenthesized_expression] = STATE(38), - [sym_logical_expression] = STATE(27), - [sym_unary_expression] = STATE(38), - [sym_ambiguous_expression] = STATE(38), - [sym_current_changed_expression] = STATE(38), - [sym_locked_expression] = STATE(38), - [sym_input_expression] = STATE(38), - [sym_additive_expression] = STATE(27), - [sym_multiplicative_expression] = STATE(27), - [sym_comparison_expression] = STATE(27), - [sym__binary_expression] = STATE(38), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), [sym_include] = STATE(296), - [sym_function_call] = STATE(38), - [sym_ternary_expression] = STATE(38), - [sym_new_expression] = STATE(38), - [sym_object_access] = STATE(34), - [sym_where_clause] = STATE(2172), - [sym_query_tuning] = STATE(2172), - [sym_can_find_expression] = STATE(38), - [sym_of] = STATE(2172), - [sym__using_first] = STATE(1929), - [sym_accumulate_expression] = STATE(38), - [sym_available_expression] = STATE(38), - [sym__expression] = STATE(591), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(607), [aux_sym_can_find_expression_repeat2] = STATE(1869), - [sym_identifier] = ACTIONS(323), + [sym_identifier] = ACTIONS(335), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(461), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + }, + [297] = { + [sym_comment] = STATE(297), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), + [sym_include] = STATE(297), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(597), + [aux_sym_can_find_expression_repeat2] = STATE(1886), + [sym_identifier] = ACTIONS(335), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(455), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), + }, + [298] = { + [sym_comment] = STATE(298), + [sym_constant] = STATE(45), + [sym_qualified_name] = STATE(45), + [sym_boolean_literal] = STATE(45), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(45), + [sym__string_literal] = STATE(45), + [sym_double_quoted_string] = STATE(22), + [sym_single_quoted_string] = STATE(22), + [sym_parenthesized_expression] = STATE(45), + [sym_logical_expression] = STATE(18), + [sym_unary_expression] = STATE(45), + [sym_ambiguous_expression] = STATE(45), + [sym_current_changed_expression] = STATE(45), + [sym_locked_expression] = STATE(45), + [sym_input_expression] = STATE(45), + [sym_additive_expression] = STATE(18), + [sym_multiplicative_expression] = STATE(18), + [sym_comparison_expression] = STATE(18), + [sym__binary_expression] = STATE(45), + [sym_include] = STATE(298), + [sym_function_call] = STATE(45), + [sym_ternary_expression] = STATE(45), + [sym_new_expression] = STATE(45), + [sym_object_access] = STATE(17), + [sym_where_clause] = STATE(2139), + [sym_query_tuning] = STATE(2139), + [sym_can_find_expression] = STATE(45), + [sym_of] = STATE(2139), + [sym__using_first] = STATE(1949), + [sym_accumulate_expression] = STATE(45), + [sym_available_expression] = STATE(45), + [sym__expression] = STATE(598), + [aux_sym_can_find_expression_repeat2] = STATE(1881), + [sym_identifier] = ACTIONS(335), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(325), - [sym_null_expression] = ACTIONS(327), - [aux_sym_boolean_literal_token1] = ACTIONS(329), - [aux_sym_boolean_literal_token2] = ACTIONS(329), - [aux_sym_boolean_literal_token3] = ACTIONS(329), - [aux_sym_boolean_literal_token4] = ACTIONS(329), - [sym__integer_literal] = ACTIONS(331), - [anon_sym_DQUOTE] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(337), - [anon_sym_RPAREN] = ACTIONS(441), - [aux_sym_unary_expression_token1] = ACTIONS(341), - [aux_sym_unary_expression_token2] = ACTIONS(413), - [aux_sym_ambiguous_expression_token1] = ACTIONS(415), - [aux_sym_current_changed_expression_token1] = ACTIONS(417), - [aux_sym_locked_expression_token1] = ACTIONS(419), - [aux_sym_input_expression_token1] = ACTIONS(421), - [aux_sym_scope_tuning_token1] = ACTIONS(423), - [aux_sym_if_statement_token1] = ACTIONS(425), - [aux_sym_using_statement_token1] = ACTIONS(427), - [aux_sym_where_clause_token1] = ACTIONS(429), - [aux_sym_query_tuning_token1] = ACTIONS(431), - [aux_sym_query_tuning_token2] = ACTIONS(431), - [aux_sym_query_tuning_token3] = ACTIONS(431), - [aux_sym_query_tuning_token4] = ACTIONS(431), - [aux_sym_query_tuning_token5] = ACTIONS(431), - [aux_sym_query_tuning_token6] = ACTIONS(433), - [aux_sym_can_find_expression_token1] = ACTIONS(359), - [aux_sym_of_token1] = ACTIONS(435), - [aux_sym_accumulate_expression_token1] = ACTIONS(437), - [aux_sym_available_expression_token1] = ACTIONS(365), - [aux_sym_available_expression_token2] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(337), + [sym_null_expression] = ACTIONS(339), + [aux_sym_boolean_literal_token1] = ACTIONS(341), + [aux_sym_boolean_literal_token2] = ACTIONS(341), + [aux_sym_boolean_literal_token3] = ACTIONS(341), + [aux_sym_boolean_literal_token4] = ACTIONS(341), + [sym__integer_literal] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(345), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_LPAREN] = ACTIONS(349), + [anon_sym_RPAREN] = ACTIONS(463), + [aux_sym_unary_expression_token1] = ACTIONS(353), + [aux_sym_unary_expression_token2] = ACTIONS(421), + [aux_sym_ambiguous_expression_token1] = ACTIONS(423), + [aux_sym_current_changed_expression_token1] = ACTIONS(425), + [aux_sym_locked_expression_token1] = ACTIONS(427), + [aux_sym_input_expression_token1] = ACTIONS(429), + [aux_sym_scope_tuning_token1] = ACTIONS(431), + [aux_sym_function_call_token1] = ACTIONS(433), + [aux_sym_if_statement_token1] = ACTIONS(435), + [aux_sym_using_statement_token1] = ACTIONS(437), + [aux_sym_where_clause_token1] = ACTIONS(439), + [aux_sym_query_tuning_token1] = ACTIONS(433), + [aux_sym_query_tuning_token2] = ACTIONS(433), + [aux_sym_query_tuning_token3] = ACTIONS(433), + [aux_sym_query_tuning_token4] = ACTIONS(433), + [aux_sym_query_tuning_token5] = ACTIONS(441), + [aux_sym_can_find_expression_token1] = ACTIONS(371), + [aux_sym_of_token1] = ACTIONS(443), + [aux_sym_accumulate_expression_token1] = ACTIONS(445), + [aux_sym_available_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token2] = ACTIONS(377), }, }; @@ -48626,82 +49094,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(631), 1, + ACTIONS(639), 1, sym__terminator, - ACTIONS(633), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(643), 1, + ACTIONS(651), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(657), 1, + ACTIONS(665), 1, anon_sym_EQ, - ACTIONS(659), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(663), 1, + ACTIONS(671), 1, anon_sym_COLON, - ACTIONS(665), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(673), 1, + ACTIONS(681), 1, sym__namecolon, - STATE(328), 1, - aux_sym_abl_statement_repeat1, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(530), 1, + STATE(338), 1, + aux_sym_abl_statement_repeat1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - STATE(2905), 1, + STATE(2967), 1, aux_sym_object_access_repeat1, - ACTIONS(669), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(297), 2, + STATE(299), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -48725,82 +49193,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(643), 1, + ACTIONS(651), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(657), 1, + ACTIONS(665), 1, anon_sym_EQ, - ACTIONS(659), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(673), 1, + ACTIONS(681), 1, sym__namecolon, - ACTIONS(675), 1, + ACTIONS(683), 1, sym__terminator, - ACTIONS(677), 1, - anon_sym_COLON, - STATE(327), 1, - aux_sym_abl_statement_repeat1, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(530), 1, + STATE(336), 1, + aux_sym_abl_statement_repeat1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - STATE(2905), 1, + STATE(2967), 1, aux_sym_object_access_repeat1, - ACTIONS(669), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(298), 2, + STATE(300), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -48824,82 +49292,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(643), 1, + ACTIONS(651), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(657), 1, + ACTIONS(665), 1, anon_sym_EQ, - ACTIONS(659), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(673), 1, + ACTIONS(681), 1, sym__namecolon, - ACTIONS(679), 1, + ACTIONS(685), 1, sym__terminator, - ACTIONS(681), 1, + ACTIONS(687), 1, anon_sym_COLON, - STATE(329), 1, - aux_sym_abl_statement_repeat1, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(530), 1, + STATE(332), 1, + aux_sym_abl_statement_repeat1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - STATE(2905), 1, + STATE(2967), 1, aux_sym_object_access_repeat1, - ACTIONS(669), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(299), 2, + STATE(301), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -48923,82 +49391,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(643), 1, + ACTIONS(651), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(657), 1, + ACTIONS(665), 1, anon_sym_EQ, - ACTIONS(659), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(673), 1, + ACTIONS(681), 1, sym__namecolon, - ACTIONS(677), 1, - anon_sym_COLON, - ACTIONS(683), 1, + ACTIONS(689), 1, sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(334), 1, + ACTIONS(691), 1, + anon_sym_COLON, + STATE(329), 1, aux_sym_abl_statement_repeat1, - STATE(530), 1, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - STATE(2905), 1, + STATE(2967), 1, aux_sym_object_access_repeat1, - ACTIONS(669), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(300), 2, + STATE(302), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49022,82 +49490,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(643), 1, + ACTIONS(651), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(657), 1, + ACTIONS(665), 1, anon_sym_EQ, - ACTIONS(659), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(671), 1, + anon_sym_COLON, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(673), 1, + ACTIONS(681), 1, sym__namecolon, - ACTIONS(677), 1, - anon_sym_COLON, - ACTIONS(685), 1, + ACTIONS(693), 1, sym__terminator, STATE(330), 1, - aux_sym_abl_statement_repeat1, - STATE(332), 1, aux_sym_qualified_name_repeat1, - STATE(530), 1, + STATE(334), 1, + aux_sym_abl_statement_repeat1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - STATE(2905), 1, + STATE(2967), 1, aux_sym_object_access_repeat1, - ACTIONS(669), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(301), 2, + STATE(303), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49121,79 +49589,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(351), 1, + anon_sym_RPAREN, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(687), 1, - anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, - sym_argument_mode, - STATE(4692), 1, + STATE(4294), 1, sym__function_call_arguments, - ACTIONS(355), 2, + STATE(4606), 1, + sym_argument_mode, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(302), 2, + STATE(304), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49217,79 +49685,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(689), 1, + ACTIONS(695), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, - sym_argument_mode, - STATE(4605), 1, + STATE(4139), 1, sym__function_call_arguments, - ACTIONS(355), 2, + STATE(4606), 1, + sym_argument_mode, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(303), 2, + STATE(305), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49313,79 +49781,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(691), 1, + ACTIONS(697), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - STATE(4579), 1, + STATE(4655), 1, sym__function_call_arguments, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(304), 2, + STATE(306), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49409,79 +49877,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(693), 1, + ACTIONS(699), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(987), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - STATE(4578), 1, + STATE(4607), 1, sym__function_call_arguments, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(305), 2, + STATE(307), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49505,79 +49973,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(695), 1, + ACTIONS(701), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, - sym_argument_mode, - STATE(4531), 1, + STATE(4385), 1, sym__function_call_arguments, - ACTIONS(355), 2, + STATE(4606), 1, + sym_argument_mode, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(306), 2, + STATE(308), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49601,79 +50069,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(695), 1, + ACTIONS(703), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(846), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - STATE(4531), 1, + STATE(4729), 1, sym__function_call_arguments, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(307), 2, + STATE(309), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49697,79 +50165,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(697), 1, + ACTIONS(705), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - STATE(4573), 1, + STATE(4666), 1, sym__function_call_arguments, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(308), 2, + STATE(310), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49793,79 +50261,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(699), 1, + ACTIONS(707), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4216), 1, - sym__function_call_arguments, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - ACTIONS(355), 2, + STATE(4625), 1, + sym__function_call_arguments, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(309), 2, + STATE(311), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49889,79 +50357,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(339), 1, - anon_sym_RPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + ACTIONS(699), 1, + anon_sym_RPAREN, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - STATE(4587), 1, + STATE(4607), 1, sym__function_call_arguments, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(310), 2, + STATE(312), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49985,79 +50453,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(701), 1, + ACTIONS(709), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, - sym_argument_mode, - STATE(4646), 1, + STATE(4337), 1, sym__function_call_arguments, - ACTIONS(355), 2, + STATE(4606), 1, + sym_argument_mode, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(311), 2, + STATE(313), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50081,79 +50549,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(703), 1, + ACTIONS(711), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - STATE(4638), 1, + STATE(4714), 1, sym__function_call_arguments, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(312), 2, + STATE(314), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50177,79 +50645,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(705), 1, + ACTIONS(713), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4152), 1, + STATE(4289), 1, sym__function_call_arguments, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(313), 2, + STATE(315), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50273,79 +50741,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(707), 1, + ACTIONS(715), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - STATE(4637), 1, + STATE(4616), 1, sym__function_call_arguments, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(314), 2, + STATE(316), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50369,79 +50837,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(709), 1, + ACTIONS(717), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4309), 1, + STATE(4522), 1, sym__function_call_arguments, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(315), 2, + STATE(317), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50465,79 +50933,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(711), 1, + ACTIONS(719), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4329), 1, - sym__function_call_arguments, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - ACTIONS(355), 2, + STATE(4608), 1, + sym__function_call_arguments, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(316), 2, + STATE(318), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50561,79 +51029,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(713), 1, + ACTIONS(721), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, - sym_argument_mode, - STATE(4708), 1, + STATE(4601), 1, sym__function_call_arguments, - ACTIONS(355), 2, + STATE(4606), 1, + sym_argument_mode, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(317), 2, + STATE(319), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50657,79 +51125,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(715), 1, + ACTIONS(723), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4062), 1, + STATE(4451), 1, sym__function_call_arguments, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(318), 2, + STATE(320), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50753,79 +51221,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(717), 1, + ACTIONS(725), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4189), 1, + STATE(4416), 1, sym__function_call_arguments, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(319), 2, + STATE(321), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50849,79 +51317,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(719), 1, + ACTIONS(727), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4256), 1, + STATE(4156), 1, sym__function_call_arguments, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(320), 2, + STATE(322), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50945,79 +51413,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(721), 1, + ACTIONS(729), 1, anon_sym_RPAREN, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3434), 1, + STATE(3082), 1, sym_function_call_argument, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(4530), 1, - sym_argument_mode, - STATE(4588), 1, + STATE(4331), 1, sym__function_call_arguments, - ACTIONS(355), 2, + STATE(4606), 1, + sym_argument_mode, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(321), 2, + STATE(323), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51041,75 +51509,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(351), 1, + ACTIONS(363), 1, aux_sym_input_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(859), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1081), 1, sym__expression, - STATE(3635), 1, + STATE(3622), 1, sym__function_argument_with_mode, - STATE(3884), 1, + STATE(3835), 1, sym_function_call_argument, - STATE(4530), 1, + STATE(4606), 1, sym_argument_mode, - ACTIONS(355), 2, + ACTIONS(367), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(322), 2, + STATE(324), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51135,64 +51603,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(723), 1, + ACTIONS(731), 1, sym_identifier, - ACTIONS(725), 1, + ACTIONS(733), 1, aux_sym_input_expression_token1, - ACTIONS(727), 1, + ACTIONS(735), 1, aux_sym_primitive_type_token19, - ACTIONS(731), 1, + ACTIONS(739), 1, aux_sym_buffer_definition_token2, - ACTIONS(733), 1, + ACTIONS(741), 1, aux_sym_argument_mode_token1, - ACTIONS(735), 1, + ACTIONS(743), 1, aux_sym_if_statement_token1, - ACTIONS(737), 1, + ACTIONS(745), 1, aux_sym_repeat_statement_token1, - ACTIONS(739), 1, + ACTIONS(747), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(741), 1, + ACTIONS(749), 1, aux_sym_interface_statement_token1, - ACTIONS(743), 1, + ACTIONS(751), 1, aux_sym_on_error_phrase_token1, - ACTIONS(745), 1, + ACTIONS(753), 1, aux_sym_on_error_phrase_token3, - ACTIONS(747), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(749), 1, + ACTIONS(757), 1, aux_sym__case_terminator_token1, - ACTIONS(751), 1, + ACTIONS(759), 1, aux_sym_find_statement_token1, - ACTIONS(753), 1, + ACTIONS(761), 1, aux_sym_assign_statement_token1, - ACTIONS(755), 1, + ACTIONS(763), 1, aux_sym_accumulate_statement_token1, - STATE(3402), 1, + STATE(3090), 1, sym_label, - STATE(3544), 1, + STATE(3560), 1, sym_object_access, - STATE(4224), 1, + STATE(4527), 1, sym_function_call, - STATE(4225), 1, + STATE(4530), 1, sym_assignment, - STATE(4699), 1, + STATE(4721), 1, sym_qualified_name, - ACTIONS(729), 2, + ACTIONS(737), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(757), 2, + ACTIONS(765), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(323), 2, + STATE(325), 2, sym_comment, sym_include, - STATE(838), 2, + STATE(984), 2, sym_do_block, sym__terminated_statement, - STATE(1095), 2, + STATE(1086), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(845), 23, + STATE(1006), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -51223,64 +51691,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(759), 1, + ACTIONS(767), 1, sym_identifier, - ACTIONS(761), 1, + ACTIONS(769), 1, aux_sym_input_expression_token1, - ACTIONS(763), 1, + ACTIONS(771), 1, aux_sym_primitive_type_token19, - ACTIONS(767), 1, + ACTIONS(775), 1, aux_sym_buffer_definition_token2, - ACTIONS(769), 1, + ACTIONS(777), 1, aux_sym_argument_mode_token1, - ACTIONS(771), 1, + ACTIONS(779), 1, + aux_sym_if_statement_token1, + ACTIONS(781), 1, aux_sym_repeat_statement_token1, - ACTIONS(773), 1, + ACTIONS(783), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(775), 1, + ACTIONS(785), 1, aux_sym_interface_statement_token1, - ACTIONS(777), 1, + ACTIONS(787), 1, aux_sym_on_error_phrase_token1, - ACTIONS(779), 1, + ACTIONS(789), 1, aux_sym_on_error_phrase_token3, - ACTIONS(781), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(783), 1, + ACTIONS(793), 1, aux_sym__case_terminator_token1, - ACTIONS(785), 1, + ACTIONS(795), 1, aux_sym_find_statement_token1, - ACTIONS(787), 1, + ACTIONS(797), 1, aux_sym_assign_statement_token1, - ACTIONS(789), 1, + ACTIONS(799), 1, aux_sym_accumulate_statement_token1, - STATE(3350), 1, - sym__case_branch_body, - STATE(3450), 1, + STATE(3134), 1, sym_label, - STATE(3544), 1, + STATE(3560), 1, sym_object_access, - STATE(4170), 1, + STATE(4254), 1, sym_assignment, - STATE(4176), 1, + STATE(4256), 1, sym_function_call, - STATE(4699), 1, + STATE(4721), 1, sym_qualified_name, - ACTIONS(765), 2, + ACTIONS(773), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(791), 2, + ACTIONS(801), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(324), 2, + STATE(326), 2, sym_comment, sym_include, - STATE(3224), 2, + STATE(965), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(3247), 2, + STATE(1096), 2, sym_do_block, sym__terminated_statement, - STATE(3334), 23, + STATE(1132), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -51311,64 +51779,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(759), 1, + ACTIONS(803), 1, sym_identifier, - ACTIONS(761), 1, + ACTIONS(805), 1, aux_sym_input_expression_token1, - ACTIONS(763), 1, + ACTIONS(807), 1, aux_sym_primitive_type_token19, - ACTIONS(767), 1, + ACTIONS(811), 1, aux_sym_buffer_definition_token2, - ACTIONS(769), 1, + ACTIONS(813), 1, aux_sym_argument_mode_token1, - ACTIONS(771), 1, + ACTIONS(815), 1, aux_sym_repeat_statement_token1, - ACTIONS(773), 1, + ACTIONS(817), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(775), 1, + ACTIONS(819), 1, aux_sym_interface_statement_token1, - ACTIONS(777), 1, + ACTIONS(821), 1, aux_sym_on_error_phrase_token1, - ACTIONS(779), 1, + ACTIONS(823), 1, aux_sym_on_error_phrase_token3, - ACTIONS(781), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, - ACTIONS(783), 1, + ACTIONS(827), 1, aux_sym__case_terminator_token1, - ACTIONS(785), 1, + ACTIONS(829), 1, aux_sym_find_statement_token1, - ACTIONS(787), 1, + ACTIONS(831), 1, aux_sym_assign_statement_token1, - ACTIONS(789), 1, + ACTIONS(833), 1, aux_sym_accumulate_statement_token1, - STATE(3450), 1, + STATE(3085), 1, sym_label, - STATE(3544), 1, + STATE(3560), 1, sym_object_access, - STATE(4099), 1, + STATE(4134), 1, sym__case_branch_body, - STATE(4170), 1, + STATE(4239), 1, sym_assignment, - STATE(4176), 1, + STATE(4240), 1, sym_function_call, - STATE(4699), 1, + STATE(4721), 1, sym_qualified_name, - ACTIONS(765), 2, + ACTIONS(809), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(791), 2, + ACTIONS(835), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(325), 2, + STATE(327), 2, sym_comment, sym_include, - STATE(3224), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(3247), 2, + STATE(3229), 2, sym_do_block, sym__terminated_statement, - STATE(3334), 23, + STATE(3456), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(3525), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -51399,64 +51867,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(793), 1, + ACTIONS(803), 1, sym_identifier, - ACTIONS(795), 1, + ACTIONS(805), 1, aux_sym_input_expression_token1, - ACTIONS(797), 1, + ACTIONS(807), 1, aux_sym_primitive_type_token19, - ACTIONS(801), 1, + ACTIONS(811), 1, aux_sym_buffer_definition_token2, - ACTIONS(803), 1, + ACTIONS(813), 1, aux_sym_argument_mode_token1, - ACTIONS(805), 1, - aux_sym_if_statement_token1, - ACTIONS(807), 1, + ACTIONS(815), 1, aux_sym_repeat_statement_token1, - ACTIONS(809), 1, + ACTIONS(817), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(811), 1, + ACTIONS(819), 1, aux_sym_interface_statement_token1, - ACTIONS(813), 1, + ACTIONS(821), 1, aux_sym_on_error_phrase_token1, - ACTIONS(815), 1, + ACTIONS(823), 1, aux_sym_on_error_phrase_token3, - ACTIONS(817), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, - ACTIONS(819), 1, + ACTIONS(827), 1, aux_sym__case_terminator_token1, - ACTIONS(821), 1, + ACTIONS(829), 1, aux_sym_find_statement_token1, - ACTIONS(823), 1, + ACTIONS(831), 1, aux_sym_assign_statement_token1, - ACTIONS(825), 1, + ACTIONS(833), 1, aux_sym_accumulate_statement_token1, - STATE(3081), 1, + STATE(3085), 1, sym_label, - STATE(3544), 1, + STATE(3270), 1, + sym__case_branch_body, + STATE(3560), 1, sym_object_access, - STATE(4539), 1, + STATE(4239), 1, sym_assignment, - STATE(4553), 1, + STATE(4240), 1, sym_function_call, - STATE(4699), 1, + STATE(4721), 1, sym_qualified_name, - ACTIONS(799), 2, + ACTIONS(809), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(827), 2, + ACTIONS(835), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(326), 2, + STATE(328), 2, sym_comment, sym_include, - STATE(889), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(1033), 2, + STATE(3229), 2, sym_do_block, sym__terminated_statement, - STATE(872), 23, + STATE(3456), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(3525), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -51485,70 +51953,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(829), 1, + ACTIONS(837), 1, sym__terminator, - ACTIONS(831), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - STATE(337), 1, + STATE(339), 1, aux_sym_abl_statement_repeat1, - STATE(530), 1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(327), 2, + STATE(329), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51567,75 +52035,226 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [3988] = 30, + [3988] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + STATE(337), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(79), 2, + aux_sym_variable_definition_token2, + anon_sym_LIKE, + STATE(330), 2, + sym_comment, + sym_include, + ACTIONS(81), 47, + sym__terminator, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_EQ, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_serialization_tuning_token1, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token6, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_tuning_token1, + aux_sym_method_definition_token1, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + aux_sym_using_statement_token1, + aux_sym_using_statement_token2, + aux_sym_constructor_definition_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + aux_sym_temp_table_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [4061] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(767), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(769), 1, + aux_sym_input_expression_token1, + ACTIONS(771), 1, + aux_sym_primitive_type_token19, + ACTIONS(775), 1, + aux_sym_buffer_definition_token2, + ACTIONS(777), 1, + aux_sym_argument_mode_token1, + ACTIONS(781), 1, + aux_sym_repeat_statement_token1, + ACTIONS(783), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(785), 1, + aux_sym_interface_statement_token1, + ACTIONS(787), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(789), 1, + aux_sym_on_error_phrase_token3, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(793), 1, + aux_sym__case_terminator_token1, + ACTIONS(795), 1, + aux_sym_find_statement_token1, + ACTIONS(797), 1, + aux_sym_assign_statement_token1, + ACTIONS(799), 1, + aux_sym_accumulate_statement_token1, + STATE(3134), 1, + sym_label, + STATE(3560), 1, + sym_object_access, + STATE(4254), 1, + sym_assignment, + STATE(4256), 1, + sym_function_call, + STATE(4721), 1, + sym_qualified_name, + ACTIONS(773), 2, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + ACTIONS(801), 2, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + STATE(331), 2, + sym_comment, + sym_include, + STATE(965), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(1126), 2, + sym_do_block, + sym__terminated_statement, + STATE(1132), 23, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_query_definition, + sym_function_call_statement, + sym_repeat_statement, + sym_return_statement, + sym_interface_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_abl_statement, + sym_assign_statement, + sym_accumulate_statement, + sym_undo_statement, + sym_error_scope_statement, + sym_temp_table_definition, + sym_on_statement, + [4176] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(833), 1, + ACTIONS(841), 1, sym__terminator, - STATE(337), 1, + STATE(339), 1, aux_sym_abl_statement_repeat1, - STATE(530), 1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(328), 2, + STATE(332), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51654,75 +52273,161 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4105] = 30, + [4293] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(733), 1, + aux_sym_input_expression_token1, + ACTIONS(735), 1, + aux_sym_primitive_type_token19, + ACTIONS(739), 1, + aux_sym_buffer_definition_token2, + ACTIONS(741), 1, + aux_sym_argument_mode_token1, + ACTIONS(745), 1, + aux_sym_repeat_statement_token1, + ACTIONS(747), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(749), 1, + aux_sym_interface_statement_token1, + ACTIONS(751), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(753), 1, + aux_sym_on_error_phrase_token3, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(757), 1, + aux_sym__case_terminator_token1, + ACTIONS(759), 1, + aux_sym_find_statement_token1, + ACTIONS(761), 1, + aux_sym_assign_statement_token1, + ACTIONS(763), 1, + aux_sym_accumulate_statement_token1, + STATE(3090), 1, + sym_label, + STATE(3560), 1, + sym_object_access, + STATE(4527), 1, + sym_function_call, + STATE(4530), 1, + sym_assignment, + STATE(4721), 1, + sym_qualified_name, + ACTIONS(737), 2, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + ACTIONS(765), 2, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + STATE(333), 2, + sym_comment, + sym_include, + STATE(793), 2, + sym_do_block, + sym__terminated_statement, + STATE(1086), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(1006), 23, + sym_variable_definition, + sym_variable_assignment, + sym_buffer_definition, + sym_query_definition, + sym_function_call_statement, + sym_repeat_statement, + sym_return_statement, + sym_interface_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_abl_statement, + sym_assign_statement, + sym_accumulate_statement, + sym_undo_statement, + sym_error_scope_statement, + sym_temp_table_definition, + sym_on_statement, + [4408] = 30, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(835), 1, + ACTIONS(843), 1, sym__terminator, - STATE(337), 1, + STATE(339), 1, aux_sym_abl_statement_repeat1, - STATE(530), 1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(329), 2, + STATE(334), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51741,307 +52446,69 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4222] = 30, + [4525] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, - sym_identifier, - ACTIONS(629), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(633), 1, - sym_null_expression, - ACTIONS(637), 1, - sym__integer_literal, - ACTIONS(639), 1, - anon_sym_DQUOTE, - ACTIONS(641), 1, - anon_sym_SQUOTE, - ACTIONS(645), 1, - aux_sym_unary_expression_token1, - ACTIONS(647), 1, - aux_sym_unary_expression_token2, - ACTIONS(649), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, - aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(731), 1, + sym_identifier, + ACTIONS(733), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, - aux_sym_scope_tuning_token1, - ACTIONS(661), 1, - aux_sym_if_statement_token1, - ACTIONS(665), 1, - aux_sym_can_find_expression_token1, - ACTIONS(667), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - ACTIONS(837), 1, - sym__terminator, - STATE(337), 1, - aux_sym_abl_statement_repeat1, - STATE(530), 1, - sym__expression, - STATE(568), 1, - sym_object_access, - STATE(570), 1, - sym__decimal_literal, - ACTIONS(669), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(330), 2, - sym_comment, - sym_include, - STATE(569), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(635), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(554), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(574), 18, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym__string_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [4339] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(793), 1, - sym_identifier, - ACTIONS(795), 1, - aux_sym_input_expression_token1, - ACTIONS(797), 1, + ACTIONS(735), 1, aux_sym_primitive_type_token19, - ACTIONS(801), 1, + ACTIONS(739), 1, aux_sym_buffer_definition_token2, - ACTIONS(803), 1, + ACTIONS(741), 1, aux_sym_argument_mode_token1, - ACTIONS(807), 1, + ACTIONS(745), 1, aux_sym_repeat_statement_token1, - ACTIONS(809), 1, + ACTIONS(747), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(811), 1, + ACTIONS(749), 1, aux_sym_interface_statement_token1, - ACTIONS(813), 1, + ACTIONS(751), 1, aux_sym_on_error_phrase_token1, - ACTIONS(815), 1, + ACTIONS(753), 1, aux_sym_on_error_phrase_token3, - ACTIONS(817), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(819), 1, + ACTIONS(757), 1, aux_sym__case_terminator_token1, - ACTIONS(821), 1, + ACTIONS(759), 1, aux_sym_find_statement_token1, - ACTIONS(823), 1, + ACTIONS(761), 1, aux_sym_assign_statement_token1, - ACTIONS(825), 1, + ACTIONS(763), 1, aux_sym_accumulate_statement_token1, - STATE(3081), 1, + STATE(3090), 1, sym_label, - STATE(3544), 1, + STATE(3560), 1, sym_object_access, - STATE(4539), 1, - sym_assignment, - STATE(4553), 1, + STATE(4527), 1, sym_function_call, - STATE(4699), 1, - sym_qualified_name, - ACTIONS(799), 2, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - ACTIONS(827), 2, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - STATE(331), 2, - sym_comment, - sym_include, - STATE(889), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(1069), 2, - sym_do_block, - sym__terminated_statement, - STATE(872), 23, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_query_definition, - sym_function_call_statement, - sym_repeat_statement, - sym_return_statement, - sym_interface_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_abl_statement, - sym_assign_statement, - sym_accumulate_statement, - sym_undo_statement, - sym_error_scope_statement, - sym_temp_table_definition, - sym_on_statement, - [4454] = 8, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - STATE(336), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(105), 2, - aux_sym_variable_definition_token2, - anon_sym_LIKE, - STATE(332), 2, - sym_comment, - sym_include, - ACTIONS(107), 47, - sym__terminator, - aux_sym__block_terminator_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_EQ, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_serialization_tuning_token1, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token6, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_tuning_token1, - aux_sym_method_definition_token1, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - aux_sym_using_statement_token1, - aux_sym_using_statement_token2, - aux_sym_constructor_definition_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_on_error_phrase_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_temp_table_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [4527] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(793), 1, - sym_identifier, - ACTIONS(795), 1, - aux_sym_input_expression_token1, - ACTIONS(797), 1, - aux_sym_primitive_type_token19, - ACTIONS(801), 1, - aux_sym_buffer_definition_token2, - ACTIONS(803), 1, - aux_sym_argument_mode_token1, - ACTIONS(807), 1, - aux_sym_repeat_statement_token1, - ACTIONS(809), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(811), 1, - aux_sym_interface_statement_token1, - ACTIONS(813), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(815), 1, - aux_sym_on_error_phrase_token3, - ACTIONS(817), 1, - aux_sym_do_block_token1, - ACTIONS(819), 1, - aux_sym__case_terminator_token1, - ACTIONS(821), 1, - aux_sym_find_statement_token1, - ACTIONS(823), 1, - aux_sym_assign_statement_token1, - ACTIONS(825), 1, - aux_sym_accumulate_statement_token1, - STATE(3081), 1, - sym_label, - STATE(3544), 1, - sym_object_access, - STATE(4539), 1, + STATE(4530), 1, sym_assignment, - STATE(4553), 1, - sym_function_call, - STATE(4699), 1, + STATE(4721), 1, sym_qualified_name, - ACTIONS(799), 2, + ACTIONS(737), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(827), 2, + ACTIONS(765), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(333), 2, + STATE(335), 2, sym_comment, sym_include, - STATE(786), 2, + STATE(968), 2, sym_do_block, sym__terminated_statement, - STATE(889), 2, + STATE(1086), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(872), 23, + STATE(1006), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -52065,75 +52532,75 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [4642] = 30, + [4640] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, ACTIONS(839), 1, + anon_sym_LPAREN, + ACTIONS(845), 1, sym__terminator, - STATE(337), 1, + STATE(339), 1, aux_sym_abl_statement_repeat1, - STATE(530), 1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(334), 2, + STATE(336), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52152,109 +52619,23 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4759] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(723), 1, - sym_identifier, - ACTIONS(725), 1, - aux_sym_input_expression_token1, - ACTIONS(727), 1, - aux_sym_primitive_type_token19, - ACTIONS(731), 1, - aux_sym_buffer_definition_token2, - ACTIONS(733), 1, - aux_sym_argument_mode_token1, - ACTIONS(737), 1, - aux_sym_repeat_statement_token1, - ACTIONS(739), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(741), 1, - aux_sym_interface_statement_token1, - ACTIONS(743), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(745), 1, - aux_sym_on_error_phrase_token3, - ACTIONS(747), 1, - aux_sym_do_block_token1, - ACTIONS(749), 1, - aux_sym__case_terminator_token1, - ACTIONS(751), 1, - aux_sym_find_statement_token1, - ACTIONS(753), 1, - aux_sym_assign_statement_token1, - ACTIONS(755), 1, - aux_sym_accumulate_statement_token1, - STATE(3402), 1, - sym_label, - STATE(3544), 1, - sym_object_access, - STATE(4224), 1, - sym_function_call, - STATE(4225), 1, - sym_assignment, - STATE(4699), 1, - sym_qualified_name, - ACTIONS(729), 2, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - ACTIONS(757), 2, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - STATE(335), 2, - sym_comment, - sym_include, - STATE(782), 2, - sym_do_block, - sym__terminated_statement, - STATE(1095), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(845), 23, - sym_variable_definition, - sym_variable_assignment, - sym_buffer_definition, - sym_query_definition, - sym_function_call_statement, - sym_repeat_statement, - sym_return_statement, - sym_interface_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_abl_statement, - sym_assign_statement, - sym_accumulate_statement, - sym_undo_statement, - sym_error_scope_statement, - sym_temp_table_definition, - sym_on_statement, - [4874] = 7, + [4757] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(841), 1, + ACTIONS(847), 1, sym__namedot, - ACTIONS(79), 2, + ACTIONS(98), 2, aux_sym_variable_definition_token2, anon_sym_LIKE, - STATE(336), 3, + STATE(337), 3, sym_comment, sym_include, aux_sym_qualified_name_repeat1, - ACTIONS(81), 47, + ACTIONS(100), 47, sym__terminator, aux_sym__block_terminator_token1, anon_sym_LPAREN, @@ -52273,6 +52654,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_definition_token1, aux_sym_variable_definition_token6, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_property_type_token1, aux_sym_property_tuning_token1, @@ -52295,81 +52677,167 @@ static const uint16_t ts_small_parse_table[] = { 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_temp_table_tuning_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [4945] = 29, + [4828] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(844), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(847), 1, + ACTIONS(637), 1, anon_sym_LBRACE, + ACTIONS(641), 1, + sym_null_expression, + ACTIONS(645), 1, + sym__integer_literal, + ACTIONS(647), 1, + anon_sym_DQUOTE, + ACTIONS(649), 1, + anon_sym_SQUOTE, + ACTIONS(653), 1, + aux_sym_unary_expression_token1, + ACTIONS(655), 1, + aux_sym_unary_expression_token2, + ACTIONS(657), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(659), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(661), 1, + aux_sym_locked_expression_token1, + ACTIONS(663), 1, + aux_sym_input_expression_token1, + ACTIONS(667), 1, + aux_sym_scope_tuning_token1, + ACTIONS(669), 1, + aux_sym_if_statement_token1, + ACTIONS(673), 1, + aux_sym_can_find_expression_token1, + ACTIONS(675), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(839), 1, + anon_sym_LPAREN, ACTIONS(850), 1, sym__terminator, + STATE(339), 1, + aux_sym_abl_statement_repeat1, + STATE(533), 1, + sym__expression, + STATE(558), 1, + sym_object_access, + STATE(567), 1, + sym__decimal_literal, + ACTIONS(677), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(338), 2, + sym_comment, + sym_include, + STATE(589), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(643), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(564), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(576), 18, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym__string_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym_function_call, + sym_ternary_expression, + sym_new_expression, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [4945] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, ACTIONS(852), 1, - sym_null_expression, + sym_identifier, + ACTIONS(855), 1, + anon_sym_LBRACE, ACTIONS(858), 1, + sym__terminator, + ACTIONS(860), 1, + sym_null_expression, + ACTIONS(866), 1, sym__integer_literal, - ACTIONS(861), 1, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(864), 1, + ACTIONS(872), 1, anon_sym_SQUOTE, - ACTIONS(867), 1, + ACTIONS(875), 1, anon_sym_LPAREN, - ACTIONS(870), 1, + ACTIONS(878), 1, aux_sym_unary_expression_token1, - ACTIONS(873), 1, + ACTIONS(881), 1, aux_sym_unary_expression_token2, - ACTIONS(876), 1, + ACTIONS(884), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(879), 1, + ACTIONS(887), 1, aux_sym_current_changed_expression_token1, - ACTIONS(882), 1, + ACTIONS(890), 1, aux_sym_locked_expression_token1, - ACTIONS(885), 1, + ACTIONS(893), 1, aux_sym_input_expression_token1, - ACTIONS(888), 1, + ACTIONS(896), 1, aux_sym_scope_tuning_token1, - ACTIONS(891), 1, + ACTIONS(899), 1, aux_sym_if_statement_token1, - ACTIONS(894), 1, + ACTIONS(902), 1, aux_sym_can_find_expression_token1, - ACTIONS(897), 1, + ACTIONS(905), 1, aux_sym_accumulate_expression_token1, - STATE(530), 1, + STATE(533), 1, sym__expression, - STATE(568), 1, + STATE(558), 1, sym_object_access, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(900), 2, + ACTIONS(908), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(569), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(337), 3, + STATE(339), 3, sym_comment, sym_include, aux_sym_abl_statement_repeat1, - ACTIONS(855), 4, + ACTIONS(863), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52395,62 +52863,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(723), 1, + ACTIONS(767), 1, sym_identifier, - ACTIONS(725), 1, + ACTIONS(769), 1, aux_sym_input_expression_token1, - ACTIONS(727), 1, + ACTIONS(771), 1, aux_sym_primitive_type_token19, - ACTIONS(731), 1, + ACTIONS(775), 1, aux_sym_buffer_definition_token2, - ACTIONS(733), 1, + ACTIONS(777), 1, aux_sym_argument_mode_token1, - ACTIONS(737), 1, + ACTIONS(781), 1, aux_sym_repeat_statement_token1, - ACTIONS(739), 1, + ACTIONS(783), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(741), 1, + ACTIONS(785), 1, aux_sym_interface_statement_token1, - ACTIONS(743), 1, + ACTIONS(787), 1, aux_sym_on_error_phrase_token1, - ACTIONS(745), 1, + ACTIONS(789), 1, aux_sym_on_error_phrase_token3, - ACTIONS(747), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(749), 1, + ACTIONS(793), 1, aux_sym__case_terminator_token1, - ACTIONS(751), 1, + ACTIONS(795), 1, aux_sym_find_statement_token1, - ACTIONS(753), 1, + ACTIONS(797), 1, aux_sym_assign_statement_token1, - ACTIONS(755), 1, + ACTIONS(799), 1, aux_sym_accumulate_statement_token1, - STATE(3402), 1, + STATE(3134), 1, sym_label, - STATE(3544), 1, + STATE(3560), 1, sym_object_access, - STATE(4224), 1, - sym_function_call, - STATE(4225), 1, + STATE(4254), 1, sym_assignment, - STATE(4699), 1, + STATE(4256), 1, + sym_function_call, + STATE(4721), 1, sym_qualified_name, - ACTIONS(729), 2, + ACTIONS(773), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(757), 2, + ACTIONS(801), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(338), 2, + STATE(340), 2, sym_comment, sym_include, - STATE(880), 2, + STATE(778), 2, sym_do_block, sym__terminated_statement, - STATE(1095), 2, + STATE(965), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(845), 23, + STATE(1132), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -52479,68 +52947,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(903), 1, + ACTIONS(911), 1, sym__terminator, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1310), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1405), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(339), 2, + STATE(341), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52564,68 +53032,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(905), 1, + ACTIONS(913), 1, sym__terminator, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1449), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1228), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(340), 2, + STATE(342), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52644,105 +53112,20 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5403] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(323), 1, - sym_identifier, - ACTIONS(325), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_null_expression, - ACTIONS(331), 1, - sym__integer_literal, - ACTIONS(333), 1, - anon_sym_DQUOTE, - ACTIONS(335), 1, - anon_sym_SQUOTE, - ACTIONS(337), 1, - anon_sym_LPAREN, - ACTIONS(341), 1, - aux_sym_unary_expression_token1, - ACTIONS(343), 1, - aux_sym_unary_expression_token2, - ACTIONS(345), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, - aux_sym_locked_expression_token1, - ACTIONS(353), 1, - aux_sym_scope_tuning_token1, - ACTIONS(357), 1, - aux_sym_if_statement_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(363), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - ACTIONS(907), 1, - sym__terminator, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1247), 1, - sym__expression, - ACTIONS(365), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(341), 2, - sym_comment, - sym_include, - ACTIONS(329), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(27), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(38), 18, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym__string_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [5517] = 6, - ACTIONS(59), 1, + [5403] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(79), 2, + ACTIONS(98), 2, aux_sym_variable_definition_token2, anon_sym_LIKE, - STATE(342), 2, + STATE(343), 2, sym_comment, sym_include, - ACTIONS(81), 48, + ACTIONS(100), 48, sym__namedot, sym__terminator, aux_sym__block_terminator_token1, @@ -52762,6 +53145,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_definition_token1, aux_sym_variable_definition_token6, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_property_type_token1, aux_sym_property_tuning_token1, @@ -52784,80 +53168,79 @@ static const uint16_t ts_small_parse_table[] = { 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_temp_table_tuning_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [5585] = 29, + [5471] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(909), 1, + ACTIONS(915), 1, sym__terminator, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1308), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1243), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(343), 2, + STATE(344), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52876,73 +53259,73 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5699] = 29, + [5585] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(911), 1, + ACTIONS(917), 1, sym__terminator, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1513), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1415), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(344), 2, + STATE(345), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52961,71 +53344,73 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5813] = 28, + [5699] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(770), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + ACTIONS(919), 1, + sym__terminator, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(1164), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(345), 2, - sym_comment, - sym_include, - STATE(1145), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + STATE(346), 2, + sym_comment, + sym_include, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53044,71 +53429,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5924] = 28, + [5813] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(627), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1196), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(346), 2, + STATE(347), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53127,71 +53512,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6035] = 28, + [5924] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(210), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1271), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(347), 2, + STATE(348), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53210,71 +53595,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6146] = 28, + [6035] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(714), 1, + STATE(715), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(348), 2, + STATE(349), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53293,71 +53678,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6257] = 28, + [6146] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, - aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(822), 1, - sym__expression, - STATE(1547), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1607), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(987), 2, + STATE(1444), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(349), 2, - sym_comment, - sym_include, - STATE(1576), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + STATE(350), 2, + sym_comment, + sym_include, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53376,71 +53761,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6368] = 28, + [6257] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(624), 1, + STATE(828), 1, sym__expression, - ACTIONS(365), 2, + STATE(1554), 1, + sym_object_access, + STATE(1602), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(350), 2, + STATE(351), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1625), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53459,71 +53844,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6479] = 28, + [6368] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(695), 1, + STATE(829), 1, sym__expression, - ACTIONS(365), 2, + STATE(1554), 1, + sym_object_access, + STATE(1602), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(351), 2, + STATE(352), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1625), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53542,71 +53927,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6590] = 28, + [6479] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(973), 1, + anon_sym_LPAREN, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(522), 1, + STATE(832), 1, sym__expression, - STATE(568), 1, + STATE(1554), 1, sym_object_access, - STATE(570), 1, + STATE(1602), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(352), 2, + STATE(353), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(1625), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53625,71 +54010,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6701] = 28, + [6590] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(349), 1, + anon_sym_LPAREN, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, - aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(525), 1, - sym__expression, - STATE(568), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(570), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(669), 2, + STATE(543), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(353), 2, - sym_comment, - sym_include, - STATE(569), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + STATE(354), 2, + sym_comment, + sym_include, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53708,71 +54093,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6812] = 28, + [6701] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, - aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(794), 1, - sym__expression, - STATE(1243), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1536), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1025), 2, + STATE(1198), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(354), 2, - sym_comment, - sym_include, - STATE(1563), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(995), 4, + STATE(355), 2, + sym_comment, + sym_include, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53791,71 +54176,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6923] = 28, + [6812] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(134), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1398), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(355), 2, + STATE(356), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53874,71 +54259,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7034] = 28, + [6923] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(959), 1, + sym_identifier, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - ACTIONS(1027), 1, - sym_identifier, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1177), 1, + STATE(842), 1, sym__expression, - ACTIONS(365), 2, + STATE(1554), 1, + sym_object_access, + STATE(1602), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(356), 2, + STATE(357), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1625), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53957,71 +54342,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7145] = 28, + [7034] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(959), 1, + sym_identifier, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - ACTIONS(1029), 1, - sym_identifier, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1244), 1, + STATE(835), 1, sym__expression, - ACTIONS(365), 2, + STATE(1554), 1, + sym_object_access, + STATE(1602), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(357), 2, + STATE(358), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1625), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54040,71 +54425,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7256] = 28, + [7145] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1266), 1, + STATE(841), 1, sym__expression, - ACTIONS(365), 2, + STATE(1554), 1, + sym_object_access, + STATE(1602), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(358), 2, + STATE(359), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1625), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54123,71 +54508,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7367] = 28, + [7256] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(698), 1, + STATE(837), 1, sym__expression, - STATE(893), 1, + STATE(1554), 1, sym_object_access, - STATE(1388), 1, + STATE(1602), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(359), 2, + STATE(360), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(1625), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54206,71 +54591,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7478] = 28, + [7367] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(589), 1, + STATE(838), 1, sym__expression, - ACTIONS(365), 2, + STATE(1554), 1, + sym_object_access, + STATE(1602), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(360), 2, + STATE(361), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1625), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54289,71 +54674,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7589] = 28, + [7478] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(692), 1, + STATE(833), 1, sym__expression, - STATE(893), 1, + STATE(1554), 1, sym_object_access, - STATE(1388), 1, + STATE(1602), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(361), 2, + STATE(362), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(1625), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54372,71 +54757,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7700] = 28, + [7589] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(550), 1, + STATE(678), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(362), 2, + STATE(363), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54455,71 +54840,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7811] = 28, + [7700] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, + ACTIONS(1023), 1, aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - STATE(833), 1, + STATE(666), 1, sym__expression, - STATE(1547), 1, + STATE(735), 1, sym_object_access, - STATE(1607), 1, + STATE(756), 1, sym__decimal_literal, - ACTIONS(987), 2, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(363), 2, + STATE(364), 2, sym_comment, sym_include, - STATE(1576), 2, + STATE(760), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54538,71 +54923,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7922] = 28, + [7811] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1023), 1, + aux_sym_input_expression_token1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(804), 1, + STATE(646), 1, sym__expression, - ACTIONS(365), 2, + STATE(735), 1, + sym_object_access, + STATE(756), 1, + sym__decimal_literal, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(364), 2, + STATE(365), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(760), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54621,71 +55006,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8033] = 28, + [7922] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(631), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(637), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(365), 2, + STATE(366), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54704,71 +55089,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8144] = 28, + [8033] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1213), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1238), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(366), 2, + STATE(367), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54787,71 +55172,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8255] = 28, + [8144] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(680), 1, + STATE(787), 1, sym__expression, - STATE(893), 1, + STATE(953), 1, sym_object_access, - STATE(1388), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(367), 2, + STATE(368), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54870,71 +55255,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8366] = 28, + [8255] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(335), 1, + sym_identifier, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(1031), 1, - sym_identifier, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1320), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(685), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(368), 2, + STATE(369), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54953,71 +55338,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8477] = 28, + [8366] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(660), 1, + STATE(711), 1, sym__expression, - STATE(732), 1, + STATE(953), 1, sym_object_access, - STATE(750), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(1069), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(369), 2, + STATE(370), 2, sym_comment, sym_include, - STATE(736), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1039), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55036,71 +55421,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8588] = 28, + [8477] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, - aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(663), 1, - sym__expression, - STATE(732), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(750), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1069), 2, + STATE(840), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(370), 2, - sym_comment, - sym_include, - STATE(736), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1039), 4, + STATE(371), 2, + sym_comment, + sym_include, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55119,71 +55504,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8699] = 28, + [8588] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(654), 1, + STATE(694), 1, sym__expression, - STATE(732), 1, + STATE(953), 1, sym_object_access, - STATE(750), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(1069), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(371), 2, + STATE(372), 2, sym_comment, sym_include, - STATE(736), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1039), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55202,71 +55587,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8810] = 28, + [8699] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(1035), 1, + sym_identifier, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1061), 1, + aux_sym_input_expression_token1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - ACTIONS(1071), 1, - sym_identifier, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1333), 1, + STATE(612), 1, sym__expression, - ACTIONS(365), 2, + STATE(667), 1, + sym_object_access, + STATE(674), 1, + sym__decimal_literal, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(372), 2, + STATE(373), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(681), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55285,71 +55670,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8921] = 28, + [8810] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, - aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(662), 1, - sym__expression, - STATE(732), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(750), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1069), 2, + STATE(1267), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(373), 2, - sym_comment, - sym_include, - STATE(736), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1039), 4, + STATE(374), 2, + sym_comment, + sym_include, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55368,71 +55753,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9032] = 28, + [8921] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1141), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(773), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(374), 2, + STATE(375), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55451,71 +55836,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9143] = 28, + [9032] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(702), 1, + STATE(780), 1, sym__expression, - STATE(893), 1, + STATE(953), 1, sym_object_access, - STATE(1388), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(375), 2, + STATE(376), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55534,71 +55919,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9254] = 28, + [9143] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(633), 1, + STATE(779), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(376), 2, + STATE(377), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55617,71 +56002,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9365] = 28, + [9254] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(549), 1, + STATE(781), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(377), 2, + STATE(378), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55700,71 +56085,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9476] = 28, + [9365] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1468), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(652), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(378), 2, + STATE(379), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55783,71 +56168,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9587] = 28, + [9476] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(547), 1, + STATE(782), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(379), 2, + STATE(380), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55866,71 +56251,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9698] = 28, + [9587] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(635), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(742), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(380), 2, + STATE(381), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55949,71 +56334,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9809] = 28, + [9698] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1324), 1, + STATE(783), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(381), 2, + STATE(382), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56032,71 +56417,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9920] = 28, + [9809] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1414), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1186), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(382), 2, + STATE(383), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56115,71 +56500,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10031] = 28, + [9920] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1023), 1, + aux_sym_input_expression_token1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1336), 1, + STATE(644), 1, sym__expression, - ACTIONS(365), 2, + STATE(735), 1, + sym_object_access, + STATE(756), 1, + sym__decimal_literal, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(383), 2, + STATE(384), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(760), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56198,71 +56583,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10142] = 28, + [10031] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1328), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(553), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(384), 2, + STATE(385), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56281,71 +56666,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10253] = 28, + [10142] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1341), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(626), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(385), 2, + STATE(386), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56364,71 +56749,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10364] = 28, + [10253] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, + ACTIONS(1061), 1, aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - STATE(792), 1, + STATE(610), 1, sym__expression, - STATE(1243), 1, + STATE(667), 1, sym_object_access, - STATE(1536), 1, + STATE(674), 1, sym__decimal_literal, - ACTIONS(1025), 2, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(386), 2, + STATE(387), 2, sym_comment, sym_include, - STATE(1563), 2, + STATE(681), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(995), 4, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56447,71 +56832,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10475] = 28, + [10364] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(349), 1, + anon_sym_LPAREN, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, - aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(524), 1, - sym__expression, - STATE(568), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(570), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(669), 2, + STATE(593), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(387), 2, - sym_comment, - sym_include, - STATE(569), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + STATE(388), 2, + sym_comment, + sym_include, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56530,71 +56915,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10586] = 28, + [10475] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, - aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(805), 1, - sym__expression, - STATE(1243), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1536), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1025), 2, + STATE(631), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(388), 2, - sym_comment, - sym_include, - STATE(1563), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(995), 4, + STATE(389), 2, + sym_comment, + sym_include, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56613,71 +56998,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10697] = 28, + [10586] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(716), 1, + STATE(784), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(389), 2, + STATE(390), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56696,71 +57081,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10808] = 28, + [10697] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, - aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(809), 1, - sym__expression, - STATE(1243), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1536), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1025), 2, + STATE(1359), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(390), 2, - sym_comment, - sym_include, - STATE(1563), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(995), 4, + STATE(391), 2, + sym_comment, + sym_include, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56779,71 +57164,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10919] = 28, + [10808] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(827), 1, + STATE(785), 1, sym__expression, - STATE(1547), 1, + STATE(953), 1, sym_object_access, - STATE(1607), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(987), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(391), 2, + STATE(392), 2, sym_comment, sym_include, - STATE(1576), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56862,71 +57247,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11030] = 28, + [10919] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(830), 1, + STATE(786), 1, sym__expression, - STATE(1547), 1, + STATE(953), 1, sym_object_access, - STATE(1607), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(987), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(392), 2, + STATE(393), 2, sym_comment, sym_include, - STATE(1576), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56945,71 +57330,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11141] = 28, + [11030] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(831), 1, + STATE(776), 1, sym__expression, - STATE(1547), 1, + STATE(953), 1, sym_object_access, - STATE(1607), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(987), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(393), 2, + STATE(394), 2, sym_comment, sym_include, - STATE(1576), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57028,71 +57413,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11252] = 28, + [11141] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, - anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(815), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(522), 1, sym__expression, - STATE(1547), 1, + STATE(558), 1, sym_object_access, - STATE(1607), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(987), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(394), 2, + STATE(395), 2, sym_comment, sym_include, - STATE(1576), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57111,154 +57496,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11363] = 28, + [11252] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, - aux_sym_scope_tuning_token1, - ACTIONS(357), 1, - aux_sym_if_statement_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(363), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(551), 1, - sym__expression, - ACTIONS(365), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(395), 2, - sym_comment, - sym_include, - ACTIONS(329), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(27), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(38), 18, - sym_constant, - sym_qualified_name, - sym_boolean_literal, - sym_number_literal, - sym__string_literal, - sym_parenthesized_expression, - sym_unary_expression, - sym_ambiguous_expression, - sym_current_changed_expression, - sym_locked_expression, - sym_input_expression, - sym__binary_expression, - sym_function_call, - sym_ternary_expression, - sym_new_expression, - sym_can_find_expression, - sym_accumulate_expression, - sym_available_expression, - [11474] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(323), 1, - sym_identifier, - ACTIONS(325), 1, - anon_sym_LBRACE, - ACTIONS(327), 1, - sym_null_expression, - ACTIONS(331), 1, - sym__integer_literal, - ACTIONS(333), 1, - anon_sym_DQUOTE, - ACTIONS(335), 1, - anon_sym_SQUOTE, - ACTIONS(337), 1, - anon_sym_LPAREN, - ACTIONS(341), 1, - aux_sym_unary_expression_token1, - ACTIONS(343), 1, - aux_sym_unary_expression_token2, - ACTIONS(345), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, - aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(144), 1, + STATE(824), 1, sym__expression, - ACTIONS(365), 2, + STATE(1554), 1, + sym_object_access, + STATE(1602), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(396), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1625), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57277,71 +57579,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11585] = 28, + [11363] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(212), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(556), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(397), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57360,71 +57662,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11696] = 28, + [11474] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, - anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(663), 1, + aux_sym_input_expression_token1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(587), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(530), 1, sym__expression, - ACTIONS(365), 2, + STATE(558), 1, + sym_object_access, + STATE(567), 1, + sym__decimal_literal, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(398), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(589), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57443,71 +57745,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11807] = 28, + [11585] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, - anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(820), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(529), 1, sym__expression, - STATE(1547), 1, + STATE(558), 1, sym_object_access, - STATE(1607), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(987), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(399), 2, sym_comment, sym_include, - STATE(1576), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57526,71 +57828,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11918] = 28, + [11696] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(801), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(591), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(400), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57609,71 +57911,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12029] = 28, + [11807] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, - anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(651), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(527), 1, sym__expression, - STATE(732), 1, + STATE(558), 1, sym_object_access, - STATE(750), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(1069), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(401), 2, sym_comment, sym_include, - STATE(736), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1039), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57692,71 +57994,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12140] = 28, + [11918] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, - anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(790), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(526), 1, sym__expression, - STATE(1243), 1, + STATE(558), 1, sym_object_access, - STATE(1536), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(1025), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(402), 2, sym_comment, sym_include, - STATE(1563), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(995), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57775,71 +58077,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12251] = 28, + [12029] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, + ACTIONS(1023), 1, aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - STATE(647), 1, + STATE(657), 1, sym__expression, - STATE(732), 1, + STATE(735), 1, sym_object_access, - STATE(750), 1, + STATE(756), 1, sym__decimal_literal, - ACTIONS(1069), 2, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(403), 2, sym_comment, sym_include, - STATE(736), 2, + STATE(760), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1039), 4, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57858,71 +58160,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12362] = 28, + [12140] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, + ACTIONS(1023), 1, aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - STATE(636), 1, + STATE(661), 1, sym__expression, - STATE(732), 1, + STATE(735), 1, sym_object_access, - STATE(750), 1, + STATE(756), 1, sym__decimal_literal, - ACTIONS(1069), 2, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(404), 2, sym_comment, sym_include, - STATE(736), 2, + STATE(760), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1039), 4, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57941,71 +58243,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12473] = 28, + [12251] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(661), 1, + STATE(712), 1, sym__expression, - STATE(732), 1, + STATE(953), 1, sym_object_access, - STATE(750), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(1069), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(405), 2, sym_comment, sym_include, - STATE(736), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1039), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58024,71 +58326,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12584] = 28, + [12362] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, + ACTIONS(1023), 1, aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - STATE(644), 1, + STATE(663), 1, sym__expression, - STATE(732), 1, + STATE(735), 1, sym_object_access, - STATE(750), 1, + STATE(756), 1, sym__decimal_literal, - ACTIONS(1069), 2, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(406), 2, sym_comment, sym_include, - STATE(736), 2, + STATE(760), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1039), 4, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58107,71 +58409,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12695] = 28, + [12473] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, - sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(705), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + ACTIONS(1073), 1, + sym_identifier, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(1165), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(407), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58190,71 +58492,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12806] = 28, + [12584] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, + ACTIONS(1023), 1, aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - STATE(799), 1, + STATE(664), 1, sym__expression, - STATE(1243), 1, + STATE(735), 1, sym_object_access, - STATE(1536), 1, + STATE(756), 1, sym__decimal_literal, - ACTIONS(1025), 2, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(408), 2, sym_comment, sym_include, - STATE(1563), 2, + STATE(760), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(995), 4, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58273,71 +58575,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12917] = 28, + [12695] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(1011), 1, + anon_sym_LPAREN, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(1023), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(526), 1, + STATE(665), 1, sym__expression, - STATE(568), 1, + STATE(735), 1, sym_object_access, - STATE(570), 1, + STATE(756), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(409), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(760), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58356,71 +58658,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13028] = 28, + [12806] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1248), 1, + STATE(683), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(410), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58439,71 +58741,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13139] = 28, + [12917] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(685), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(524), 1, sym__expression, - STATE(893), 1, + STATE(558), 1, sym_object_access, - STATE(1388), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(411), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58522,71 +58824,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13250] = 28, + [13028] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(806), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1360), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(412), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58605,71 +58907,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13361] = 28, + [13139] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1360), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(183), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(413), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58688,71 +58990,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13472] = 28, + [13250] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(829), 1, + STATE(834), 1, sym__expression, - STATE(1547), 1, + STATE(1554), 1, sym_object_access, - STATE(1607), 1, + STATE(1602), 1, sym__decimal_literal, - ACTIONS(987), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(414), 2, sym_comment, sym_include, - STATE(1576), 2, + STATE(1625), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(965), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(1596), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(1614), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58771,71 +59073,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13583] = 28, + [13361] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, - sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + ACTIONS(1075), 1, + sym_identifier, + STATE(17), 1, sym_object_access, - STATE(548), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1153), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(415), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58854,71 +59156,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13694] = 28, + [13472] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, - aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(818), 1, - sym__expression, - STATE(1547), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1607), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(987), 2, + STATE(713), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(416), 2, sym_comment, sym_include, - STATE(1576), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58937,71 +59239,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13805] = 28, + [13583] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, + ACTIONS(1061), 1, aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - STATE(825), 1, + STATE(620), 1, sym__expression, - STATE(1547), 1, + STATE(667), 1, sym_object_access, - STATE(1607), 1, + STATE(674), 1, sym__decimal_literal, - ACTIONS(987), 2, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(417), 2, sym_comment, sym_include, - STATE(1576), 2, + STATE(681), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59020,71 +59322,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13916] = 28, + [13694] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1061), 1, + aux_sym_input_expression_token1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(214), 1, + STATE(616), 1, sym__expression, - ACTIONS(365), 2, + STATE(667), 1, + sym_object_access, + STATE(674), 1, + sym__decimal_literal, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(418), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(681), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59103,71 +59405,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14027] = 28, + [13805] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(953), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(955), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(959), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(961), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(963), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(965), 1, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(969), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(971), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(973), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(975), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(977), 1, + ACTIONS(1061), 1, aux_sym_input_expression_token1, - ACTIONS(979), 1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(981), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(983), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(985), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - STATE(832), 1, + STATE(614), 1, sym__expression, - STATE(1547), 1, + STATE(667), 1, sym_object_access, - STATE(1607), 1, + STATE(674), 1, sym__decimal_literal, - ACTIONS(987), 2, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(419), 2, sym_comment, sym_include, - STATE(1576), 2, + STATE(681), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(957), 4, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1611), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1613), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59186,71 +59488,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14138] = 28, + [13916] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1061), 1, + aux_sym_input_expression_token1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(135), 1, + STATE(613), 1, sym__expression, - ACTIONS(365), 2, + STATE(667), 1, + sym_object_access, + STATE(674), 1, + sym__decimal_literal, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(420), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(681), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59269,71 +59571,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14249] = 28, + [14027] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(224), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1491), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(421), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59352,71 +59654,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14360] = 28, + [14138] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(349), 1, + anon_sym_LPAREN, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, - aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(529), 1, - sym__expression, - STATE(568), 1, + STATE(17), 1, sym_object_access, - STATE(570), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(669), 2, + STATE(648), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(422), 2, sym_comment, sym_include, - STATE(569), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59435,71 +59737,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14471] = 28, + [14249] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(772), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(818), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(423), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59518,71 +59820,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14582] = 28, + [14360] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1061), 1, + aux_sym_input_expression_token1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(735), 1, + STATE(611), 1, sym__expression, - ACTIONS(365), 2, + STATE(667), 1, + sym_object_access, + STATE(674), 1, + sym__decimal_literal, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(424), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(681), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59601,71 +59903,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14693] = 28, + [14471] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(1049), 1, + anon_sym_LPAREN, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(1061), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(521), 1, + STATE(617), 1, sym__expression, - STATE(568), 1, + STATE(667), 1, sym_object_access, - STATE(570), 1, + STATE(674), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(425), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(681), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59684,71 +59986,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14804] = 28, + [14582] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, - aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(802), 1, - sym__expression, - STATE(1243), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1536), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1025), 2, + STATE(1376), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(426), 2, sym_comment, sym_include, - STATE(1563), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(995), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59767,71 +60069,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [14915] = 28, + [14693] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1061), 1, + aux_sym_input_expression_token1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(629), 1, + STATE(618), 1, sym__expression, - ACTIONS(365), 2, + STATE(667), 1, + sym_object_access, + STATE(674), 1, + sym__decimal_literal, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(427), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(681), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59850,71 +60152,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15026] = 28, + [14804] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(1049), 1, + anon_sym_LPAREN, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(1061), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(531), 1, + STATE(619), 1, sym__expression, - STATE(568), 1, + STATE(667), 1, sym_object_access, - STATE(570), 1, + STATE(674), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(428), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(681), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59933,71 +60235,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15137] = 28, + [14915] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(349), 1, + anon_sym_LPAREN, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, - aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(532), 1, - sym__expression, - STATE(568), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(570), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(669), 2, + STATE(1221), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(429), 2, sym_comment, sym_include, - STATE(569), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60016,71 +60318,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15248] = 28, + [15026] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1035), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1037), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1039), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1043), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1045), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1047), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1051), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1053), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1055), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1057), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1059), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1061), 1, + aux_sym_input_expression_token1, + ACTIONS(1063), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1065), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1067), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1069), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(625), 1, + STATE(615), 1, sym__expression, - ACTIONS(365), 2, + STATE(667), 1, + sym_object_access, + STATE(674), 1, + sym__decimal_literal, + ACTIONS(1071), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(430), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(681), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1041), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(707), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(710), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60099,71 +60401,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15359] = 28, + [15137] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1103), 1, + aux_sym_input_expression_token1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1109), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(850), 1, + STATE(812), 1, sym__expression, - ACTIONS(365), 2, + STATE(1331), 1, + sym_object_access, + STATE(1565), 1, + sym__decimal_literal, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(431), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1572), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60182,71 +60484,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15470] = 28, + [15248] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1377), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(817), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(432), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60265,71 +60567,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15581] = 28, + [15359] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1519), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(632), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(433), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60348,71 +60650,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15692] = 28, + [15470] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1396), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(643), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(434), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60431,71 +60733,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15803] = 28, + [15581] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(797), 1, + STATE(791), 1, sym__expression, - STATE(1243), 1, + STATE(953), 1, sym_object_access, - STATE(1536), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(1025), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(435), 2, sym_comment, sym_include, - STATE(1563), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(995), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60514,71 +60816,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [15914] = 28, + [15692] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(710), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(625), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(436), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60597,71 +60899,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16025] = 28, + [15803] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(694), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(548), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(437), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60680,71 +60982,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16136] = 28, + [15914] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1374), 1, + STATE(702), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(438), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60763,71 +61065,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16247] = 28, + [16025] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(619), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(145), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(439), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60846,71 +61148,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16358] = 28, + [16136] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(541), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(144), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(440), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60929,71 +61231,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16469] = 28, + [16247] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, - aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(664), 1, - sym__expression, - STATE(732), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(750), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1069), 2, + STATE(143), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(441), 2, sym_comment, sym_include, - STATE(736), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1039), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61012,71 +61314,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16580] = 28, + [16358] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(679), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(142), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(442), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61095,71 +61397,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16691] = 28, + [16469] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(696), 1, + STATE(693), 1, sym__expression, - STATE(893), 1, + STATE(953), 1, sym_object_access, - STATE(1388), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(443), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61178,71 +61480,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16802] = 28, + [16580] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, - aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - STATE(708), 1, - sym__expression, - STATE(893), 1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(655), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(444), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61261,71 +61563,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [16913] = 28, + [16691] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, + ACTIONS(335), 1, + sym_identifier, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(1073), 1, - sym_identifier, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1143), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1235), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(445), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61344,71 +61646,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17024] = 28, + [16802] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1103), 1, + aux_sym_input_expression_token1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1109), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(552), 1, + STATE(810), 1, sym__expression, - ACTIONS(365), 2, + STATE(1331), 1, + sym_object_access, + STATE(1565), 1, + sym__decimal_literal, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(446), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1572), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61427,71 +61729,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17135] = 28, + [16913] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, + ACTIONS(1103), 1, aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(1109), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - STATE(798), 1, + STATE(801), 1, sym__expression, - STATE(1243), 1, + STATE(1331), 1, sym_object_access, - STATE(1536), 1, + STATE(1565), 1, sym__decimal_literal, - ACTIONS(1025), 2, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(447), 2, sym_comment, sym_include, - STATE(1563), 2, + STATE(1572), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(995), 4, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61510,71 +61812,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17246] = 28, + [17024] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(125), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1399), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(448), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61593,71 +61895,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17357] = 28, + [17135] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1103), 1, + aux_sym_input_expression_token1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1109), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1262), 1, + STATE(802), 1, sym__expression, - ACTIONS(365), 2, + STATE(1331), 1, + sym_object_access, + STATE(1565), 1, + sym__decimal_literal, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(449), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1572), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61676,71 +61978,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17468] = 28, + [17246] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(1103), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(1109), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(523), 1, + STATE(803), 1, sym__expression, - STATE(568), 1, + STATE(1331), 1, sym_object_access, - STATE(570), 1, + STATE(1565), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(450), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(1572), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61759,71 +62061,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17579] = 28, + [17357] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, + ACTIONS(1023), 1, aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(1029), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(652), 1, + STATE(670), 1, sym__expression, - ACTIONS(365), 2, + STATE(735), 1, + sym_object_access, + STATE(756), 1, + sym__decimal_literal, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(451), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(760), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61842,71 +62144,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17690] = 28, + [17468] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1103), 1, + aux_sym_input_expression_token1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1109), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(1290), 1, + STATE(804), 1, sym__expression, - ACTIONS(365), 2, + STATE(1331), 1, + sym_object_access, + STATE(1565), 1, + sym__decimal_literal, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(452), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1572), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61925,71 +62227,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17801] = 28, + [17579] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(121), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(568), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(453), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62008,71 +62310,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [17912] = 28, + [17690] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(583), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(141), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(454), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62091,71 +62393,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18023] = 28, + [17801] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1033), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1035), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1037), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1041), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1043), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1045), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1047), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1049), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1051), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(1053), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1055), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1057), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(1059), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(1061), 1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(1063), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(1065), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1067), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - STATE(645), 1, - sym__expression, - STATE(732), 1, + STATE(17), 1, sym_object_access, - STATE(750), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1069), 2, + STATE(653), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(455), 2, sym_comment, sym_include, - STATE(736), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1039), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(755), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(760), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62174,71 +62476,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18134] = 28, + [17912] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(953), 1, + aux_sym_can_find_expression_token1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(646), 1, + STATE(717), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(456), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62257,71 +62559,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18245] = 28, + [18023] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1404), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(641), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(457), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62340,71 +62642,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18356] = 28, + [18134] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, - aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - STATE(769), 1, - sym__expression, - STATE(893), 1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(662), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(458), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62423,71 +62725,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18467] = 28, + [18245] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(627), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(629), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(633), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(637), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(639), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(641), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(645), 1, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(647), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(649), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(651), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(653), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(655), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(659), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(661), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(665), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(667), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(831), 1, - anon_sym_LPAREN, - STATE(527), 1, + STATE(675), 1, sym__expression, - STATE(568), 1, + STATE(953), 1, sym_object_access, - STATE(570), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(669), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(459), 2, sym_comment, sym_include, - STATE(569), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(635), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(554), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(574), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62506,71 +62808,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18578] = 28, + [18356] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(588), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(849), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(460), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62589,71 +62891,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18689] = 28, + [18467] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(687), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(1282), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(461), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62672,71 +62974,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18800] = 28, + [18578] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1077), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - STATE(616), 1, - sym__expression, - STATE(648), 1, + STATE(17), 1, sym_object_access, - STATE(667), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1111), 2, + STATE(640), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(462), 2, sym_comment, sym_include, - STATE(668), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62755,71 +63057,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [18911] = 28, + [18689] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1261), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(647), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(463), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62838,71 +63140,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19022] = 28, + [18800] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1124), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(728), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(464), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62921,71 +63223,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19133] = 28, + [18911] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, - sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + ACTIONS(1115), 1, + sym_identifier, + STATE(17), 1, sym_object_access, - STATE(544), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1181), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(465), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63004,71 +63306,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19244] = 28, + [19022] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(626), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(557), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(466), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63087,71 +63389,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19355] = 28, + [19133] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(546), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(973), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(467), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63170,71 +63472,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19466] = 28, + [19244] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(712), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(525), 1, sym__expression, - STATE(893), 1, + STATE(558), 1, sym_object_access, - STATE(1388), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(468), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63253,71 +63555,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19577] = 28, + [19355] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1391), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(633), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(469), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63336,71 +63638,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19688] = 28, + [19466] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1103), 1, + aux_sym_input_expression_token1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1109), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(824), 1, + STATE(806), 1, sym__expression, - ACTIONS(365), 2, + STATE(1331), 1, + sym_object_access, + STATE(1565), 1, + sym__decimal_literal, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(470), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1572), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63419,71 +63721,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19799] = 28, + [19577] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, - sym_identifier, ACTIONS(1077), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(1079), 1, + anon_sym_LBRACE, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(1083), 1, - sym__integer_literal, ACTIONS(1085), 1, - anon_sym_DQUOTE, + sym__integer_literal, ACTIONS(1087), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(1089), 1, - anon_sym_LPAREN, + anon_sym_SQUOTE, ACTIONS(1091), 1, - aux_sym_unary_expression_token1, + anon_sym_LPAREN, ACTIONS(1093), 1, - aux_sym_unary_expression_token2, + aux_sym_unary_expression_token1, ACTIONS(1095), 1, - aux_sym_ambiguous_expression_token1, + aux_sym_unary_expression_token2, ACTIONS(1097), 1, - aux_sym_current_changed_expression_token1, + aux_sym_ambiguous_expression_token1, ACTIONS(1099), 1, - aux_sym_locked_expression_token1, + aux_sym_current_changed_expression_token1, ACTIONS(1101), 1, - aux_sym_input_expression_token1, + aux_sym_locked_expression_token1, ACTIONS(1103), 1, - aux_sym_scope_tuning_token1, + aux_sym_input_expression_token1, ACTIONS(1105), 1, - aux_sym_if_statement_token1, + aux_sym_scope_tuning_token1, ACTIONS(1107), 1, - aux_sym_can_find_expression_token1, + aux_sym_if_statement_token1, ACTIONS(1109), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - STATE(607), 1, + STATE(807), 1, sym__expression, - STATE(648), 1, + STATE(1331), 1, sym_object_access, - STATE(667), 1, + STATE(1565), 1, sym__decimal_literal, - ACTIONS(1111), 2, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(471), 2, sym_comment, sym_include, - STATE(668), 2, + STATE(1572), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63502,71 +63804,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [19910] = 28, + [19688] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(1103), 1, + aux_sym_input_expression_token1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(1109), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(811), 1, + STATE(808), 1, sym__expression, - ACTIONS(365), 2, + STATE(1331), 1, + sym_object_access, + STATE(1565), 1, + sym__decimal_literal, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(472), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1572), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63585,71 +63887,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20021] = 28, + [19799] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, + ACTIONS(1103), 1, aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(1109), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(659), 1, + STATE(799), 1, sym__expression, - ACTIONS(365), 2, + STATE(1331), 1, + sym_object_access, + STATE(1565), 1, + sym__decimal_literal, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(473), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1572), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63668,71 +63970,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20132] = 28, + [19910] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(1077), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(610), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(528), 1, sym__expression, - STATE(648), 1, + STATE(558), 1, sym_object_access, - STATE(667), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(1111), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(474), 2, sym_comment, sym_include, - STATE(668), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63751,71 +64053,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20243] = 28, + [20021] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(655), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(649), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(475), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63834,71 +64136,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20354] = 28, + [20132] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(637), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1310), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(476), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63917,71 +64219,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20465] = 28, + [20243] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1167), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(630), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(477), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64000,71 +64302,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20576] = 28, + [20354] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(953), 1, + aux_sym_can_find_expression_token1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(650), 1, + STATE(703), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(478), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64083,71 +64385,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20687] = 28, + [20465] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(1077), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(611), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(531), 1, sym__expression, - STATE(648), 1, + STATE(558), 1, sym_object_access, - STATE(667), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(1111), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(479), 2, sym_comment, sym_include, - STATE(668), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64166,71 +64468,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20798] = 28, + [20576] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, - anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(676), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(532), 1, sym__expression, - STATE(893), 1, + STATE(558), 1, sym_object_access, - STATE(1388), 1, + STATE(567), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(480), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(589), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(643), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(564), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(576), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64249,71 +64551,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [20909] = 28, + [20687] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(658), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(814), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(481), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64332,71 +64634,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21020] = 28, + [20798] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1077), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, - aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(608), 1, - sym__expression, - STATE(648), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(667), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1111), 2, + STATE(629), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(482), 2, sym_comment, sym_include, - STATE(668), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64415,71 +64717,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21131] = 28, + [20909] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(639), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(126), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(483), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64498,71 +64800,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21242] = 28, + [21020] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1077), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, - aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(612), 1, - sym__expression, - STATE(648), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(667), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1111), 2, + STATE(1353), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(484), 2, sym_comment, sym_include, - STATE(668), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64581,71 +64883,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21353] = 28, + [21131] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, - aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(803), 1, - sym__expression, - STATE(1243), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1536), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1025), 2, + STATE(125), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(485), 2, sym_comment, sym_include, - STATE(1563), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(995), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64664,71 +64966,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21464] = 28, + [21242] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(1077), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(1079), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(1081), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(1087), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(1089), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(1093), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(1095), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(1097), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(1099), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(1101), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, + ACTIONS(1103), 1, aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(1105), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(1107), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(1109), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1111), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(649), 1, + STATE(820), 1, sym__expression, - ACTIONS(365), 2, + STATE(1331), 1, + sym_object_access, + STATE(1565), 1, + sym__decimal_literal, + ACTIONS(1113), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(486), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1572), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1083), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1569), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1562), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64747,71 +65049,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21575] = 28, + [21353] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(638), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(123), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(487), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64830,71 +65132,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21686] = 28, + [21464] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(413), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(415), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(417), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(419), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(421), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(423), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(425), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(437), 1, + ACTIONS(953), 1, + aux_sym_can_find_expression_token1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, - sym_object_access, - STATE(653), 1, + STATE(691), 1, sym__expression, - ACTIONS(365), 2, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(488), 2, sym_comment, sym_include, - ACTIONS(329), 4, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64913,71 +65215,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21797] = 28, + [21575] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(117), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(120), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(489), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64996,71 +65298,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [21908] = 28, + [21686] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, - sym_identifier, - ACTIONS(1077), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, - aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(613), 1, - sym__expression, - STATE(648), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + ACTIONS(1117), 1, + sym_identifier, + STATE(17), 1, sym_object_access, - STATE(667), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1111), 2, + STATE(1257), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(490), 2, sym_comment, sym_include, - STATE(668), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65079,71 +65381,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22019] = 28, + [21797] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1305), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(635), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(491), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65162,71 +65464,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22130] = 28, + [21908] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(851), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(541), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(492), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65245,71 +65547,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22241] = 28, + [22019] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(785), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(552), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(493), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65328,71 +65630,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22352] = 28, + [22130] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(683), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(550), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(494), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65411,71 +65713,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22463] = 28, + [22241] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1123), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1427), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(495), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65494,71 +65796,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22574] = 28, + [22352] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1077), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, - aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(615), 1, - sym__expression, - STATE(648), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(667), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1111), 2, + STATE(1527), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(496), 2, sym_comment, sym_include, - STATE(668), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65577,71 +65879,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22685] = 28, + [22463] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1384), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1497), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(497), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65660,71 +65962,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22796] = 28, + [22574] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, - sym_identifier, - ACTIONS(1077), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, - aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(614), 1, - sym__expression, - STATE(648), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + ACTIONS(1119), 1, + sym_identifier, + STATE(17), 1, sym_object_access, - STATE(667), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1111), 2, + STATE(1255), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(498), 2, sym_comment, sym_include, - STATE(668), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65743,71 +66045,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [22907] = 28, + [22685] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(810), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1266), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(499), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65826,71 +66128,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23018] = 28, + [22796] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(371), 1, + aux_sym_can_find_expression_token1, + ACTIONS(421), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(423), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(425), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(427), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + ACTIONS(431), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(435), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, - aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(445), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, - aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(766), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(651), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(500), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65909,71 +66211,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23129] = 28, + [22907] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1346), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1270), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(501), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65992,71 +66294,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23240] = 28, + [23018] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1077), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, - aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(609), 1, - sym__expression, - STATE(648), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(667), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1111), 2, + STATE(815), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(502), 2, sym_comment, sym_include, - STATE(668), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66075,71 +66377,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23351] = 28, + [23129] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(642), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1349), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(503), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66158,71 +66460,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23462] = 28, + [23240] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(665), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(555), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(504), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66241,71 +66543,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23573] = 28, + [23351] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(779), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(645), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(505), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66324,71 +66626,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23684] = 28, + [23462] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1075), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(1077), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(1079), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(1083), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(1085), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(1087), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(1089), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(1091), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(1093), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(1095), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1097), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1099), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(1101), 1, - aux_sym_input_expression_token1, - ACTIONS(1103), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(1105), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(1107), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(1109), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(606), 1, - sym__expression, - STATE(648), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(667), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1111), 2, + STATE(696), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(506), 2, sym_comment, sym_include, - STATE(668), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1081), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(681), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(688), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66407,71 +66709,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23795] = 28, + [23573] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(793), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1217), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(507), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66490,71 +66792,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [23906] = 28, + [23684] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(784), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(798), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(508), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66573,71 +66875,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24017] = 28, + [23795] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(788), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(1342), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(509), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66656,71 +66958,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24128] = 28, + [23906] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1339), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(554), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(510), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66739,71 +67041,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24239] = 28, + [24017] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(540), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1273), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(511), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66822,71 +67124,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24350] = 28, + [24128] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(787), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(1306), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(512), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66905,71 +67207,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24461] = 28, + [24239] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(781), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(628), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(513), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66988,71 +67290,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24572] = 28, + [24350] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(620), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(788), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(514), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67071,71 +67373,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24683] = 28, + [24461] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, - aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - STATE(776), 1, - sym__expression, - STATE(893), 1, + ACTIONS(429), 1, + aux_sym_input_expression_token1, + STATE(17), 1, sym_object_access, - STATE(1388), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(949), 2, + STATE(809), 1, + sym__expression, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, + STATE(22), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(515), 2, sym_comment, sym_include, - STATE(1145), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67154,71 +67456,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24794] = 28, + [24572] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(777), 1, + STATE(704), 1, sym__expression, - STATE(893), 1, + STATE(953), 1, sym_object_access, - STATE(1388), 1, + STATE(1412), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(516), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(1146), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(927), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(1408), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(1425), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67237,71 +67539,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [24905] = 28, + [24683] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(913), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(915), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(917), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(921), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(923), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(925), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(927), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(929), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(931), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(933), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(935), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(937), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(939), 1, + ACTIONS(1023), 1, aux_sym_input_expression_token1, - ACTIONS(941), 1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(943), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(945), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(947), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - STATE(778), 1, + STATE(659), 1, sym__expression, - STATE(893), 1, + STATE(735), 1, sym_object_access, - STATE(1388), 1, + STATE(756), 1, sym__decimal_literal, - ACTIONS(949), 2, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(517), 2, sym_comment, sym_include, - STATE(1145), 2, + STATE(760), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(919), 4, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1386), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1400), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67320,71 +67622,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25016] = 28, + [24794] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, + ACTIONS(997), 1, sym_identifier, - ACTIONS(991), 1, + ACTIONS(999), 1, anon_sym_LBRACE, - ACTIONS(993), 1, + ACTIONS(1001), 1, sym_null_expression, - ACTIONS(997), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(999), 1, + ACTIONS(1007), 1, anon_sym_DQUOTE, - ACTIONS(1001), 1, + ACTIONS(1009), 1, anon_sym_SQUOTE, - ACTIONS(1003), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(1005), 1, + ACTIONS(1013), 1, aux_sym_unary_expression_token1, - ACTIONS(1007), 1, + ACTIONS(1015), 1, aux_sym_unary_expression_token2, - ACTIONS(1009), 1, + ACTIONS(1017), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1011), 1, + ACTIONS(1019), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1013), 1, + ACTIONS(1021), 1, aux_sym_locked_expression_token1, - ACTIONS(1015), 1, + ACTIONS(1023), 1, aux_sym_input_expression_token1, - ACTIONS(1017), 1, + ACTIONS(1025), 1, aux_sym_scope_tuning_token1, - ACTIONS(1019), 1, + ACTIONS(1027), 1, aux_sym_if_statement_token1, - ACTIONS(1021), 1, + ACTIONS(1029), 1, aux_sym_can_find_expression_token1, - ACTIONS(1023), 1, + ACTIONS(1031), 1, aux_sym_accumulate_expression_token1, - STATE(796), 1, + STATE(668), 1, sym__expression, - STATE(1243), 1, + STATE(735), 1, sym_object_access, - STATE(1536), 1, + STATE(756), 1, sym__decimal_literal, - ACTIONS(1025), 2, + ACTIONS(1033), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, STATE(518), 2, sym_comment, sym_include, - STATE(1563), 2, + STATE(760), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(995), 4, + ACTIONS(1003), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1544), 4, + STATE(761), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1539), 18, + STATE(768), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67403,71 +67705,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25127] = 28, + [24905] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + ACTIONS(335), 1, sym_identifier, - ACTIONS(325), 1, + ACTIONS(337), 1, anon_sym_LBRACE, - ACTIONS(327), 1, + ACTIONS(339), 1, sym_null_expression, - ACTIONS(331), 1, + ACTIONS(343), 1, sym__integer_literal, - ACTIONS(333), 1, + ACTIONS(345), 1, anon_sym_DQUOTE, - ACTIONS(335), 1, + ACTIONS(347), 1, anon_sym_SQUOTE, - ACTIONS(337), 1, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(341), 1, + ACTIONS(353), 1, aux_sym_unary_expression_token1, - ACTIONS(343), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token2, - ACTIONS(345), 1, + ACTIONS(357), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(347), 1, + ACTIONS(359), 1, aux_sym_current_changed_expression_token1, - ACTIONS(349), 1, + ACTIONS(361), 1, aux_sym_locked_expression_token1, - ACTIONS(353), 1, + ACTIONS(365), 1, aux_sym_scope_tuning_token1, - ACTIONS(357), 1, + ACTIONS(369), 1, aux_sym_if_statement_token1, - ACTIONS(359), 1, + ACTIONS(371), 1, aux_sym_can_find_expression_token1, - ACTIONS(363), 1, + ACTIONS(375), 1, aux_sym_accumulate_expression_token1, - ACTIONS(421), 1, + ACTIONS(429), 1, aux_sym_input_expression_token1, - STATE(28), 1, - sym__decimal_literal, - STATE(34), 1, + STATE(17), 1, sym_object_access, - STATE(1314), 1, + STATE(23), 1, + sym__decimal_literal, + STATE(592), 1, sym__expression, - ACTIONS(365), 2, + ACTIONS(377), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(24), 2, + STATE(22), 2, sym_double_quoted_string, sym_single_quoted_string, STATE(519), 2, sym_comment, sym_include, - ACTIONS(329), 4, + ACTIONS(341), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(27), 4, + STATE(18), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(38), 18, + STATE(45), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67486,25 +67788,256 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [25238] = 10, + [25016] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1113), 1, + ACTIONS(921), 1, + sym_identifier, + ACTIONS(923), 1, + anon_sym_LBRACE, + ACTIONS(925), 1, + sym_null_expression, + ACTIONS(929), 1, + sym__integer_literal, + ACTIONS(931), 1, + anon_sym_DQUOTE, + ACTIONS(933), 1, + anon_sym_SQUOTE, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(1115), 1, + ACTIONS(937), 1, + aux_sym_unary_expression_token1, + ACTIONS(939), 1, + aux_sym_unary_expression_token2, + ACTIONS(941), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(943), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(945), 1, + aux_sym_locked_expression_token1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, + aux_sym_scope_tuning_token1, + ACTIONS(951), 1, + aux_sym_if_statement_token1, + ACTIONS(953), 1, + aux_sym_can_find_expression_token1, + ACTIONS(955), 1, + aux_sym_accumulate_expression_token1, + STATE(716), 1, + sym__expression, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(520), 2, + sym_comment, + sym_include, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1408), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1425), 18, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym__string_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym_function_call, + sym_ternary_expression, + sym_new_expression, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [25127] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(921), 1, + sym_identifier, + ACTIONS(923), 1, + anon_sym_LBRACE, + ACTIONS(925), 1, + sym_null_expression, + ACTIONS(929), 1, + sym__integer_literal, + ACTIONS(931), 1, + anon_sym_DQUOTE, + ACTIONS(933), 1, + anon_sym_SQUOTE, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(937), 1, + aux_sym_unary_expression_token1, + ACTIONS(939), 1, + aux_sym_unary_expression_token2, + ACTIONS(941), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(943), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(945), 1, + aux_sym_locked_expression_token1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, + aux_sym_scope_tuning_token1, + ACTIONS(951), 1, + aux_sym_if_statement_token1, + ACTIONS(953), 1, + aux_sym_can_find_expression_token1, + ACTIONS(955), 1, + aux_sym_accumulate_expression_token1, + STATE(718), 1, + sym__expression, + STATE(953), 1, + sym_object_access, + STATE(1412), 1, + sym__decimal_literal, + ACTIONS(957), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(521), 2, + sym_comment, + sym_include, + STATE(1146), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(927), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(1408), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(1425), 18, + sym_constant, + sym_qualified_name, + sym_boolean_literal, + sym_number_literal, + sym__string_literal, + sym_parenthesized_expression, + sym_unary_expression, + sym_ambiguous_expression, + sym_current_changed_expression, + sym_locked_expression, + sym_input_expression, + sym__binary_expression, + sym_function_call, + sym_ternary_expression, + sym_new_expression, + sym_can_find_expression, + sym_accumulate_expression, + sym_available_expression, + [25238] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, + sym__multiplicative_operator, + STATE(399), 1, + sym__additive_operator, + STATE(401), 1, + sym__logical_operator, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(323), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(522), 2, + sym_comment, + sym_include, + ACTIONS(325), 39, + anon_sym_LBRACE, + 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, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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, + 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, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [25314] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, sym__namedot, - ACTIONS(1117), 1, + ACTIONS(1127), 1, sym__namecolon, - STATE(533), 1, - aux_sym_object_access_repeat1, - STATE(536), 1, + STATE(535), 1, aux_sym_qualified_name_repeat1, + STATE(538), 1, + aux_sym_object_access_repeat1, ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(520), 2, + STATE(523), 2, sym_comment, sym_include, ACTIONS(75), 42, @@ -67550,32 +68083,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25312] = 12, + [25388] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(521), 2, + STATE(524), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -67591,7 +68124,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(1119), 24, + ACTIONS(1129), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -67616,32 +68149,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25390] = 12, + [25466] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(522), 2, + STATE(525), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -67657,7 +68190,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(1123), 24, + ACTIONS(1131), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -67682,32 +68215,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25468] = 12, + [25544] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(523), 2, + STATE(526), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -67723,7 +68256,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(1125), 24, + ACTIONS(1133), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -67748,29 +68281,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25546] = 10, + [25622] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(299), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(524), 2, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(527), 2, sym_comment, sym_include, - ACTIONS(301), 41, + ACTIONS(299), 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(1135), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -67789,53 +68341,56 @@ 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_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, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25620] = 9, + [25700] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(297), 2, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(525), 2, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(528), 2, sym_comment, sym_include, - ACTIONS(295), 43, - anon_sym_SLASH, + ACTIONS(299), 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(1137), 24, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -67852,55 +68407,35 @@ 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_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, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, aux_sym_can_find_expression_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25692] = 11, + [25778] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(289), 2, + ACTIONS(315), 2, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(526), 2, + STATE(529), 2, sym_comment, sym_include, - ACTIONS(293), 39, + ACTIONS(317), 41, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -67919,6 +68454,8 @@ 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_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -67940,94 +68477,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25768] = 12, + [25852] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(527), 2, - sym_comment, - sym_include, - ACTIONS(305), 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(1127), 24, - anon_sym_LBRACE, - 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, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [25846] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1113), 1, - anon_sym_LPAREN, - ACTIONS(1115), 1, - sym__namedot, - ACTIONS(1117), 1, - sym__namecolon, - STATE(533), 1, - aux_sym_object_access_repeat1, - STATE(536), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(67), 2, + ACTIONS(321), 2, sym__or_operator, sym__and_operator, - STATE(528), 2, + STATE(530), 2, sym_comment, sym_include, - ACTIONS(63), 42, + ACTIONS(319), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -68041,6 +68510,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -68070,32 +68540,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25920] = 12, + [25924] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(153), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(529), 2, + STATE(531), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -68111,7 +68581,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(151), 24, + ACTIONS(1139), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -68136,32 +68606,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25998] = 12, + [26002] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(161), 2, sym__or_operator, sym__and_operator, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(530), 2, + STATE(532), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -68177,7 +68647,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(1129), 24, + ACTIONS(159), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -68202,32 +68672,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26076] = 12, + [26080] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, + STATE(395), 1, + sym__comparison_operator, + STATE(398), 1, sym__multiplicative_operator, - STATE(387), 1, + STATE(399), 1, sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, + STATE(401), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(531), 2, + STATE(533), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -68243,7 +68713,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(1131), 24, + ACTIONS(1141), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -68268,50 +68738,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26154] = 12, + [26158] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(353), 1, - sym__multiplicative_operator, - STATE(387), 1, - sym__additive_operator, - STATE(409), 1, - sym__comparison_operator, - STATE(450), 1, - sym__logical_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(1125), 1, + sym__namedot, + ACTIONS(1127), 1, + sym__namecolon, + STATE(535), 1, + aux_sym_qualified_name_repeat1, + STATE(538), 1, + aux_sym_object_access_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(532), 2, + STATE(534), 2, sym_comment, sym_include, - ACTIONS(305), 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(1133), 24, + ACTIONS(63), 42, + anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -68321,13 +68773,29 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, - 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, + anon_sym_PLUS, + anon_sym_DASH, + 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, aux_sym_scope_tuning_token1, aux_sym_if_statement_token1, aux_sym_can_find_expression_token1, @@ -68339,17 +68807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1117), 1, - sym__namecolon, - STATE(535), 1, - aux_sym_object_access_repeat1, - ACTIONS(103), 2, + ACTIONS(1125), 1, + sym__namedot, + STATE(540), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, sym__or_operator, sym__and_operator, - STATE(533), 2, + STATE(535), 2, sym_comment, sym_include, - ACTIONS(101), 43, + ACTIONS(79), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -68398,17 +68866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1115), 1, + ACTIONS(1125), 1, sym__namedot, - STATE(536), 1, + STATE(535), 1, aux_sym_qualified_name_repeat1, - ACTIONS(99), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(534), 2, + STATE(536), 2, sym_comment, sym_include, - ACTIONS(97), 43, + ACTIONS(83), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -68452,21 +68920,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26364] = 6, + [26364] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1135), 1, - sym__namecolon, - ACTIONS(92), 2, + ACTIONS(1125), 1, + sym__namedot, + STATE(535), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - STATE(535), 3, + STATE(537), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(90), 43, + ACTIONS(87), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -68510,19 +68979,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26428] = 7, + [26430] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1115), 1, - sym__namedot, - STATE(538), 1, - aux_sym_qualified_name_repeat1, + ACTIONS(1127), 1, + sym__namecolon, + STATE(539), 1, + aux_sym_object_access_repeat1, ACTIONS(107), 2, sym__or_operator, sym__and_operator, - STATE(536), 2, + STATE(538), 2, sym_comment, sym_include, ACTIONS(105), 43, @@ -68569,22 +69038,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26494] = 7, + [26496] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1115), 1, - sym__namedot, - STATE(536), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(88), 2, + ACTIONS(1143), 1, + sym__namecolon, + ACTIONS(93), 2, sym__or_operator, sym__and_operator, - STATE(537), 2, + STATE(539), 3, sym_comment, sym_include, - ACTIONS(86), 43, + aux_sym_object_access_repeat1, + ACTIONS(91), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -68633,72 +69101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1138), 1, + ACTIONS(1146), 1, sym__namedot, - ACTIONS(81), 2, + ACTIONS(100), 2, sym__or_operator, sym__and_operator, - STATE(538), 3, + STATE(540), 3, sym_comment, sym_include, aux_sym_qualified_name_repeat1, - ACTIONS(79), 43, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - 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, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [26624] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(539), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(115), 43, + ACTIONS(98), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -68742,51 +69154,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26685] = 20, + [26624] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1141), 1, + ACTIONS(1149), 1, sym__terminator, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1687), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1716), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(540), 2, + STATE(541), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -68799,10 +69211,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - ACTIONS(307), 13, + ACTIONS(301), 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, + [26715] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1157), 1, + aux_sym_function_call_token1, + ACTIONS(155), 2, + sym__or_operator, + sym__and_operator, + STATE(542), 2, + sym_comment, + sym_include, + ACTIONS(153), 43, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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, + anon_sym_PLUS, + anon_sym_DASH, + 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, @@ -68813,51 +69276,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26776] = 20, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [26778] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1149), 1, + ACTIONS(1159), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1705), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1714), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(541), 2, + STATE(543), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -68870,7 +69339,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -68884,19 +69353,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26867] = 5, + [26869] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(542), 2, - sym_comment, - sym_include, - ACTIONS(81), 3, - sym__namedot, + ACTIONS(1161), 1, + anon_sym_NO_DASHERROR, + ACTIONS(193), 2, sym__or_operator, sym__and_operator, - ACTIONS(79), 43, + STATE(544), 2, + sym_comment, + sym_include, + ACTIONS(191), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -68940,20 +69410,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26928] = 6, + [26932] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1151), 1, + ACTIONS(1163), 1, anon_sym_NO_DASHERROR, - ACTIONS(213), 2, + ACTIONS(629), 2, sym__or_operator, sym__and_operator, - STATE(543), 2, + STATE(545), 2, sym_comment, sym_include, - ACTIONS(211), 43, + ACTIONS(627), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -68997,67 +69467,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26991] = 20, - ACTIONS(59), 1, + [26995] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, + STATE(546), 2, + sym_comment, + sym_include, + ACTIONS(117), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(115), 43, anon_sym_SLASH, - ACTIONS(287), 1, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(1147), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1153), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - STATE(1710), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, - sym_output_stream_tuning, - ACTIONS(291), 2, + sym_null_expression, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(544), 2, - sym_comment, - sym_include, - ACTIONS(1143), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_output_stream_tuning_token2, - aux_sym_output_stream_tuning_token3, - aux_sym_output_stream_tuning_token4, - aux_sym_output_stream_tuning_token5, - aux_sym_output_stream_tuning_token6, - aux_sym_output_stream_tuning_token7, - ACTIONS(307), 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, @@ -69068,20 +69517,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27082] = 6, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [27056] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1155), 1, + STATE(547), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, sym__namedot, - ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(545), 2, - sym_comment, - sym_include, - ACTIONS(109), 43, + ACTIONS(98), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69125,51 +69579,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [27145] = 20, + [27117] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1157), 1, + ACTIONS(1165), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1718), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1726), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(546), 2, + STATE(548), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -69182,10 +69636,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - ACTIONS(307), 13, + ACTIONS(301), 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, + [27208] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1167), 1, + sym__namedot, + ACTIONS(111), 2, + sym__or_operator, + sym__and_operator, + STATE(549), 2, + sym_comment, + sym_include, + ACTIONS(109), 43, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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, + anon_sym_PLUS, + anon_sym_DASH, + 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, @@ -69196,51 +69701,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27236] = 20, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [27271] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1159), 1, + ACTIONS(1169), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1689), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1698), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(547), 2, + STATE(550), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -69253,10 +69764,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - ACTIONS(307), 13, + ACTIONS(301), 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, + [27362] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1171), 1, + aux_sym_function_call_token1, + ACTIONS(129), 2, + sym__or_operator, + sym__and_operator, + STATE(551), 2, + sym_comment, + sym_include, + ACTIONS(127), 43, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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, + anon_sym_PLUS, + anon_sym_DASH, + 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, @@ -69267,51 +69829,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27327] = 20, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [27425] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1161), 1, + ACTIONS(1173), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1684), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1715), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(548), 2, + STATE(552), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -69324,7 +69892,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69338,51 +69906,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27418] = 20, + [27516] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1163), 1, + ACTIONS(1175), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1714), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1707), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(549), 2, + STATE(553), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -69395,7 +69963,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69409,51 +69977,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27509] = 20, + [27607] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1165), 1, + ACTIONS(1177), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1690), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1705), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(550), 2, + STATE(554), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -69466,7 +70034,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69480,51 +70048,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27600] = 20, + [27698] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1167), 1, + ACTIONS(1179), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1716), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1731), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(551), 2, + STATE(555), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -69537,7 +70105,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69551,51 +70119,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27691] = 20, + [27789] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1169), 1, + ACTIONS(1181), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1700), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1701), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(556), 2, + sym_comment, + sym_include, + ACTIONS(1151), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token8, + ACTIONS(1153), 12, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_output_stream_tuning_token2, + aux_sym_output_stream_tuning_token3, + aux_sym_output_stream_tuning_token4, + aux_sym_output_stream_tuning_token5, + aux_sym_output_stream_tuning_token6, + aux_sym_output_stream_tuning_token7, + ACTIONS(301), 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, + [27880] = 20, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1183), 1, + sym__terminator, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1706), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1812), 1, + sym_output_stream_tuning, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(552), 2, + STATE(557), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -69608,7 +70247,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69622,20 +70261,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27782] = 6, + [27971] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1171), 1, - anon_sym_NO_DASHERROR, - ACTIONS(623), 2, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(553), 2, + STATE(558), 2, sym_comment, sym_include, - ACTIONS(621), 43, + ACTIONS(75), 42, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69649,7 +70288,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -69679,18 +70317,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [27845] = 5, + [28033] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(169), 2, + ACTIONS(189), 2, sym__or_operator, sym__and_operator, - STATE(554), 2, + STATE(559), 2, sym_comment, sym_include, - ACTIONS(167), 43, + ACTIONS(187), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69734,18 +70372,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [27905] = 5, + [28093] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(197), 2, + ACTIONS(177), 2, sym__or_operator, sym__and_operator, - STATE(555), 2, + STATE(560), 2, sym_comment, sym_include, - ACTIONS(195), 43, + ACTIONS(175), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69789,18 +70427,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [27965] = 5, + [28153] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(189), 2, + ACTIONS(221), 2, sym__or_operator, sym__and_operator, - STATE(556), 2, + STATE(561), 2, sym_comment, sym_include, - ACTIONS(187), 43, + ACTIONS(219), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69844,18 +70482,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28025] = 5, + [28213] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(141), 2, + ACTIONS(205), 2, sym__or_operator, sym__and_operator, - STATE(557), 2, + STATE(562), 2, sym_comment, sym_include, - ACTIONS(139), 43, + ACTIONS(203), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69899,18 +70537,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28085] = 5, + [28273] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(209), 2, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - STATE(558), 2, + STATE(563), 2, sym_comment, sym_include, - ACTIONS(207), 43, + ACTIONS(87), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69954,18 +70592,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28145] = 5, + [28333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(193), 2, + ACTIONS(135), 2, sym__or_operator, sym__and_operator, - STATE(559), 2, + STATE(564), 2, sym_comment, sym_include, - ACTIONS(191), 43, + ACTIONS(133), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70009,18 +70647,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28205] = 5, + [28393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(213), 2, + ACTIONS(147), 2, sym__or_operator, sym__and_operator, - STATE(560), 2, + STATE(565), 2, sym_comment, sym_include, - ACTIONS(211), 43, + ACTIONS(145), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70064,18 +70702,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28265] = 5, + [28453] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 2, + ACTIONS(201), 2, sym__or_operator, sym__and_operator, - STATE(561), 2, + STATE(566), 2, sym_comment, sym_include, - ACTIONS(123), 43, + ACTIONS(199), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70119,18 +70757,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28325] = 5, + [28513] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(185), 2, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(562), 2, + STATE(567), 2, sym_comment, sym_include, - ACTIONS(183), 43, + ACTIONS(109), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70174,155 +70812,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28385] = 5, - ACTIONS(3), 1, + [28573] = 16, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(181), 2, - sym__or_operator, - sym__and_operator, - STATE(563), 2, - sym_comment, - sym_include, - ACTIONS(179), 43, - anon_sym_SLASH, + ACTIONS(65), 1, anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - 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, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [28445] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(133), 2, - sym__or_operator, - sym__and_operator, - STATE(564), 2, - sym_comment, - sym_include, - ACTIONS(131), 43, + ACTIONS(293), 1, anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, + ACTIONS(295), 1, anon_sym_STAR, - 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, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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, + ACTIONS(1187), 1, + aux_sym_input_stream_tuning_token11, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 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, - aux_sym_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [28505] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(88), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(565), 2, + STATE(568), 2, sym_comment, sym_include, - ACTIONS(86), 43, - anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, - anon_sym_STAR, - 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, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - 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, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, + ACTIONS(301), 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, @@ -70333,24 +70859,37 @@ 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_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_can_find_expression_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [28565] = 5, + ACTIONS(1185), 18, + sym__terminator, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token2, + aux_sym_output_stream_tuning_token3, + aux_sym_output_stream_tuning_token4, + aux_sym_output_stream_tuning_token5, + aux_sym_output_stream_tuning_token6, + aux_sym_output_stream_tuning_token7, + aux_sym_output_stream_tuning_token8, + [28655] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(137), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(566), 2, + STATE(569), 2, sym_comment, sym_include, - ACTIONS(135), 43, + ACTIONS(83), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70394,18 +70933,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28625] = 5, + [28715] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(145), 2, + ACTIONS(139), 2, sym__or_operator, sym__and_operator, - STATE(567), 2, + STATE(570), 2, sym_comment, sym_include, - ACTIONS(143), 43, + ACTIONS(137), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70449,20 +70988,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28685] = 6, + [28775] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1113), 1, - anon_sym_LPAREN, - ACTIONS(77), 2, + ACTIONS(173), 2, sym__or_operator, sym__and_operator, - STATE(568), 2, + STATE(571), 2, sym_comment, sym_include, - ACTIONS(75), 42, + ACTIONS(171), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70476,6 +71013,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -70505,18 +71043,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28747] = 5, + [28835] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(157), 2, + ACTIONS(125), 2, sym__or_operator, sym__and_operator, - STATE(569), 2, + STATE(572), 2, sym_comment, sym_include, - ACTIONS(155), 43, + ACTIONS(123), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70560,18 +71098,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28807] = 5, + [28895] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(111), 2, + ACTIONS(213), 2, sym__or_operator, sym__and_operator, - STATE(570), 2, + STATE(573), 2, sym_comment, sym_include, - ACTIONS(109), 43, + ACTIONS(211), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70615,18 +71153,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28867] = 5, + [28955] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(67), 2, + ACTIONS(169), 2, sym__or_operator, sym__and_operator, - STATE(571), 2, + STATE(574), 2, sym_comment, sym_include, - ACTIONS(63), 43, + ACTIONS(167), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70670,7 +71208,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28927] = 5, + [29015] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -70678,7 +71216,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(121), 2, sym__or_operator, sym__and_operator, - STATE(572), 2, + STATE(575), 2, sym_comment, sym_include, ACTIONS(119), 43, @@ -70725,18 +71263,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28987] = 5, + [29075] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(201), 2, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(573), 2, + STATE(576), 2, sym_comment, sym_include, - ACTIONS(199), 43, + ACTIONS(75), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70780,18 +71318,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29047] = 5, + [29135] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(77), 2, + ACTIONS(193), 2, sym__or_operator, sym__and_operator, - STATE(574), 2, + STATE(577), 2, sym_comment, sym_include, - ACTIONS(75), 43, + ACTIONS(191), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70835,18 +71373,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29107] = 5, + [29195] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(173), 2, + ACTIONS(197), 2, sym__or_operator, sym__and_operator, - STATE(575), 2, + STATE(578), 2, sym_comment, sym_include, - ACTIONS(171), 43, + ACTIONS(195), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70890,7 +71428,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29167] = 5, + [29255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -70898,7 +71436,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(165), 2, sym__or_operator, sym__and_operator, - STATE(576), 2, + STATE(579), 2, sym_comment, sym_include, ACTIONS(163), 43, @@ -70945,18 +71483,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29227] = 5, + [29315] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(205), 2, + ACTIONS(209), 2, sym__or_operator, sym__and_operator, - STATE(577), 2, + STATE(580), 2, sym_comment, sym_include, - ACTIONS(203), 43, + ACTIONS(207), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71000,7 +71538,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29287] = 5, + [29375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -71008,7 +71546,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(217), 2, sym__or_operator, sym__and_operator, - STATE(578), 2, + STATE(581), 2, sym_comment, sym_include, ACTIONS(215), 43, @@ -71055,18 +71593,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29347] = 5, + [29435] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(149), 2, + ACTIONS(181), 2, sym__or_operator, sym__and_operator, - STATE(579), 2, + STATE(582), 2, sym_comment, sym_include, - ACTIONS(147), 43, + ACTIONS(179), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71110,18 +71648,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29407] = 5, + [29495] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(129), 2, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(580), 2, + STATE(583), 2, sym_comment, sym_include, - ACTIONS(127), 43, + ACTIONS(63), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71165,18 +71703,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29467] = 5, + [29555] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(153), 2, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(581), 2, + STATE(584), 2, sym_comment, sym_include, - ACTIONS(151), 43, + ACTIONS(153), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71220,20 +71758,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29527] = 6, + [29615] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1113), 1, - anon_sym_LPAREN, - ACTIONS(67), 2, + ACTIONS(185), 2, sym__or_operator, sym__and_operator, - STATE(582), 2, + STATE(585), 2, sym_comment, sym_include, - ACTIONS(63), 42, + ACTIONS(183), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71247,6 +71783,7 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71276,43 +71813,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29589] = 16, - ACTIONS(59), 1, + [29675] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(225), 2, + sym__or_operator, + sym__and_operator, + STATE(586), 2, + sym_comment, + sym_include, + ACTIONS(223), 43, anon_sym_SLASH, - ACTIONS(287), 1, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(1175), 1, - aux_sym_input_stream_tuning_token11, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + 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, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(309), 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, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [29735] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(143), 2, sym__or_operator, sym__and_operator, - STATE(583), 2, + STATE(587), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(141), 43, + anon_sym_SLASH, + anon_sym_LBRACE, + sym_identifier, + anon_sym_STAR, + 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, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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, + anon_sym_PLUS, + anon_sym_DASH, + 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, @@ -71323,37 +71917,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(1173), 18, - sym__terminator, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token2, - aux_sym_output_stream_tuning_token3, - aux_sym_output_stream_tuning_token4, - aux_sym_output_stream_tuning_token5, - aux_sym_output_stream_tuning_token6, - aux_sym_output_stream_tuning_token7, - aux_sym_output_stream_tuning_token8, - [29671] = 5, + aux_sym_scope_tuning_token1, + aux_sym_if_statement_token1, + aux_sym_can_find_expression_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [29795] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(99), 2, + ACTIONS(161), 2, sym__or_operator, sym__and_operator, - STATE(584), 2, + STATE(588), 2, sym_comment, sym_include, - ACTIONS(97), 43, + ACTIONS(159), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71397,18 +71978,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29731] = 5, + [29855] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(161), 2, + ACTIONS(151), 2, sym__or_operator, sym__and_operator, - STATE(585), 2, + STATE(589), 2, sym_comment, sym_include, - ACTIONS(159), 43, + ACTIONS(149), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71452,18 +72033,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29791] = 5, + [29915] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(177), 2, + ACTIONS(1123), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(586), 2, + STATE(590), 2, sym_comment, sym_include, - ACTIONS(175), 43, + ACTIONS(63), 42, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71477,7 +72060,6 @@ static const uint16_t ts_small_parse_table[] = { sym__integer_literal, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_LPAREN, aux_sym_unary_expression_token1, aux_sym_unary_expression_token2, aux_sym_ambiguous_expression_token1, @@ -71507,38 +72089,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29851] = 15, + [29977] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(587), 2, + STATE(591), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -71552,7 +72134,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(1177), 18, + ACTIONS(1189), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -71571,38 +72153,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, aux_sym_output_stream_tuning_token8, - [29930] = 15, + [30056] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(588), 2, + STATE(592), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -71616,7 +72198,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(1173), 18, + ACTIONS(1185), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -71635,38 +72217,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, aux_sym_output_stream_tuning_token8, - [30009] = 15, + [30135] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(589), 2, + STATE(593), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -71680,7 +72262,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(1179), 18, + ACTIONS(1191), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -71699,39 +72281,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, aux_sym_output_stream_tuning_token8, - [30088] = 11, + [30214] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1181), 1, - anon_sym_LPAREN, - ACTIONS(1183), 1, - sym__namedot, - ACTIONS(1185), 1, - sym__namecolon, - STATE(618), 1, - aux_sym_object_access_repeat1, - STATE(630), 1, - aux_sym_qualified_name_repeat1, - STATE(590), 2, - sym_comment, - sym_include, - ACTIONS(75), 5, + ACTIONS(293), 1, anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(1193), 1, + anon_sym_RPAREN, + ACTIONS(1197), 1, + aux_sym_using_statement_token1, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + STATE(458), 1, + sym__logical_operator, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1893), 1, + aux_sym_can_find_expression_repeat2, + STATE(1949), 1, + sym__using_first, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(77), 30, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + STATE(594), 2, + sym_comment, + sym_include, + STATE(2139), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -71741,77 +72346,66 @@ static const uint16_t ts_small_parse_table[] = { 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_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [30156] = 23, + [30306] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1187), 1, - anon_sym_RPAREN, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + ACTIONS(1205), 1, + anon_sym_RPAREN, + STATE(458), 1, sym__logical_operator, - STATE(1874), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1887), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(591), 2, + STATE(595), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -71825,62 +72419,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30248] = 23, + [30398] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1199), 1, + ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1878), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1888), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(592), 2, + STATE(596), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -71894,131 +72488,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30340] = 23, + [30490] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, ACTIONS(1201), 1, - anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, - sym__logical_operator, - STATE(1855), 1, - aux_sym_can_find_expression_repeat2, - STATE(1929), 1, - sym__using_first, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(593), 2, - sym_comment, - sym_include, - STATE(2172), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1193), 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(307), 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, - [30432] = 23, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(1189), 1, - aux_sym_using_statement_token1, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(1209), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1876), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1889), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(594), 2, + STATE(597), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72032,62 +72557,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30524] = 23, + [30582] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1205), 1, + ACTIONS(1211), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1881), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1874), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(595), 2, + STATE(598), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72101,62 +72626,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30616] = 23, + [30674] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1207), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1882), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1876), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(596), 2, + STATE(599), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72170,62 +72695,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30708] = 23, + [30766] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1209), 1, + ACTIONS(1215), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1885), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1896), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(597), 2, + STATE(600), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72239,33 +72764,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30800] = 11, + [30858] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1181), 1, + ACTIONS(1217), 1, anon_sym_LPAREN, - ACTIONS(1183), 1, + ACTIONS(1219), 1, sym__namedot, - ACTIONS(1185), 1, + ACTIONS(1221), 1, sym__namecolon, - STATE(618), 1, + STATE(621), 1, aux_sym_object_access_repeat1, - STATE(630), 1, + STATE(623), 1, aux_sym_qualified_name_repeat1, - STATE(598), 2, + STATE(601), 2, sym_comment, sym_include, - ACTIONS(63), 5, + ACTIONS(75), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(67), 30, + ACTIONS(77), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -72296,62 +72821,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [30868] = 23, + [30926] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1211), 1, + ACTIONS(1223), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1862), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1879), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(599), 2, + STATE(602), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72365,62 +72890,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30960] = 23, + [31018] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1213), 1, + ACTIONS(1225), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1884), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1900), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(600), 2, + STATE(603), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72434,62 +72959,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31052] = 23, + [31110] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1215), 1, + ACTIONS(1227), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1868), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1877), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(601), 2, + STATE(604), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72503,62 +73028,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31144] = 23, + [31202] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1217), 1, + anon_sym_LPAREN, + ACTIONS(1219), 1, + sym__namedot, + ACTIONS(1221), 1, + sym__namecolon, + STATE(621), 1, + aux_sym_object_access_repeat1, + STATE(623), 1, + aux_sym_qualified_name_repeat1, + STATE(605), 2, + sym_comment, + sym_include, + ACTIONS(63), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(67), 30, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, + 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_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [31270] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1217), 1, + ACTIONS(1229), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1870), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1873), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(602), 2, + STATE(606), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72572,62 +73154,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31236] = 23, + [31362] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1219), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1859), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1895), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(603), 2, + STATE(607), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72641,62 +73223,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31328] = 23, + [31454] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1221), 1, + ACTIONS(1233), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1856), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1891), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(604), 2, + STATE(608), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72710,62 +73292,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31420] = 23, + [31546] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1223), 1, + ACTIONS(1235), 1, anon_sym_RPAREN, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - STATE(1861), 1, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(1897), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(605), 2, + STATE(609), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72779,38 +73361,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31512] = 15, + [31638] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(151), 1, - aux_sym_variable_definition_token2, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + ACTIONS(1239), 1, + aux_sym_variable_definition_token2, + STATE(424), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(606), 2, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(610), 2, sym_comment, sym_include, - ACTIONS(305), 3, + ACTIONS(299), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(307), 12, + ACTIONS(301), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72823,9 +73408,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(153), 15, - sym__or_operator, - sym__and_operator, + ACTIONS(1237), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -72839,40 +73422,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31587] = 13, + [31715] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + ACTIONS(1135), 1, + aux_sym_variable_definition_token2, + STATE(424), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(607), 2, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(611), 2, sym_comment, sym_include, - ACTIONS(293), 4, + ACTIONS(299), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(289), 27, - sym__or_operator, - sym__and_operator, - aux_sym__block_terminator_token1, + ACTIONS(301), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72885,6 +73469,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(313), 13, + aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -72897,41 +73483,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31658] = 16, + [31792] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1227), 1, + ACTIONS(1133), 1, aux_sym_variable_definition_token2, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + STATE(424), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(608), 2, + STATE(612), 2, sym_comment, sym_include, - ACTIONS(305), 3, + ACTIONS(299), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(307), 12, + ACTIONS(301), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72944,7 +73530,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(1225), 13, + ACTIONS(311), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -72958,41 +73544,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31735] = 16, + [31869] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1119), 1, + ACTIONS(1131), 1, aux_sym_variable_definition_token2, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + STATE(424), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(609), 2, + STATE(613), 2, sym_comment, sym_include, - ACTIONS(305), 3, + ACTIONS(299), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(307), 12, + ACTIONS(301), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73005,7 +73591,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(315), 13, + ACTIONS(309), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -73019,37 +73605,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31812] = 10, + [31946] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, - sym__logical_operator, - STATE(610), 2, - sym_comment, - sym_include, - ACTIONS(295), 5, + ACTIONS(293), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(297), 30, - sym__or_operator, - sym__and_operator, + ACTIONS(295), 1, anon_sym_STAR, - aux_sym__block_terminator_token1, + ACTIONS(1137), 1, + aux_sym_variable_definition_token2, + STATE(424), 1, + sym__logical_operator, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(614), 2, + sym_comment, + sym_include, + ACTIONS(299), 3, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + ACTIONS(301), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73062,6 +73652,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(307), 13, + aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73074,39 +73666,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31877] = 12, + [32023] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + ACTIONS(1129), 1, + aux_sym_variable_definition_token2, + STATE(424), 1, sym__logical_operator, - STATE(611), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(615), 2, sym_comment, sym_include, - ACTIONS(301), 4, + ACTIONS(299), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(299), 29, - sym__or_operator, - sym__and_operator, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(301), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73119,6 +73713,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(327), 13, + aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73131,41 +73727,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31946] = 16, + [32100] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1125), 1, + ACTIONS(1139), 1, aux_sym_variable_definition_token2, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + STATE(424), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(612), 2, + STATE(616), 2, sym_comment, sym_include, - ACTIONS(305), 3, + ACTIONS(299), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(307), 12, + ACTIONS(301), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73192,41 +73788,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32023] = 16, + [32177] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1123), 1, - aux_sym_variable_definition_token2, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + STATE(424), 1, sym__logical_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(613), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + STATE(617), 2, sym_comment, sym_include, - ACTIONS(305), 3, + ACTIONS(317), 4, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(307), 12, + aux_sym_variable_definition_token2, + ACTIONS(315), 29, + sym__or_operator, + sym__and_operator, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73239,8 +73833,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(311), 13, - aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73253,41 +73845,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32100] = 16, + [32246] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(1131), 1, - aux_sym_variable_definition_token2, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + STATE(424), 1, sym__logical_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(614), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + STATE(618), 2, sym_comment, sym_include, - ACTIONS(305), 3, + ACTIONS(319), 5, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(307), 12, + aux_sym_variable_definition_token2, + ACTIONS(321), 30, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73300,8 +73888,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(317), 13, - aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73314,41 +73900,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32177] = 16, + [32311] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1133), 1, - aux_sym_variable_definition_token2, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + STATE(424), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(615), 2, + STATE(619), 2, sym_comment, sym_include, - ACTIONS(305), 3, + ACTIONS(325), 4, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(307), 12, + aux_sym_variable_definition_token2, + ACTIONS(323), 27, + sym__or_operator, + sym__and_operator, + aux_sym__block_terminator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73361,8 +73946,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(319), 13, - aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73375,41 +73958,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32254] = 16, + [32382] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(159), 1, + aux_sym_variable_definition_token2, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1127), 1, - aux_sym_variable_definition_token2, - STATE(471), 1, - sym__comparison_operator, - STATE(474), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__additive_operator, - STATE(484), 1, + STATE(424), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(425), 1, + sym__additive_operator, + STATE(427), 1, + sym__multiplicative_operator, + STATE(428), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(616), 2, + STATE(620), 2, sym_comment, sym_include, - ACTIONS(305), 3, + ACTIONS(299), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(307), 12, + ACTIONS(301), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73422,7 +74002,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - ACTIONS(313), 13, + ACTIONS(161), 15, + sym__or_operator, + sym__and_operator, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -73436,26 +74018,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32331] = 7, + [32457] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1229), 1, + ACTIONS(1221), 1, sym__namecolon, - STATE(617), 3, + STATE(622), 1, + aux_sym_object_access_repeat1, + STATE(621), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(90), 5, + ACTIONS(105), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(92), 31, + ACTIONS(107), 31, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -73487,27 +74070,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32389] = 8, + [32517] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1185), 1, + ACTIONS(1241), 1, sym__namecolon, - STATE(617), 1, - aux_sym_object_access_repeat1, - STATE(618), 2, + STATE(622), 3, sym_comment, sym_include, - ACTIONS(101), 5, + aux_sym_object_access_repeat1, + ACTIONS(91), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(103), 31, + ACTIONS(93), 31, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -73539,56 +74121,161 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32449] = 20, + [32575] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1219), 1, + sym__namedot, + STATE(638), 1, + aux_sym_qualified_name_repeat1, + STATE(623), 2, + sym_comment, + sym_include, + ACTIONS(79), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(81), 30, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, + 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_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [32634] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1244), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + sym__namedot, + ACTIONS(1248), 1, + sym__namecolon, + STATE(682), 1, + aux_sym_object_access_repeat1, + STATE(726), 1, + aux_sym_qualified_name_repeat1, + STATE(624), 2, + sym_comment, + sym_include, + ACTIONS(63), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(67), 29, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + [32699] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1232), 1, + ACTIONS(1250), 1, sym__terminator, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1962), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1956), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(619), 2, + STATE(625), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73602,56 +74289,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32532] = 20, + [32782] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1240), 1, + ACTIONS(1258), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1968), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1969), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(620), 2, + STATE(626), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73665,31 +74352,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32615] = 8, + [32865] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1183), 1, + ACTIONS(1244), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, sym__namedot, - STATE(630), 1, + ACTIONS(1248), 1, + sym__namecolon, + STATE(682), 1, + aux_sym_object_access_repeat1, + STATE(726), 1, aux_sym_qualified_name_repeat1, - STATE(621), 2, + STATE(627), 2, sym_comment, sym_include, - ACTIONS(97), 5, + ACTIONS(75), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(99), 30, + ACTIONS(77), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, - aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -73701,46 +74391,71 @@ static const uint16_t ts_small_parse_table[] = { 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_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [32674] = 6, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + [32930] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(622), 2, - sym_comment, - sym_include, - ACTIONS(115), 5, + ACTIONS(293), 1, anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(1256), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1260), 1, + sym__terminator, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(2000), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2144), 1, + sym_input_stream_tuning, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(117), 32, - sym__namecolon, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1252), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(628), 2, + sym_comment, + sym_include, + ACTIONS(1254), 6, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73750,51 +74465,60 @@ static const uint16_t ts_small_parse_table[] = { 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_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [32729] = 11, + [33013] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1242), 1, - anon_sym_LPAREN, - ACTIONS(1244), 1, - sym__namedot, - ACTIONS(1246), 1, - sym__namecolon, - STATE(707), 1, - aux_sym_object_access_repeat1, - STATE(720), 1, - aux_sym_qualified_name_repeat1, - STATE(623), 2, - sym_comment, - sym_include, - ACTIONS(63), 3, + ACTIONS(293), 1, anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(1256), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1262), 1, + sym__terminator, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(2018), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2144), 1, + sym_input_stream_tuning, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(67), 29, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1252), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(629), 2, + sym_comment, + sym_include, + ACTIONS(1254), 6, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73808,67 +74532,56 @@ 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_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - [32794] = 20, + [33096] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1248), 1, + ACTIONS(1264), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1982), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1991), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(624), 2, + STATE(630), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73882,56 +74595,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32877] = 20, + [33179] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1250), 1, + ACTIONS(1266), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1956), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1999), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(625), 2, + STATE(631), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73945,56 +74658,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32960] = 20, + [33262] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1252), 1, + ACTIONS(1268), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(2005), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1958), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(626), 2, + STATE(632), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74008,56 +74721,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33043] = 20, + [33345] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1254), 1, + ACTIONS(1270), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1944), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1962), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(627), 2, + STATE(633), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74071,26 +74784,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33126] = 7, + [33428] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1256), 1, + ACTIONS(1219), 1, sym__namedot, - STATE(628), 3, + STATE(623), 1, + aux_sym_qualified_name_repeat1, + STATE(634), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(79), 5, + ACTIONS(87), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(81), 30, + ACTIONS(89), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -74121,56 +74835,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33183] = 20, + [33487] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1259), 1, + ACTIONS(1272), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1979), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(2004), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(629), 2, + STATE(635), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74184,31 +74898,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33266] = 8, + [33570] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1183), 1, - sym__namedot, - STATE(628), 1, - aux_sym_qualified_name_repeat1, - STATE(630), 2, + STATE(636), 2, sym_comment, sym_include, - ACTIONS(105), 5, + ACTIONS(115), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(107), 30, + ACTIONS(117), 32, + sym__namecolon, sym__or_operator, sym__and_operator, anon_sym_STAR, aux_sym__block_terminator_token1, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -74235,56 +74947,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33325] = 20, + [33625] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1261), 1, + ACTIONS(1274), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(1938), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(1965), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(631), 2, + STATE(637), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74298,27 +75010,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33408] = 8, + [33708] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1183), 1, + ACTIONS(1276), 1, sym__namedot, - STATE(630), 1, - aux_sym_qualified_name_repeat1, - STATE(632), 2, + STATE(638), 3, sym_comment, sym_include, - ACTIONS(86), 5, + aux_sym_qualified_name_repeat1, + ACTIONS(98), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(88), 30, + ACTIONS(100), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -74349,56 +75060,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33467] = 20, + [33765] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(1219), 1, + sym__namedot, + STATE(623), 1, + aux_sym_qualified_name_repeat1, + STATE(639), 2, + sym_comment, + sym_include, + ACTIONS(83), 5, anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1263), 1, - sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - STATE(1974), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(85), 30, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(633), 2, - sym_comment, - sym_include, - ACTIONS(1236), 6, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74408,38 +75096,51 @@ static const uint16_t ts_small_parse_table[] = { 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, - [33550] = 11, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [33824] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1242), 1, - anon_sym_LPAREN, - ACTIONS(1244), 1, - sym__namedot, - ACTIONS(1246), 1, - sym__namecolon, - STATE(707), 1, - aux_sym_object_access_repeat1, - STATE(720), 1, - aux_sym_qualified_name_repeat1, - STATE(634), 2, - sym_comment, - sym_include, - ACTIONS(75), 3, + ACTIONS(293), 1, anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(458), 1, + sym__logical_operator, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + ACTIONS(317), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(77), 29, + STATE(640), 2, + sym_comment, + sym_include, + ACTIONS(315), 28, sym__or_operator, sym__and_operator, - anon_sym_STAR, + sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -74455,67 +75156,59 @@ 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_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, + aux_sym_function_call_token1, + aux_sym_using_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, - [33615] = 20, + aux_sym_of_token1, + [33890] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1238), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1265), 1, - sym__terminator, - STATE(355), 1, + STATE(458), 1, sym__logical_operator, - STATE(448), 1, + STATE(462), 1, sym__additive_operator, - STATE(453), 1, + STATE(463), 1, sym__multiplicative_operator, - STATE(489), 1, + STATE(475), 1, sym__comparison_operator, - STATE(1997), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(1234), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(635), 2, + STATE(641), 2, sym_comment, sym_include, - ACTIONS(1236), 6, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - ACTIONS(307), 13, + ACTIONS(311), 11, + sym__terminator, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74529,34 +75222,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33698] = 12, + [33962] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(1279), 1, + aux_sym_function_call_token1, + STATE(642), 2, + sym_comment, + sym_include, + ACTIONS(153), 5, anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(403), 1, - sym__logical_operator, - STATE(404), 1, - sym__additive_operator, - STATE(405), 1, - sym__multiplicative_operator, - STATE(406), 1, - sym__comparison_operator, - ACTIONS(301), 2, anon_sym_LT, anon_sym_GT, - STATE(636), 2, - sym_comment, - sym_include, - ACTIONS(299), 28, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(155), 30, sym__or_operator, sym__and_operator, + anon_sym_STAR, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -74568,53 +75256,64 @@ static const uint16_t ts_small_parse_table[] = { 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_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - [33764] = 12, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [34018] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - ACTIONS(301), 2, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - STATE(637), 2, + STATE(643), 2, sym_comment, sym_include, - ACTIONS(299), 28, + ACTIONS(161), 13, sym__or_operator, sym__and_operator, sym__terminator, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74628,59 +75327,50 @@ 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_using_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, - [33830] = 15, + [34088] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(404), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(406), 1, + sym__additive_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(409), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(638), 2, + STATE(644), 2, sym_comment, sym_include, - ACTIONS(315), 11, - sym__terminator, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(309), 11, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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, - ACTIONS(307), 13, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74694,50 +75384,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33902] = 15, + [34160] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(473), 1, + ACTIONS(1283), 1, + aux_sym_input_stream_tuning_token11, + STATE(439), 1, sym__comparison_operator, - STATE(475), 1, + STATE(440), 1, sym__multiplicative_operator, - STATE(476), 1, + STATE(441), 1, sym__additive_operator, - STATE(478), 1, + STATE(442), 1, sym__logical_operator, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(639), 2, + STATE(645), 2, sym_comment, sym_include, - ACTIONS(319), 11, + ACTIONS(1281), 10, sym__terminator, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + ACTIONS(301), 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, + [34234] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(404), 1, + sym__logical_operator, + STATE(406), 1, + sym__additive_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(409), 1, + sym__comparison_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(646), 2, + sym_comment, + sym_include, + ACTIONS(307), 11, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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, - ACTIONS(307), 13, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74751,29 +75499,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33974] = 7, + [34306] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1267), 1, - sym__namedot, - STATE(640), 2, + STATE(458), 1, + sym__logical_operator, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + STATE(647), 2, sym_comment, sym_include, - ACTIONS(109), 5, + ACTIONS(319), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(111), 30, + ACTIONS(321), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, - aux_sym__block_terminator_token1, + sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -74785,46 +75538,63 @@ static const uint16_t ts_small_parse_table[] = { 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_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [34030] = 7, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + [34368] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1181), 1, - anon_sym_LPAREN, - STATE(641), 2, - sym_comment, - sym_include, - ACTIONS(63), 5, + ACTIONS(293), 1, anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(458), 1, + sym__logical_operator, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(67), 30, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + STATE(648), 2, + sym_comment, + sym_include, + ACTIONS(309), 11, + sym__terminator, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74834,66 +75604,43 @@ static const uint16_t ts_small_parse_table[] = { 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_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [34086] = 16, + [34440] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1271), 1, - aux_sym_input_stream_tuning_token11, - STATE(355), 1, + STATE(458), 1, sym__logical_operator, - STATE(448), 1, + STATE(462), 1, sym__additive_operator, - STATE(453), 1, + STATE(463), 1, sym__multiplicative_operator, - STATE(489), 1, + STATE(475), 1, sym__comparison_operator, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(325), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(642), 2, + STATE(649), 2, sym_comment, sym_include, - ACTIONS(1269), 10, + ACTIONS(323), 26, + sym__or_operator, + sym__and_operator, sym__terminator, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - ACTIONS(307), 13, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74907,25 +75654,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34160] = 7, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + [34508] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_NO_DASHERROR, - STATE(643), 2, + STATE(650), 2, sym_comment, sym_include, - ACTIONS(211), 5, + ACTIONS(627), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(213), 30, + ACTIONS(629), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -74956,37 +75712,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [34216] = 13, + [34564] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(403), 1, + STATE(458), 1, sym__logical_operator, - STATE(404), 1, + STATE(462), 1, sym__additive_operator, - STATE(405), 1, + STATE(463), 1, sym__multiplicative_operator, - STATE(406), 1, + STATE(475), 1, sym__comparison_operator, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(293), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - STATE(644), 2, - sym_comment, - sym_include, - ACTIONS(289), 26, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, + STATE(651), 2, + sym_comment, + sym_include, + ACTIONS(327), 11, + sym__terminator, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75000,61 +75769,50 @@ 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_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - [34284] = 15, + [34636] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(403), 1, + STATE(458), 1, sym__logical_operator, - STATE(404), 1, + STATE(462), 1, sym__additive_operator, - STATE(405), 1, + STATE(463), 1, sym__multiplicative_operator, - STATE(406), 1, + STATE(475), 1, sym__comparison_operator, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(645), 2, + STATE(652), 2, sym_comment, sym_include, - ACTIONS(313), 11, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, + ACTIONS(1287), 11, + sym__terminator, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_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, - ACTIONS(307), 13, + aux_sym_of_token1, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75068,40 +75826,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34356] = 15, + [34708] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(646), 2, + STATE(653), 2, sym_comment, sym_include, - ACTIONS(313), 11, + ACTIONS(307), 11, sym__terminator, anon_sym_RPAREN, + aux_sym_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -75109,66 +75868,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, aux_sym_of_token1, - ACTIONS(307), 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, - [34428] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(403), 1, - sym__logical_operator, - STATE(404), 1, - sym__additive_operator, - STATE(405), 1, - sym__multiplicative_operator, - STATE(406), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(647), 2, - sym_comment, - sym_include, - ACTIONS(303), 11, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75182,25 +75883,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34500] = 7, + [34780] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1181), 1, - anon_sym_LPAREN, - STATE(648), 2, + ACTIONS(1289), 1, + aux_sym_function_call_token1, + STATE(654), 2, sym_comment, sym_include, - ACTIONS(75), 5, + ACTIONS(127), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(77), 30, + ACTIONS(129), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -75231,40 +75932,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [34556] = 15, + [34836] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(649), 2, + STATE(655), 2, sym_comment, sym_include, - ACTIONS(317), 11, + ACTIONS(303), 11, sym__terminator, anon_sym_RPAREN, + aux_sym_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -75272,9 +75974,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, aux_sym_of_token1, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75288,50 +75989,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34628] = 15, + [34908] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(1291), 1, + anon_sym_NO_DASHERROR, + STATE(656), 2, + sym_comment, + sym_include, + ACTIONS(191), 5, anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, - sym__logical_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(193), 30, sym__or_operator, sym__and_operator, - STATE(650), 2, - sym_comment, - sym_include, - ACTIONS(303), 11, - sym__terminator, - anon_sym_RPAREN, - aux_sym_using_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, - ACTIONS(307), 13, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75341,43 +76023,55 @@ static const uint16_t ts_small_parse_table[] = { 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, - [34700] = 15, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [34964] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(403), 1, - sym__logical_operator, STATE(404), 1, + sym__logical_operator, + STATE(406), 1, sym__additive_operator, - STATE(405), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(406), 1, + STATE(409), 1, sym__comparison_operator, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(651), 2, + STATE(657), 2, sym_comment, sym_include, ACTIONS(311), 11, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -75385,10 +76079,9 @@ static const uint16_t ts_small_parse_table[] = { 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(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75402,106 +76095,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34772] = 15, + [35036] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(1217), 1, + anon_sym_LPAREN, + STATE(658), 2, + sym_comment, + sym_include, + ACTIONS(63), 5, anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, - sym__logical_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(67), 30, sym__or_operator, sym__and_operator, - STATE(652), 2, - sym_comment, - sym_include, - ACTIONS(1275), 11, - sym__terminator, - anon_sym_RPAREN, - aux_sym_using_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, - ACTIONS(307), 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, - [34844] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, anon_sym_STAR, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, - sym__logical_operator, - ACTIONS(291), 2, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - STATE(653), 2, - sym_comment, - sym_include, - ACTIONS(153), 13, - sym__or_operator, - sym__and_operator, - sym__terminator, - anon_sym_RPAREN, - aux_sym_using_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, - ACTIONS(307), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75511,43 +76129,54 @@ static const uint16_t ts_small_parse_table[] = { 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, - [34914] = 15, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [35092] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(403), 1, - sym__logical_operator, STATE(404), 1, + sym__logical_operator, + STATE(406), 1, sym__additive_operator, - STATE(405), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(406), 1, + STATE(409), 1, sym__comparison_operator, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(654), 2, + STATE(659), 2, sym_comment, sym_include, - ACTIONS(317), 11, + ACTIONS(161), 13, + sym__or_operator, + sym__and_operator, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -75555,53 +76184,9 @@ static const uint16_t ts_small_parse_table[] = { 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(307), 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, - [34986] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, - sym__logical_operator, - STATE(655), 2, - sym_comment, - sym_include, - ACTIONS(295), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(297), 29, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - sym__terminator, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75615,34 +76200,24 @@ 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_using_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, - [35048] = 7, + [35162] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1277), 1, - anon_sym_NO_DASHERROR, - STATE(656), 2, + STATE(660), 2, sym_comment, sym_include, - ACTIONS(621), 5, + ACTIONS(98), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(623), 30, + ACTIONS(100), 31, + sym__namedot, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -75673,30 +76248,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [35104] = 6, + [35216] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(657), 2, - sym_comment, - sym_include, - ACTIONS(79), 5, + ACTIONS(293), 1, anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(404), 1, + sym__logical_operator, + STATE(406), 1, + sym__additive_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(409), 1, + sym__comparison_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(81), 31, - sym__namedot, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + STATE(661), 2, + sym_comment, + sym_include, + ACTIONS(313), 11, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75706,55 +76301,45 @@ static const uint16_t ts_small_parse_table[] = { 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_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [35158] = 15, + [35288] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(458), 1, sym__logical_operator, - ACTIONS(291), 2, + STATE(462), 1, + sym__additive_operator, + STATE(463), 1, + sym__multiplicative_operator, + STATE(475), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(658), 2, + STATE(662), 2, sym_comment, sym_include, - ACTIONS(311), 11, + ACTIONS(313), 11, sym__terminator, anon_sym_RPAREN, + aux_sym_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -75762,9 +76347,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, aux_sym_of_token1, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75778,39 +76362,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35230] = 13, + [35360] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(473), 1, - sym__comparison_operator, - STATE(475), 1, - sym__multiplicative_operator, - STATE(476), 1, - sym__additive_operator, - STATE(478), 1, + STATE(404), 1, sym__logical_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(293), 2, + STATE(406), 1, + sym__additive_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(409), 1, + sym__comparison_operator, + ACTIONS(317), 2, anon_sym_LT, anon_sym_GT, - STATE(659), 2, + STATE(663), 2, sym_comment, sym_include, - ACTIONS(289), 26, + ACTIONS(315), 28, sym__or_operator, sym__and_operator, - sym__terminator, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75824,47 +76405,8 @@ 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_using_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, - [35298] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(403), 1, - sym__logical_operator, - STATE(404), 1, - sym__additive_operator, - STATE(405), 1, - sym__multiplicative_operator, - STATE(406), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - STATE(660), 2, - sym_comment, - sym_include, - ACTIONS(153), 13, - sym__or_operator, - sym__and_operator, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -75872,46 +76414,31 @@ static const uint16_t ts_small_parse_table[] = { 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(307), 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, - [35368] = 10, + [35426] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(403), 1, - sym__logical_operator, STATE(404), 1, + sym__logical_operator, + STATE(406), 1, sym__additive_operator, - STATE(405), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(406), 1, + STATE(409), 1, sym__comparison_operator, - STATE(661), 2, + STATE(664), 2, sym_comment, sym_include, - ACTIONS(295), 3, + ACTIONS(319), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(297), 29, + ACTIONS(321), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -75931,6 +76458,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -75938,53 +76466,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [35430] = 15, + [35488] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(403), 1, - sym__logical_operator, STATE(404), 1, + sym__logical_operator, + STATE(406), 1, sym__additive_operator, - STATE(405), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(406), 1, + STATE(409), 1, sym__comparison_operator, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(325), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(662), 2, + STATE(665), 2, sym_comment, sym_include, - ACTIONS(319), 11, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - ACTIONS(307), 13, + ACTIONS(323), 26, + sym__or_operator, + sym__and_operator, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75998,39 +76512,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35502] = 15, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + [35556] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(403), 1, - sym__logical_operator, STATE(404), 1, + sym__logical_operator, + STATE(406), 1, sym__additive_operator, - STATE(405), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(406), 1, + STATE(409), 1, sym__comparison_operator, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(663), 2, + STATE(666), 2, sym_comment, sym_include, - ACTIONS(315), 11, + ACTIONS(1287), 11, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -76038,10 +76564,9 @@ static const uint16_t ts_small_parse_table[] = { 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(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76055,50 +76580,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35574] = 15, + [35628] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(1217), 1, + anon_sym_LPAREN, + STATE(667), 2, + sym_comment, + sym_include, + ACTIONS(75), 5, anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(403), 1, - sym__logical_operator, - STATE(404), 1, - sym__additive_operator, - STATE(405), 1, - sym__multiplicative_operator, - STATE(406), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(664), 2, - sym_comment, - sym_include, - ACTIONS(1275), 11, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - ACTIONS(307), 13, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(77), 30, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76108,53 +76614,65 @@ static const uint16_t ts_small_parse_table[] = { 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, - [35646] = 15, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [35684] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(355), 1, + STATE(404), 1, sym__logical_operator, - STATE(448), 1, + STATE(406), 1, sym__additive_operator, - STATE(453), 1, + STATE(408), 1, sym__multiplicative_operator, - STATE(489), 1, + STATE(409), 1, sym__comparison_operator, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(665), 2, + STATE(668), 2, sym_comment, sym_include, - ACTIONS(1269), 10, - sym__terminator, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - ACTIONS(307), 13, + ACTIONS(303), 11, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76168,23 +76686,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35717] = 6, + [35756] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(666), 2, + ACTIONS(1293), 1, + sym__namedot, + STATE(669), 2, sym_comment, sym_include, - ACTIONS(127), 5, + ACTIONS(109), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(129), 30, + ACTIONS(111), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76215,76 +76735,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [35770] = 6, + [35812] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(667), 2, - sym_comment, - sym_include, - ACTIONS(109), 5, + ACTIONS(293), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(111), 30, - sym__or_operator, - sym__and_operator, + ACTIONS(295), 1, anon_sym_STAR, - aux_sym__block_terminator_token1, + STATE(404), 1, + sym__logical_operator, + STATE(406), 1, + sym__additive_operator, + STATE(408), 1, + sym__multiplicative_operator, + STATE(409), 1, + sym__comparison_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - 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_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [35823] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(668), 2, - sym_comment, - sym_include, - ACTIONS(155), 5, - anon_sym_SLASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(157), 30, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + STATE(670), 2, + sym_comment, + sym_include, + ACTIONS(327), 11, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76294,38 +76788,27 @@ static const uint16_t ts_small_parse_table[] = { 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_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [35876] = 6, + [35884] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(669), 2, + STATE(671), 2, sym_comment, sym_include, - ACTIONS(195), 5, + ACTIONS(119), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(197), 30, + ACTIONS(121), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76356,23 +76839,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [35929] = 6, + [35937] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(670), 2, + STATE(672), 2, sym_comment, sym_include, - ACTIONS(211), 5, + ACTIONS(223), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(213), 30, + ACTIONS(225), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76403,23 +76886,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [35982] = 6, + [35990] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(671), 2, + STATE(673), 2, sym_comment, sym_include, - ACTIONS(123), 5, + ACTIONS(163), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(125), 30, + ACTIONS(165), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76450,23 +76933,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36035] = 6, + [36043] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(672), 2, + STATE(674), 2, sym_comment, sym_include, - ACTIONS(97), 5, + ACTIONS(109), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(99), 30, + ACTIONS(111), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76497,70 +76980,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36088] = 6, - ACTIONS(59), 1, + [36096] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(673), 2, - sym_comment, - sym_include, - ACTIONS(151), 5, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1301), 1, + aux_sym_widget_field_token1, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + STATE(1138), 1, + sym_do_block, + STATE(2163), 1, + aux_sym_on_statement_repeat1, + STATE(2455), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4261), 1, + sym_label, + ACTIONS(293), 2, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(153), 30, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, + ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(675), 2, + sym_comment, + sym_include, + ACTIONS(299), 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, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [36141] = 6, + [36181] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(674), 2, + STATE(676), 2, sym_comment, sym_include, - ACTIONS(143), 5, + ACTIONS(153), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(145), 30, + ACTIONS(155), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76591,23 +77090,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36194] = 6, + [36234] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(675), 2, + STATE(677), 2, sym_comment, sym_include, - ACTIONS(175), 5, + ACTIONS(123), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(177), 30, + ACTIONS(125), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76638,54 +77137,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36247] = 22, + [36287] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1285), 1, + ACTIONS(1303), 1, aux_sym_widget_field_token1, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - STATE(886), 1, + STATE(981), 1, sym_do_block, - STATE(2163), 1, + STATE(2154), 1, aux_sym_on_statement_repeat1, - STATE(2422), 1, + STATE(2539), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4146), 1, + STATE(4166), 1, sym_label, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(676), 2, + STATE(678), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -76701,27 +77200,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36332] = 6, + [36372] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(677), 2, - sym_comment, - sym_include, - ACTIONS(63), 5, + ACTIONS(1305), 1, + sym__namecolon, + ACTIONS(91), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(67), 30, + STATE(679), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(93), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, - aux_sym__block_terminator_token1, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -76733,38 +77233,38 @@ static const uint16_t ts_small_parse_table[] = { 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_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [36385] = 6, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + [36427] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(678), 2, + STATE(680), 2, sym_comment, sym_include, - ACTIONS(183), 5, + ACTIONS(145), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(185), 30, + ACTIONS(147), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76795,133 +77295,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36438] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1287), 1, - aux_sym_widget_field_token1, - STATE(345), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(515), 1, - sym__additive_operator, - STATE(516), 1, - sym__logical_operator, - STATE(931), 1, - sym_do_block, - STATE(2145), 1, - aux_sym_on_statement_repeat1, - STATE(2403), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4146), 1, - sym_label, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(679), 2, - sym_comment, - sym_include, - ACTIONS(305), 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, - [36523] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(817), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1289), 1, - aux_sym_widget_field_token1, - STATE(345), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(515), 1, - sym__additive_operator, - STATE(516), 1, - sym__logical_operator, - STATE(1037), 1, - sym_do_block, - STATE(2191), 1, - aux_sym_on_statement_repeat1, - STATE(2470), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4188), 1, - sym_label, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(680), 2, - sym_comment, - sym_include, - ACTIONS(305), 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, - [36608] = 6, + [36480] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -76931,13 +77305,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(681), 2, sym_comment, sym_include, - ACTIONS(167), 5, + ACTIONS(149), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(169), 30, + ACTIONS(151), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76968,27 +77342,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36661] = 6, + [36533] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(1248), 1, + sym__namecolon, + STATE(679), 1, + aux_sym_object_access_repeat1, STATE(682), 2, sym_comment, sym_include, - ACTIONS(86), 5, + ACTIONS(105), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(88), 30, + ACTIONS(107), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, - aux_sym__block_terminator_token1, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77000,60 +77376,60 @@ static const uint16_t ts_small_parse_table[] = { 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_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [36714] = 22, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + [36590] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1291), 1, + ACTIONS(1308), 1, aux_sym_widget_field_token1, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - STATE(1295), 1, + STATE(988), 1, sym_do_block, - STATE(2132), 1, + STATE(2210), 1, aux_sym_on_statement_repeat1, - STATE(2506), 1, + STATE(2525), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4158), 1, + STATE(4181), 1, sym_label, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, @@ -77062,7 +77438,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(683), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77078,7 +77454,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36799] = 6, + [36675] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77088,13 +77464,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(684), 2, sym_comment, sym_include, - ACTIONS(199), 5, + ACTIONS(167), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(201), 30, + ACTIONS(169), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77125,59 +77501,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36852] = 22, - ACTIONS(3), 1, + [36728] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(781), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1293), 1, - aux_sym_widget_field_token1, - STATE(345), 1, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(439), 1, sym__comparison_operator, - STATE(509), 1, + STATE(440), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(441), 1, sym__additive_operator, - STATE(516), 1, + STATE(442), 1, sym__logical_operator, - STATE(2162), 1, - aux_sym_on_statement_repeat1, - STATE(2411), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(3218), 1, - sym_do_block, - STATE(4349), 1, - sym_label, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, STATE(685), 2, sym_comment, sym_include, - ACTIONS(305), 15, - anon_sym_LT, + ACTIONS(1310), 10, + sym__terminator, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + ACTIONS(301), 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, @@ -77188,7 +77557,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36937] = 6, + [36799] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -77198,13 +77567,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(686), 2, sym_comment, sym_include, - ACTIONS(159), 5, + ACTIONS(171), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(161), 30, + ACTIONS(173), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77235,86 +77604,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36990] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1295), 1, - aux_sym_widget_field_token1, - STATE(345), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(515), 1, - sym__additive_operator, - STATE(516), 1, - sym__logical_operator, - STATE(1196), 1, - sym_do_block, - STATE(2170), 1, - aux_sym_on_statement_repeat1, - STATE(2398), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(687), 2, - sym_comment, - sym_include, - ACTIONS(305), 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, - [37075] = 6, + [36852] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(688), 2, + STATE(687), 2, sym_comment, sym_include, - ACTIONS(75), 5, + ACTIONS(179), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(77), 30, + ACTIONS(181), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77345,23 +77651,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37128] = 6, + [36905] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(689), 2, + STATE(688), 2, sym_comment, sym_include, - ACTIONS(147), 5, + ACTIONS(183), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(149), 30, + ACTIONS(185), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77392,23 +77698,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37181] = 6, + [36958] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(690), 2, + STATE(689), 2, sym_comment, sym_include, - ACTIONS(163), 5, + ACTIONS(187), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(165), 30, + ACTIONS(189), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77439,23 +77745,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37234] = 6, + [37011] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(691), 2, + STATE(690), 2, sym_comment, sym_include, - ACTIONS(187), 5, + ACTIONS(195), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(189), 30, + ACTIONS(197), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77486,54 +77792,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37287] = 22, + [37064] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1297), 1, + ACTIONS(1312), 1, aux_sym_widget_field_token1, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - STATE(1061), 1, - sym_do_block, - STATE(2127), 1, + STATE(2180), 1, aux_sym_on_statement_repeat1, - STATE(2516), 1, + STATE(2427), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4188), 1, + STATE(3432), 1, + sym_do_block, + STATE(4369), 1, sym_label, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(692), 2, + STATE(691), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77549,23 +77855,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [37372] = 6, + [37149] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(693), 2, + STATE(692), 2, sym_comment, sym_include, - ACTIONS(215), 5, + ACTIONS(87), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(217), 30, + ACTIONS(89), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77596,54 +77902,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37425] = 22, + [37202] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(253), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1314), 1, aux_sym_widget_field_token1, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - STATE(1503), 1, - sym_do_block, - STATE(2131), 1, + STATE(2197), 1, aux_sym_on_statement_repeat1, - STATE(2503), 1, + STATE(2470), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4419), 1, + STATE(3409), 1, + sym_do_block, + STATE(4369), 1, sym_label, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(694), 2, + STATE(693), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77659,110 +77965,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [37510] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(695), 2, - sym_comment, - sym_include, - ACTIONS(1301), 10, - sym__terminator, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - ACTIONS(307), 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, - [37581] = 22, + [37287] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1303), 1, + ACTIONS(1316), 1, aux_sym_widget_field_token1, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - STATE(2174), 1, + STATE(1291), 1, + sym_do_block, + STATE(2170), 1, aux_sym_on_statement_repeat1, - STATE(2390), 1, + STATE(2410), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(3239), 1, - sym_do_block, - STATE(4349), 1, + STATE(4261), 1, sym_label, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(696), 2, + STATE(694), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77778,23 +78028,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [37666] = 6, + [37372] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(697), 2, + STATE(695), 2, sym_comment, sym_include, - ACTIONS(119), 5, + ACTIONS(175), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(121), 30, + ACTIONS(177), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77825,59 +78075,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37719] = 22, - ACTIONS(3), 1, + [37425] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(817), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1305), 1, - aux_sym_widget_field_token1, - STATE(345), 1, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(439), 1, sym__comparison_operator, - STATE(509), 1, + STATE(440), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(441), 1, sym__additive_operator, - STATE(516), 1, + STATE(442), 1, sym__logical_operator, - STATE(1080), 1, - sym_do_block, - STATE(2154), 1, - aux_sym_on_statement_repeat1, - STATE(2453), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4188), 1, - sym_label, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(698), 2, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(696), 2, sym_comment, sym_include, - ACTIONS(305), 15, - anon_sym_LT, + ACTIONS(1281), 10, + sym__terminator, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + ACTIONS(301), 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, @@ -77888,28 +78131,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [37804] = 7, + [37496] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1307), 1, - sym__namecolon, - ACTIONS(90), 3, + STATE(697), 2, + sym_comment, + sym_include, + ACTIONS(141), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(699), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(92), 30, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(143), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, - anon_sym_LPAREN, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -77921,38 +78163,38 @@ static const uint16_t ts_small_parse_table[] = { 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_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - [37859] = 6, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [37549] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(700), 2, + STATE(698), 2, sym_comment, sym_include, - ACTIONS(203), 5, + ACTIONS(207), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(205), 30, + ACTIONS(209), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77983,23 +78225,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37912] = 6, + [37602] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(701), 2, + STATE(699), 2, sym_comment, sym_include, - ACTIONS(171), 5, + ACTIONS(219), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(173), 30, + ACTIONS(221), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78030,86 +78272,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37965] = 22, - ACTIONS(3), 1, + [37655] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(781), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1310), 1, - aux_sym_widget_field_token1, - STATE(345), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(515), 1, - sym__additive_operator, - STATE(516), 1, - sym__logical_operator, - STATE(2195), 1, - aux_sym_on_statement_repeat1, - STATE(2467), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(3196), 1, - sym_do_block, - STATE(4349), 1, - sym_label, - ACTIONS(285), 2, + STATE(700), 2, + sym_comment, + sym_include, + ACTIONS(83), 5, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(85), 30, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, + anon_sym_STAR, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(702), 2, - sym_comment, - sym_include, - ACTIONS(305), 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, - [38050] = 6, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [37708] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(703), 2, + STATE(701), 2, sym_comment, sym_include, - ACTIONS(131), 5, + ACTIONS(191), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(133), 30, + ACTIONS(193), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78140,101 +78366,180 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38103] = 6, - ACTIONS(59), 1, + [37761] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(704), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1318), 1, + aux_sym_widget_field_token1, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + STATE(1214), 1, + sym_do_block, + STATE(2159), 1, + aux_sym_on_statement_repeat1, + STATE(2452), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4261), 1, + sym_label, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(702), 2, sym_comment, sym_include, - ACTIONS(179), 5, - anon_sym_SLASH, + ACTIONS(299), 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_variable_definition_token2, - ACTIONS(181), 30, + aux_sym__comparison_operator_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + [37846] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(261), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1320), 1, + aux_sym_widget_field_token1, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + STATE(1242), 1, + sym_do_block, + STATE(2169), 1, + aux_sym_on_statement_repeat1, + STATE(2447), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4431), 1, + sym_label, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, + ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(703), 2, + sym_comment, + sym_include, + ACTIONS(299), 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, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [38156] = 22, + [37931] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1312), 1, + ACTIONS(1322), 1, aux_sym_widget_field_token1, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - STATE(977), 1, + STATE(860), 1, sym_do_block, - STATE(2122), 1, + STATE(2191), 1, aux_sym_on_statement_repeat1, - STATE(2377), 1, + STATE(2472), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4146), 1, + STATE(4181), 1, sym_label, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(705), 2, + STATE(704), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -78250,23 +78555,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38241] = 6, + [38016] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(706), 2, + STATE(705), 2, sym_comment, sym_include, - ACTIONS(207), 5, + ACTIONS(159), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(209), 30, + ACTIONS(161), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78297,29 +78602,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38294] = 8, + [38069] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1246), 1, - sym__namecolon, - STATE(699), 1, - aux_sym_object_access_repeat1, - STATE(707), 2, + STATE(706), 2, sym_comment, sym_include, - ACTIONS(101), 3, + ACTIONS(63), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(103), 30, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(67), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, - anon_sym_LPAREN, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -78331,101 +78634,85 @@ static const uint16_t ts_small_parse_table[] = { 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_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - [38351] = 22, - ACTIONS(3), 1, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [38122] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1314), 1, - aux_sym_widget_field_token1, - STATE(345), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(515), 1, - sym__additive_operator, - STATE(516), 1, - sym__logical_operator, - STATE(1134), 1, - sym_do_block, - STATE(2153), 1, - aux_sym_on_statement_repeat1, - STATE(2458), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, - ACTIONS(285), 2, + STATE(707), 2, + sym_comment, + sym_include, + ACTIONS(133), 5, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(135), 30, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, + anon_sym_STAR, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(708), 2, - sym_comment, - sym_include, - ACTIONS(305), 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, - [38436] = 6, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [38175] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(709), 2, + STATE(708), 2, sym_comment, sym_include, - ACTIONS(135), 5, + ACTIONS(199), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(137), 30, + ACTIONS(201), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78456,86 +78743,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38489] = 22, - ACTIONS(3), 1, + [38228] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1316), 1, - aux_sym_widget_field_token1, - STATE(345), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(515), 1, - sym__additive_operator, - STATE(516), 1, - sym__logical_operator, - STATE(1296), 1, - sym_do_block, - STATE(2186), 1, - aux_sym_on_statement_repeat1, - STATE(2497), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4158), 1, - sym_label, - ACTIONS(285), 2, + STATE(709), 2, + sym_comment, + sym_include, + ACTIONS(203), 5, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(205), 30, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, + anon_sym_STAR, + aux_sym__block_terminator_token1, anon_sym_PLUS, anon_sym_DASH, - STATE(710), 2, - sym_comment, - sym_include, - ACTIONS(305), 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, - [38574] = 6, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [38281] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(711), 2, + STATE(710), 2, sym_comment, sym_include, - ACTIONS(139), 5, + ACTIONS(75), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(141), 30, + ACTIONS(77), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78566,54 +78837,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38627] = 22, + [38334] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1318), 1, + ACTIONS(1324), 1, aux_sym_widget_field_token1, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - STATE(1321), 1, + STATE(956), 1, sym_do_block, - STATE(2130), 1, + STATE(2199), 1, aux_sym_on_statement_repeat1, STATE(2433), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4158), 1, + STATE(4166), 1, sym_label, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(712), 2, + STATE(711), 2, sym_comment, sym_include, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -78629,85 +78900,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38712] = 6, - ACTIONS(59), 1, + [38419] = 22, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(713), 2, - sym_comment, - sym_include, - ACTIONS(191), 5, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1326), 1, + aux_sym_widget_field_token1, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + STATE(880), 1, + sym_do_block, + STATE(2153), 1, + aux_sym_on_statement_repeat1, + STATE(2503), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4181), 1, + sym_label, + ACTIONS(293), 2, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(193), 30, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, + ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(712), 2, + sym_comment, + sym_include, + ACTIONS(299), 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, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [38765] = 15, + [38504] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(714), 2, + STATE(713), 2, sym_comment, sym_include, - ACTIONS(1320), 10, + ACTIONS(1328), 10, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -78718,7 +79005,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, aux_sym_input_stream_tuning_token9, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -78732,93 +79019,423 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38836] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1322), 1, - sym__namedot, - STATE(715), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(79), 33, - anon_sym_LBRACE, - 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, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_using_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_can_find_expression_token1, - aux_sym_of_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [38886] = 15, + [38575] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + STATE(714), 2, + sym_comment, + sym_include, + ACTIONS(211), 5, anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(213), 30, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, + 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_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [38628] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1330), 1, + aux_sym_widget_field_token1, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, sym__multiplicative_operator, - STATE(489), 1, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + STATE(1016), 1, + sym_do_block, + STATE(2165), 1, + aux_sym_on_statement_repeat1, + STATE(2442), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4166), 1, + sym_label, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(715), 2, + sym_comment, + sym_include, + ACTIONS(299), 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, + [38713] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(261), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1332), 1, + aux_sym_widget_field_token1, + STATE(376), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + STATE(1402), 1, + sym_do_block, + STATE(2160), 1, + aux_sym_on_statement_repeat1, + STATE(2528), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4431), 1, + sym_label, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(716), 2, + sym_comment, + sym_include, + ACTIONS(299), 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, + [38798] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1334), 1, + aux_sym_widget_field_token1, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + STATE(2164), 1, + aux_sym_on_statement_repeat1, + STATE(2393), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(3451), 1, + sym_do_block, + STATE(4369), 1, + sym_label, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(717), 2, + sym_comment, + sym_include, + ACTIONS(299), 15, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(309), 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, + [38883] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(261), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1336), 1, + aux_sym_widget_field_token1, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + STATE(1160), 1, + sym_do_block, + STATE(2140), 1, + aux_sym_on_statement_repeat1, + STATE(2405), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4431), 1, + sym_label, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(716), 2, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(718), 2, sym_comment, sym_include, - ACTIONS(1325), 9, - sym__terminator, + ACTIONS(299), 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, + [38968] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(719), 2, + sym_comment, + sym_include, + ACTIONS(137), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(139), 30, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, + 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_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, aux_sym_property_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(307), 13, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [39021] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(720), 2, + sym_comment, + sym_include, + ACTIONS(215), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(217), 30, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + aux_sym__block_terminator_token1, + anon_sym_PLUS, + anon_sym_DASH, + 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_token7, + aux_sym__comparison_operator_token8, + aux_sym__comparison_operator_token9, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [39074] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1246), 1, + sym__namedot, + STATE(726), 1, + aux_sym_qualified_name_repeat1, + STATE(721), 2, + sym_comment, + sym_include, + ACTIONS(87), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(89), 29, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -78832,14 +79449,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38956] = 6, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + [39130] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(717), 2, + STATE(722), 2, sym_comment, sym_include, ACTIONS(115), 3, @@ -78868,6 +79496,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -78875,28 +79504,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39008] = 8, + [39182] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1244), 1, + ACTIONS(1246), 1, sym__namedot, - STATE(720), 1, + STATE(726), 1, aux_sym_qualified_name_repeat1, - STATE(718), 2, + STATE(723), 2, sym_comment, sym_include, - ACTIONS(97), 3, + ACTIONS(83), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(99), 29, + ACTIONS(85), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78916,6 +79544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -78923,22 +79552,66 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39064] = 6, + [39238] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(439), 1, + ACTIONS(1338), 1, sym__namedot, - STATE(715), 1, + STATE(724), 3, + sym_comment, + sym_include, aux_sym_qualified_name_repeat1, - STATE(719), 2, + ACTIONS(98), 33, + anon_sym_LBRACE, + 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, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_scope_tuning_token1, + aux_sym_function_call_token1, + aux_sym_if_statement_token1, + aux_sym_using_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_can_find_expression_token1, + aux_sym_of_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [39288] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(447), 1, + sym__namedot, + STATE(724), 1, + aux_sym_qualified_name_repeat1, + STATE(725), 2, sym_comment, sym_include, - ACTIONS(105), 33, + ACTIONS(79), 33, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -78958,6 +79631,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_locked_expression_token1, aux_sym_input_expression_token1, aux_sym_scope_tuning_token1, + aux_sym_function_call_token1, aux_sym_if_statement_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, @@ -78966,31 +79640,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, aux_sym_can_find_expression_token1, aux_sym_of_token1, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [39116] = 8, + [39340] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1244), 1, + ACTIONS(1246), 1, sym__namedot, - STATE(722), 1, + STATE(727), 1, aux_sym_qualified_name_repeat1, - STATE(720), 2, + STATE(726), 2, sym_comment, sym_include, - ACTIONS(105), 3, + ACTIONS(79), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(107), 29, + ACTIONS(81), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79010,6 +79683,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79017,28 +79691,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39172] = 8, + [39396] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1244), 1, + ACTIONS(1341), 1, sym__namedot, - STATE(720), 1, - aux_sym_qualified_name_repeat1, - STATE(721), 2, - sym_comment, - sym_include, - ACTIONS(86), 3, + ACTIONS(98), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(88), 29, + STATE(727), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(100), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79058,6 +79730,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79065,32 +79738,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39228] = 7, + [39450] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1327), 1, - sym__namedot, - ACTIONS(79), 3, + ACTIONS(293), 1, anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - STATE(722), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(81), 29, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, + STATE(728), 2, + sym_comment, + sym_include, + ACTIONS(1344), 9, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -79104,34 +79795,23 @@ 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_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - [39282] = 7, + [39520] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1330), 1, - sym__namedot, - STATE(723), 2, + ACTIONS(1346), 1, + anon_sym_NO_DASHERROR, + STATE(729), 2, sym_comment, sym_include, - ACTIONS(109), 3, + ACTIONS(627), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(111), 29, + ACTIONS(629), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79151,6 +79831,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79158,26 +79839,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39335] = 7, + [39573] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1332), 1, + ACTIONS(1348), 1, anon_sym_NO_DASHERROR, - STATE(724), 2, + STATE(730), 2, sym_comment, sym_include, - ACTIONS(621), 3, + ACTIONS(191), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(623), 29, + ACTIONS(193), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79198,6 +79878,7 @@ 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_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -79205,25 +79886,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, aux_sym_of_token1, - [39388] = 7, + [39626] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1334), 1, - anon_sym_NO_DASHERROR, - STATE(725), 2, + STATE(731), 2, sym_comment, sym_include, - ACTIONS(211), 3, + ACTIONS(98), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(213), 29, + ACTIONS(100), 30, + sym__namedot, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79243,6 +79922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79250,26 +79930,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39441] = 7, + [39677] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1336), 1, + ACTIONS(1350), 1, anon_sym_NO_DASHERROR, - STATE(726), 2, + STATE(732), 2, sym_comment, sym_include, - ACTIONS(211), 3, + ACTIONS(627), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(213), 29, + ACTIONS(629), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79290,6 +79969,7 @@ 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_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -79297,31 +79977,142 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, aux_sym_of_token1, - [39494] = 7, + [39730] = 29, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1242), 1, - anon_sym_LPAREN, - STATE(727), 2, - sym_comment, - sym_include, - ACTIONS(63), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(67), 29, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_EQ, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1362), 1, + aux_sym_variable_definition_token3, + ACTIONS(1364), 1, + aux_sym_variable_definition_token4, + ACTIONS(1366), 1, + aux_sym_buffer_definition_token1, + ACTIONS(1368), 1, + aux_sym_buffer_definition_token3, + ACTIONS(1370), 1, + aux_sym_query_definition_token1, + ACTIONS(1372), 1, + aux_sym_function_parameter_token1, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(1378), 1, + aux_sym_property_definition_token1, + ACTIONS(1380), 1, + aux_sym_event_definition_token1, + ACTIONS(1382), 1, + aux_sym_data_source_definition_token1, + STATE(792), 1, + sym_access_tuning, + STATE(1835), 1, + sym_scope_tuning, + STATE(1849), 1, + aux_sym_variable_definition_repeat1, + STATE(1870), 1, + sym_property_tuning, + STATE(1948), 1, + sym_serialization_tuning, + STATE(2014), 1, + aux_sym_buffer_definition_repeat1, + STATE(2364), 1, + aux_sym_property_definition_repeat1, + STATE(2501), 1, + aux_sym_property_definition_repeat2, + STATE(2782), 1, + sym_property_type, + ACTIONS(1352), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1374), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(733), 2, + sym_comment, + sym_include, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [39827] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(100), 1, + sym__namedot, + STATE(734), 2, + sym_comment, + sym_include, + ACTIONS(98), 33, + anon_sym_LBRACE, + 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, + sym__integer_literal, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_scope_tuning_token1, + aux_sym_function_call_token1, + aux_sym_if_statement_token1, + aux_sym_using_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_can_find_expression_token1, + aux_sym_of_token1, + aux_sym_accumulate_expression_token1, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + [39876] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1244), 1, + anon_sym_LPAREN, + STATE(735), 2, + sym_comment, + sym_include, + ACTIONS(75), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(77), 29, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, anon_sym_GT_EQ, @@ -79335,6 +80126,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79342,25 +80134,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39547] = 6, + [39929] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(728), 2, + ACTIONS(1244), 1, + anon_sym_LPAREN, + STATE(736), 2, sym_comment, sym_include, - ACTIONS(79), 3, + ACTIONS(63), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(81), 30, - sym__namedot, + ACTIONS(67), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79380,6 +80172,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79387,26 +80180,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39598] = 7, + [39982] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1338), 1, - anon_sym_NO_DASHERROR, - STATE(729), 2, + ACTIONS(1384), 1, + sym__namedot, + STATE(737), 2, sym_comment, sym_include, - ACTIONS(621), 3, + ACTIONS(109), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(623), 29, + ACTIONS(111), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79426,6 +80218,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79433,138 +80226,69 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39651] = 5, - ACTIONS(3), 1, + [40035] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(81), 1, - sym__namedot, - STATE(730), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1386), 1, + anon_sym_NO_DASHERROR, + STATE(738), 2, sym_comment, sym_include, - ACTIONS(79), 33, - anon_sym_LBRACE, - 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, - sym__integer_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_LPAREN, - anon_sym_RPAREN, - 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_scope_tuning_token1, - aux_sym_if_statement_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(191), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(193), 29, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_can_find_expression_token1, - aux_sym_of_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [39700] = 29, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1350), 1, - aux_sym_variable_definition_token3, - ACTIONS(1352), 1, - aux_sym_variable_definition_token4, - ACTIONS(1354), 1, - aux_sym_buffer_definition_token1, - ACTIONS(1356), 1, - aux_sym_buffer_definition_token3, - ACTIONS(1358), 1, - aux_sym_query_definition_token1, - ACTIONS(1360), 1, - aux_sym_function_parameter_token1, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(1366), 1, - aux_sym_property_definition_token1, - ACTIONS(1368), 1, - aux_sym_event_definition_token1, - ACTIONS(1370), 1, - aux_sym_data_source_definition_token1, - STATE(771), 1, - sym_access_tuning, - STATE(1823), 1, - sym_scope_tuning, - STATE(1854), 1, - aux_sym_variable_definition_repeat1, - STATE(1879), 1, - sym_property_tuning, - STATE(1928), 1, - sym_serialization_tuning, - STATE(2006), 1, - aux_sym_buffer_definition_repeat1, - STATE(2347), 1, - aux_sym_property_definition_repeat1, - STATE(2440), 1, - aux_sym_property_definition_repeat2, - STATE(2855), 1, - sym_property_type, - ACTIONS(1340), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1362), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(731), 2, - sym_comment, - sym_include, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [39797] = 7, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [40088] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1242), 1, - anon_sym_LPAREN, - STATE(732), 2, + STATE(739), 2, sym_comment, sym_include, - ACTIONS(75), 3, + ACTIONS(119), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(77), 29, + ACTIONS(121), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79584,6 +80308,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79591,24 +80316,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39850] = 6, + [40138] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(733), 2, + STATE(740), 2, sym_comment, sym_include, - ACTIONS(119), 3, + ACTIONS(159), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(121), 29, + ACTIONS(161), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79628,6 +80352,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79635,24 +80360,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39900] = 6, + [40188] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(734), 2, + STATE(741), 2, sym_comment, sym_include, - ACTIONS(187), 3, + ACTIONS(63), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(189), 29, + ACTIONS(67), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79672,6 +80396,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79679,41 +80404,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - [39950] = 15, + [40238] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(735), 2, + STATE(742), 2, sym_comment, sym_include, - ACTIONS(1372), 7, + ACTIONS(1388), 7, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, @@ -79721,7 +80445,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -79735,21 +80459,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [40018] = 6, + [40306] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(736), 2, + STATE(743), 2, sym_comment, sym_include, - ACTIONS(155), 3, + ACTIONS(187), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(157), 29, + ACTIONS(189), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79769,6 +80493,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79776,24 +80501,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40068] = 6, + [40356] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(737), 2, + STATE(744), 2, sym_comment, sym_include, - ACTIONS(86), 3, + ACTIONS(183), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(88), 29, + ACTIONS(185), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79813,6 +80537,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79820,24 +80545,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40118] = 6, + [40406] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(738), 2, + STATE(745), 2, sym_comment, sym_include, - ACTIONS(143), 3, + ACTIONS(179), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(145), 29, + ACTIONS(181), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79857,6 +80581,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79864,24 +80589,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40168] = 6, + [40456] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(739), 2, + STATE(746), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(191), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(67), 29, + ACTIONS(193), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79901,6 +80625,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79908,24 +80633,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40218] = 6, + [40506] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(740), 2, + STATE(747), 2, sym_comment, sym_include, - ACTIONS(151), 3, + ACTIONS(83), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(153), 29, + ACTIONS(85), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79945,6 +80669,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -79952,24 +80677,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40268] = 6, + [40556] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(741), 2, + ACTIONS(1390), 1, + aux_sym_function_call_token1, + STATE(748), 2, sym_comment, sym_include, - ACTIONS(123), 3, + ACTIONS(127), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(125), 29, + ACTIONS(129), 28, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79996,76 +80722,67 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40318] = 14, - ACTIONS(3), 1, + [40608] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1374), 1, - sym_identifier, - ACTIONS(1378), 1, - aux_sym_primitive_type_token19, - STATE(813), 1, - sym_access_tuning, - STATE(819), 1, - aux_sym_method_definition_repeat1, - STATE(1573), 1, - sym_method_tuning, - STATE(4235), 1, - sym_primitive_type, - STATE(4299), 1, - sym_qualified_name, - STATE(742), 2, + STATE(749), 2, sym_comment, sym_include, - ACTIONS(1382), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1380), 4, - aux_sym_scope_tuning_token4, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - ACTIONS(1376), 18, - aux_sym_primitive_type_token1, - aux_sym_primitive_type_token2, - aux_sym_primitive_type_token3, - aux_sym_primitive_type_token4, - aux_sym_primitive_type_token5, - aux_sym_primitive_type_token6, - aux_sym_primitive_type_token7, - aux_sym_primitive_type_token8, - aux_sym_primitive_type_token9, - aux_sym_primitive_type_token10, - aux_sym_primitive_type_token11, - aux_sym_primitive_type_token12, - aux_sym_primitive_type_token13, - aux_sym_primitive_type_token14, - aux_sym_primitive_type_token15, - aux_sym_primitive_type_token16, - aux_sym_primitive_type_token17, - aux_sym_primitive_type_token18, - [40384] = 6, + ACTIONS(123), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(125), 29, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + [40658] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(743), 2, + STATE(750), 2, sym_comment, sym_include, - ACTIONS(159), 3, + ACTIONS(171), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(161), 29, + ACTIONS(173), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80085,6 +80802,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80092,24 +80810,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40434] = 6, + [40708] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(744), 2, + STATE(751), 2, sym_comment, sym_include, - ACTIONS(183), 3, + ACTIONS(167), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(185), 29, + ACTIONS(169), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80129,6 +80846,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80136,24 +80854,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40484] = 6, + [40758] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(745), 2, + STATE(752), 2, sym_comment, sym_include, - ACTIONS(135), 3, + ACTIONS(137), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(137), 29, + ACTIONS(139), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80173,6 +80890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80180,24 +80898,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40534] = 6, + [40808] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(746), 2, + STATE(753), 2, sym_comment, sym_include, - ACTIONS(97), 3, + ACTIONS(163), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(99), 29, + ACTIONS(165), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80217,6 +80934,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80224,24 +80942,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40584] = 6, + [40858] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(747), 2, + STATE(754), 2, sym_comment, sym_include, - ACTIONS(179), 3, + ACTIONS(87), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(181), 29, + ACTIONS(89), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80261,6 +80978,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80268,24 +80986,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40634] = 6, + [40908] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(748), 2, + STATE(755), 2, sym_comment, sym_include, - ACTIONS(195), 3, + ACTIONS(207), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(197), 29, + ACTIONS(209), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80305,6 +81022,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80312,24 +81030,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40684] = 6, + [40958] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(749), 2, + STATE(756), 2, sym_comment, sym_include, - ACTIONS(163), 3, + ACTIONS(109), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(165), 29, + ACTIONS(111), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80349,6 +81066,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80356,24 +81074,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40734] = 6, + [41008] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(750), 2, + ACTIONS(1392), 1, + aux_sym_function_call_token1, + STATE(757), 2, sym_comment, sym_include, - ACTIONS(109), 3, + ACTIONS(153), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(111), 29, + ACTIONS(155), 28, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80400,24 +81119,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40784] = 6, + [41060] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(751), 2, + STATE(758), 2, sym_comment, sym_include, - ACTIONS(127), 3, + ACTIONS(195), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(129), 29, + ACTIONS(197), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80437,6 +81155,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80444,17 +81163,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40834] = 6, + [41110] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(752), 2, + STATE(759), 2, sym_comment, sym_include, ACTIONS(199), 3, @@ -80481,6 +81199,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80488,24 +81207,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40884] = 6, + [41160] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(753), 2, + STATE(760), 2, sym_comment, sym_include, - ACTIONS(171), 3, + ACTIONS(149), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(173), 29, + ACTIONS(151), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80525,6 +81243,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80532,24 +81251,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40934] = 6, + [41210] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(754), 2, + STATE(761), 2, sym_comment, sym_include, - ACTIONS(207), 3, + ACTIONS(133), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(209), 29, + ACTIONS(135), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80569,6 +81287,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80576,24 +81295,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40984] = 6, + [41260] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(755), 2, + STATE(762), 2, sym_comment, sym_include, - ACTIONS(167), 3, + ACTIONS(203), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(169), 29, + ACTIONS(205), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80613,6 +81331,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80620,24 +81339,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41034] = 6, + [41310] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(756), 2, + STATE(763), 2, sym_comment, sym_include, - ACTIONS(211), 3, + ACTIONS(153), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(213), 29, + ACTIONS(155), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80657,6 +81375,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80664,24 +81383,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41084] = 6, + [41360] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(757), 2, + STATE(764), 2, sym_comment, sym_include, - ACTIONS(131), 3, + ACTIONS(141), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(133), 29, + ACTIONS(143), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80701,6 +81419,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80708,24 +81427,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41134] = 6, + [41410] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(758), 2, + STATE(765), 2, sym_comment, sym_include, - ACTIONS(147), 3, + ACTIONS(219), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(149), 29, + ACTIONS(221), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80745,6 +81463,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80752,24 +81471,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41184] = 6, + [41460] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(759), 2, + STATE(766), 2, sym_comment, sym_include, - ACTIONS(203), 3, + ACTIONS(215), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(205), 29, + ACTIONS(217), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80789,6 +81507,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80796,24 +81515,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41234] = 6, + [41510] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(760), 2, + STATE(767), 2, sym_comment, sym_include, - ACTIONS(75), 3, + ACTIONS(211), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(77), 29, + ACTIONS(213), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80833,6 +81551,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80840,24 +81559,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41284] = 6, + [41560] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(761), 2, + STATE(768), 2, sym_comment, sym_include, - ACTIONS(175), 3, + ACTIONS(75), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(177), 29, + ACTIONS(77), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80877,6 +81595,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80884,24 +81603,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41334] = 6, + [41610] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(762), 2, + STATE(769), 2, sym_comment, sym_include, - ACTIONS(215), 3, + ACTIONS(223), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(217), 29, + ACTIONS(225), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80921,6 +81639,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80928,24 +81647,75 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41384] = 6, + [41660] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1394), 1, + sym_identifier, + ACTIONS(1398), 1, + aux_sym_primitive_type_token19, + STATE(827), 1, + sym_access_tuning, + STATE(831), 1, + aux_sym_method_definition_repeat1, + STATE(1610), 1, + sym_method_tuning, + STATE(4325), 1, + sym_primitive_type, + STATE(4718), 1, + sym_qualified_name, + STATE(770), 2, + sym_comment, + sym_include, + ACTIONS(1402), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1400), 4, + aux_sym_scope_tuning_token4, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + ACTIONS(1396), 18, + aux_sym_primitive_type_token1, + aux_sym_primitive_type_token2, + aux_sym_primitive_type_token3, + aux_sym_primitive_type_token4, + aux_sym_primitive_type_token5, + aux_sym_primitive_type_token6, + aux_sym_primitive_type_token7, + aux_sym_primitive_type_token8, + aux_sym_primitive_type_token9, + aux_sym_primitive_type_token10, + aux_sym_primitive_type_token11, + aux_sym_primitive_type_token12, + aux_sym_primitive_type_token13, + aux_sym_primitive_type_token14, + aux_sym_primitive_type_token15, + aux_sym_primitive_type_token16, + aux_sym_primitive_type_token17, + aux_sym_primitive_type_token18, + [41726] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(763), 2, + STATE(771), 2, sym_comment, sym_include, - ACTIONS(139), 3, + ACTIONS(145), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(141), 29, + ACTIONS(147), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80965,6 +81735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -80972,24 +81743,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41434] = 6, + [41776] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(764), 2, + STATE(772), 2, sym_comment, sym_include, - ACTIONS(191), 3, + ACTIONS(175), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(193), 29, + ACTIONS(177), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81009,6 +81779,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -81016,30 +81787,82 @@ static const uint16_t ts_small_parse_table[] = { 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, - [41484] = 11, + [41826] = 16, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(1406), 1, + anon_sym_BY, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(773), 2, + sym_comment, + sym_include, + ACTIONS(1404), 5, + anon_sym_COLON, + aux_sym_while_phrase_token1, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(301), 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, + [41895] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1384), 1, + ACTIONS(1408), 1, anon_sym_LPAREN, - ACTIONS(1386), 1, + ACTIONS(1410), 1, sym__namedot, - ACTIONS(1388), 1, + ACTIONS(1412), 1, sym__namecolon, - STATE(800), 1, + STATE(813), 1, aux_sym_object_access_repeat1, - STATE(834), 1, + STATE(821), 1, aux_sym_qualified_name_repeat1, ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(765), 2, + STATE(774), 2, sym_comment, sym_include, ACTIONS(63), 24, @@ -81067,49 +81890,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [41543] = 16, - ACTIONS(59), 1, + [41954] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(1408), 1, + anon_sym_LPAREN, + ACTIONS(1410), 1, + sym__namedot, + ACTIONS(1412), 1, + sym__namecolon, + STATE(813), 1, + aux_sym_object_access_repeat1, + STATE(821), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(775), 2, + sym_comment, + sym_include, + ACTIONS(75), 24, anon_sym_SLASH, - ACTIONS(287), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(1392), 1, - anon_sym_BY, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(309), 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, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [42013] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + ACTIONS(161), 2, sym__or_operator, sym__and_operator, - STATE(766), 2, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(776), 2, sym_comment, sym_include, - ACTIONS(1390), 5, - anon_sym_COLON, - aux_sym_while_phrase_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(307), 13, + ACTIONS(159), 5, + sym_identifier, + aux_sym_input_expression_token2, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(299), 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, @@ -81120,34 +81987,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [41612] = 11, + [42075] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1384), 1, + ACTIONS(1414), 1, anon_sym_LPAREN, - ACTIONS(1386), 1, + ACTIONS(1416), 1, sym__namedot, - ACTIONS(1388), 1, + ACTIONS(1418), 1, sym__namecolon, - STATE(800), 1, + STATE(826), 1, aux_sym_object_access_repeat1, - STATE(834), 1, + STATE(1122), 1, aux_sym_qualified_name_repeat1, - ACTIONS(77), 2, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(767), 2, + STATE(777), 2, sym_comment, sym_include, - ACTIONS(75), 24, + ACTIONS(63), 24, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - aux_sym_input_expression_token2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -81165,28 +82032,28 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [41671] = 7, + aux_sym_include_argument_token1, + [42131] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1396), 1, + ACTIONS(1420), 1, + ts_builtin_sym_end, + ACTIONS(1424), 1, aux_sym_else_if_statement_token1, - STATE(840), 2, - sym_else_if_statement, - sym_else_statement, - STATE(768), 3, + STATE(796), 1, + aux_sym_if_statement_repeat1, + STATE(778), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(1394), 26, + STATE(1069), 2, + sym_else_if_statement, + sym_else_statement, + ACTIONS(1422), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -81211,40 +82078,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [41721] = 13, + [42185] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(321), 2, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(769), 2, + STATE(779), 2, sym_comment, sym_include, - ACTIONS(1127), 5, + ACTIONS(319), 24, + anon_sym_SLASH, sym_identifier, + anon_sym_STAR, aux_sym_input_expression_token2, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(305), 15, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -81260,34 +82121,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [41783] = 12, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [42241] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(289), 2, + ACTIONS(323), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(770), 2, + STATE(780), 2, sym_comment, sym_include, - ACTIONS(293), 20, + ACTIONS(325), 20, sym_identifier, aux_sym_input_expression_token2, anon_sym_LT, @@ -81308,100 +82172,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [41843] = 24, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(1411), 1, - aux_sym_variable_definition_token4, - ACTIONS(1415), 1, - aux_sym_function_parameter_token1, - ACTIONS(1417), 1, - aux_sym_property_definition_token1, - ACTIONS(1419), 1, - aux_sym_event_definition_token1, - ACTIONS(1421), 1, - aux_sym_data_source_definition_token1, - STATE(1879), 1, - sym_property_tuning, - STATE(2346), 1, - aux_sym_property_definition_repeat1, - STATE(2435), 1, - aux_sym_property_definition_repeat2, - STATE(2855), 1, - sym_property_type, - STATE(4106), 1, - sym_serialization_tuning, - STATE(4107), 1, - sym_scope_tuning, - ACTIONS(1340), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1362), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - ACTIONS(1406), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1409), 2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - ACTIONS(1413), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(771), 2, - sym_comment, - sym_include, - ACTIONS(1403), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1399), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [41927] = 13, + [42301] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(315), 2, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(772), 2, + STATE(781), 2, sym_comment, sym_include, - ACTIONS(1423), 5, + ACTIONS(317), 22, sym_identifier, aux_sym_input_expression_token2, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(305), 15, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -81417,123 +82216,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [41989] = 8, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [42359] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1427), 1, - aux_sym_else_if_statement_token1, - STATE(768), 1, - aux_sym_if_statement_repeat1, - STATE(773), 2, - sym_comment, - sym_include, - STATE(840), 2, - sym_else_if_statement, - sym_else_statement, - ACTIONS(1425), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [42041] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - ACTIONS(1429), 1, - sym__namedot, - STATE(774), 2, - sym_comment, - sym_include, - ACTIONS(111), 28, - sym__terminator, - aux_sym__block_terminator_token1, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - anon_sym_COLON, - aux_sym_while_phrase_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_event_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [42091] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - sym__namedot, - ACTIONS(1435), 1, - sym__namecolon, - STATE(821), 1, - aux_sym_object_access_repeat1, - STATE(869), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(67), 2, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(775), 2, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(782), 2, sym_comment, sym_include, - ACTIONS(63), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1135), 5, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_input_expression_token2, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -81549,36 +82268,40 @@ 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_include_argument_token1, - [42147] = 11, + [42421] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(299), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(776), 2, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(783), 2, sym_comment, sym_include, - ACTIONS(301), 22, + ACTIONS(1133), 5, sym_identifier, aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -81594,43 +82317,40 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [42205] = 13, + [42483] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(777), 2, + STATE(784), 2, sym_comment, sym_include, - ACTIONS(1125), 5, + ACTIONS(1131), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -81646,40 +82366,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42267] = 13, + [42545] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(778), 2, + STATE(785), 2, sym_comment, sym_include, - ACTIONS(1123), 5, + ACTIONS(1137), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -81695,40 +82415,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42329] = 13, + [42607] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(779), 2, + STATE(786), 2, sym_comment, sym_include, - ACTIONS(1119), 5, + ACTIONS(1139), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -81744,36 +82464,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42391] = 10, + [42669] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, - sym__namedot, - ACTIONS(1435), 1, - sym__namecolon, - STATE(821), 1, - aux_sym_object_access_repeat1, - STATE(869), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(77), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(376), 1, + sym__comparison_operator, + STATE(377), 1, + sym__multiplicative_operator, + STATE(378), 1, + sym__additive_operator, + STATE(380), 1, + sym__logical_operator, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(780), 2, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(787), 2, sym_comment, sym_include, - ACTIONS(75), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1129), 5, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_input_expression_token2, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -81789,46 +82513,47 @@ 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_include_argument_token1, - [42447] = 13, - ACTIONS(3), 1, + [42731] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(345), 1, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(439), 1, sym__comparison_operator, - STATE(509), 1, + STATE(440), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(441), 1, sym__additive_operator, - STATE(516), 1, + STATE(442), 1, sym__logical_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(781), 2, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(788), 2, sym_comment, sym_include, - ACTIONS(1133), 5, - sym_identifier, - aux_sym_input_expression_token2, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(305), 15, - anon_sym_LT, + ACTIONS(1237), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_property_tuning_token1, + aux_sym_event_definition_token1, + ACTIONS(301), 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, @@ -81839,24 +82564,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42509] = 8, + [42797] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1427), 1, + ACTIONS(1428), 1, aux_sym_else_if_statement_token1, - STATE(773), 1, - aux_sym_if_statement_repeat1, - STATE(782), 2, - sym_comment, - sym_include, - STATE(840), 2, + STATE(994), 2, sym_else_if_statement, sym_else_statement, - ACTIONS(1437), 26, + STATE(789), 3, + sym_comment, + sym_include, + aux_sym_if_statement_repeat1, + ACTIONS(1426), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -81883,26 +82607,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [42561] = 8, + [42847] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1439), 1, - ts_builtin_sym_end, - ACTIONS(1441), 1, + ACTIONS(1433), 1, aux_sym_else_if_statement_token1, - STATE(913), 2, - sym_else_if_statement, - sym_else_statement, - STATE(783), 3, + STATE(789), 1, + aux_sym_if_statement_repeat1, + STATE(790), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(1394), 25, + STATE(994), 2, + sym_else_if_statement, + sym_else_statement, + ACTIONS(1431), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -81927,40 +82651,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [42613] = 13, + [42899] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(345), 1, + STATE(376), 1, sym__comparison_operator, - STATE(509), 1, + STATE(377), 1, sym__multiplicative_operator, - STATE(515), 1, + STATE(378), 1, sym__additive_operator, - STATE(516), 1, + STATE(380), 1, sym__logical_operator, - ACTIONS(285), 2, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(784), 2, + STATE(791), 2, sym_comment, sym_include, - ACTIONS(1131), 5, + ACTIONS(1435), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -81976,76 +82700,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42675] = 13, - ACTIONS(3), 1, + [42961] = 24, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(345), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(515), 1, - sym__additive_operator, - STATE(516), 1, - sym__logical_operator, - ACTIONS(153), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(785), 2, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(1449), 1, + aux_sym_variable_definition_token4, + ACTIONS(1453), 1, + aux_sym_function_parameter_token1, + ACTIONS(1455), 1, + aux_sym_property_definition_token1, + ACTIONS(1457), 1, + aux_sym_event_definition_token1, + ACTIONS(1459), 1, + aux_sym_data_source_definition_token1, + STATE(1870), 1, + sym_property_tuning, + STATE(2378), 1, + aux_sym_property_definition_repeat1, + STATE(2443), 1, + aux_sym_property_definition_repeat2, + STATE(2782), 1, + sym_property_type, + STATE(4204), 1, + sym_serialization_tuning, + STATE(4209), 1, + sym_scope_tuning, + ACTIONS(1352), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1374), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + ACTIONS(1444), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1447), 2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + ACTIONS(1451), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(792), 2, sym_comment, sym_include, - ACTIONS(151), 5, - sym_identifier, - aux_sym_input_expression_token2, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(305), 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, - [42737] = 9, + ACTIONS(1441), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1437), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [43045] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1444), 1, - ts_builtin_sym_end, - ACTIONS(1446), 1, + ACTIONS(1433), 1, aux_sym_else_if_statement_token1, - STATE(789), 1, + STATE(790), 1, aux_sym_if_statement_repeat1, - STATE(786), 2, + STATE(793), 2, sym_comment, sym_include, - STATE(913), 2, + STATE(994), 2, sym_else_if_statement, sym_else_statement, - ACTIONS(1437), 25, + ACTIONS(1422), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -82070,83 +82804,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [42791] = 15, + [43097] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(787), 2, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + ACTIONS(1461), 1, + sym__namedot, + STATE(794), 2, sym_comment, sym_include, - ACTIONS(1225), 5, + ACTIONS(111), 28, + sym__terminator, + aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + anon_sym_COLON, + aux_sym_while_phrase_token1, aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, aux_sym_event_definition_token1, - ACTIONS(307), 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, - [42857] = 10, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [43147] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(345), 1, - sym__comparison_operator, - STATE(509), 1, - sym__multiplicative_operator, - STATE(515), 1, - sym__additive_operator, - STATE(516), 1, - sym__logical_operator, - ACTIONS(297), 2, + ACTIONS(1414), 1, + anon_sym_LPAREN, + ACTIONS(1416), 1, + sym__namedot, + ACTIONS(1418), 1, + sym__namecolon, + STATE(826), 1, + aux_sym_object_access_repeat1, + STATE(1122), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(788), 2, + STATE(795), 2, sym_comment, sym_include, - ACTIONS(295), 24, + ACTIONS(75), 24, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - aux_sym_input_expression_token2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -82164,29 +82892,27 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [42913] = 9, + aux_sym_include_argument_token1, + [43203] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1446), 1, + ACTIONS(1424), 1, aux_sym_else_if_statement_token1, - ACTIONS(1448), 1, + ACTIONS(1463), 1, ts_builtin_sym_end, - STATE(783), 1, + STATE(797), 1, aux_sym_if_statement_repeat1, - STATE(789), 2, + STATE(796), 2, sym_comment, sym_include, - STATE(913), 2, + STATE(1069), 2, sym_else_if_statement, sym_else_statement, - ACTIONS(1425), 25, + ACTIONS(1431), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -82212,179 +82938,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [42967] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, - sym__comparison_operator, - ACTIONS(297), 2, - sym__or_operator, - sym__and_operator, - STATE(790), 2, - sym_comment, - sym_include, - ACTIONS(295), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_include_argument_token1, - [43020] = 7, + [43257] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1450), 1, - sym__namecolon, - ACTIONS(92), 2, - sym__or_operator, - sym__and_operator, - STATE(791), 3, + ACTIONS(1465), 1, + ts_builtin_sym_end, + ACTIONS(1467), 1, + aux_sym_else_if_statement_token1, + STATE(1069), 2, + sym_else_if_statement, + sym_else_statement, + STATE(797), 3, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(90), 25, - anon_sym_SLASH, + aux_sym_if_statement_repeat1, + ACTIONS(1426), 25, sym_identifier, - anon_sym_STAR, - anon_sym_LPAREN, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [43069] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, - sym__comparison_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(792), 2, - sym_comment, - sym_include, - ACTIONS(1123), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(305), 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, - [43128] = 18, + 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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [43309] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1453), 1, + ACTIONS(1470), 1, anon_sym_COMMA, - ACTIONS(1455), 1, + ACTIONS(1472), 1, aux_sym_of_token1, - ACTIONS(1457), 1, + ACTIONS(1474), 1, aux_sym_on_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(2949), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(3041), 1, aux_sym_on_statement_repeat1, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(793), 2, + STATE(798), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -82398,38 +83035,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43199] = 12, + [43380] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, + STATE(446), 1, sym__comparison_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(161), 2, sym__or_operator, sym__and_operator, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(794), 2, + STATE(799), 2, sym_comment, sym_include, - ACTIONS(1131), 5, + ACTIONS(159), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82445,27 +83082,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43258] = 11, + [43439] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1459), 1, + ACTIONS(1476), 1, anon_sym_LPAREN, - ACTIONS(1461), 1, + ACTIONS(1478), 1, sym__namedot, - ACTIONS(1463), 1, + ACTIONS(1480), 1, sym__namecolon, - STATE(1028), 1, + STATE(1071), 1, aux_sym_object_access_repeat1, - STATE(1365), 1, + STATE(1492), 1, aux_sym_qualified_name_repeat1, ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(795), 2, + STATE(800), 2, sym_comment, sym_include, ACTIONS(75), 22, @@ -82491,38 +83128,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [43315] = 12, + [43496] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, + STATE(446), 1, sym__comparison_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(321), 2, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(796), 2, + STATE(801), 2, sym_comment, sym_include, - ACTIONS(1127), 5, + ACTIONS(319), 24, + anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, + anon_sym_STAR, anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(305), 15, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82538,38 +83171,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43374] = 12, + aux_sym_include_argument_token1, + [43549] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, + STATE(446), 1, sym__comparison_operator, - ACTIONS(285), 2, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(315), 2, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(797), 2, + STATE(802), 2, sym_comment, sym_include, - ACTIONS(1119), 5, + ACTIONS(317), 22, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(305), 15, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82585,38 +83216,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43433] = 12, + aux_sym_include_argument_token1, + [43604] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, + STATE(446), 1, sym__comparison_operator, - ACTIONS(153), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(285), 2, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(798), 2, + STATE(803), 2, sym_comment, sym_include, - ACTIONS(151), 5, + ACTIONS(1135), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82632,77 +83264,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43492] = 11, + [43663] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, + STATE(446), 1, sym__comparison_operator, - ACTIONS(285), 2, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(289), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(799), 2, + STATE(804), 2, sym_comment, sym_include, - ACTIONS(293), 20, + ACTIONS(1133), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, - 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, aux_sym_include_argument_token1, - [43549] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1388), 1, - sym__namecolon, - STATE(791), 1, - aux_sym_object_access_repeat1, - ACTIONS(103), 2, - sym__or_operator, - sym__and_operator, - STATE(800), 2, - sym_comment, - sym_include, - ACTIONS(101), 25, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - anon_sym_LPAREN, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82718,52 +83311,84 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [43600] = 18, + [43722] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(211), 1, + aux_sym_variable_definition_token2, + STATE(805), 2, + sym_comment, + sym_include, + ACTIONS(213), 28, + sym__terminator, + aux_sym__block_terminator_token1, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + anon_sym_COLON, + aux_sym_while_phrase_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_event_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [43769] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(446), 1, + sym__comparison_operator, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(293), 2, anon_sym_SLASH, - ACTIONS(287), 1, anon_sym_STAR, - ACTIONS(1453), 1, - anon_sym_COMMA, - ACTIONS(1465), 1, - aux_sym_of_token1, - ACTIONS(1467), 1, - aux_sym_on_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - STATE(2929), 1, - aux_sym_on_statement_repeat1, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, sym__or_operator, sym__and_operator, - STATE(801), 2, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(806), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(1131), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(299), 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, @@ -82774,38 +83399,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43671] = 12, + [43828] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, + STATE(446), 1, sym__comparison_operator, - ACTIONS(285), 2, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(802), 2, + STATE(807), 2, sym_comment, sym_include, - ACTIONS(1133), 5, + ACTIONS(1137), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82821,38 +83446,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43730] = 12, + [43887] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, + STATE(446), 1, sym__comparison_operator, - ACTIONS(285), 2, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(803), 2, + STATE(808), 2, sym_comment, sym_include, - ACTIONS(1469), 5, + ACTIONS(1139), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82868,46 +83493,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43789] = 18, + [43946] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1453), 1, + ACTIONS(1470), 1, anon_sym_COMMA, - ACTIONS(1471), 1, + ACTIONS(1482), 1, aux_sym_of_token1, - ACTIONS(1473), 1, + ACTIONS(1484), 1, aux_sym_on_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(2990), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(2980), 1, aux_sym_on_statement_repeat1, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(804), 2, + STATE(809), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -82921,38 +83546,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43860] = 12, + [44017] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, + STATE(446), 1, sym__comparison_operator, - ACTIONS(285), 2, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(323), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(805), 2, + STATE(810), 2, sym_comment, sym_include, - ACTIONS(1125), 5, + ACTIONS(325), 20, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(305), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82968,49 +83591,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43919] = 18, - ACTIONS(59), 1, + aux_sym_include_argument_token1, + [44074] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(1453), 1, - anon_sym_COMMA, - ACTIONS(1475), 1, - aux_sym_of_token1, - ACTIONS(1477), 1, - aux_sym_on_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - STATE(2939), 1, - aux_sym_on_statement_repeat1, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(1486), 1, + sym__namecolon, + ACTIONS(93), 2, sym__or_operator, sym__and_operator, - STATE(806), 2, + STATE(811), 3, sym_comment, sym_include, - ACTIONS(307), 13, + aux_sym_object_access_repeat1, + ACTIONS(91), 25, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + anon_sym_LPAREN, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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, @@ -83021,75 +83631,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43990] = 6, - ACTIONS(59), 1, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [44123] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(109), 1, - aux_sym_variable_definition_token2, - STATE(807), 2, + STATE(446), 1, + sym__comparison_operator, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(812), 2, sym_comment, sym_include, - ACTIONS(111), 28, - sym__terminator, - aux_sym__block_terminator_token1, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - anon_sym_COLON, - aux_sym_while_phrase_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_event_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [44037] = 11, + ACTIONS(1129), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(299), 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, + [44182] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1459), 1, - anon_sym_LPAREN, - ACTIONS(1461), 1, - sym__namedot, - ACTIONS(1463), 1, + ACTIONS(1412), 1, sym__namecolon, - STATE(1028), 1, + STATE(811), 1, aux_sym_object_access_repeat1, - STATE(1365), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(67), 2, + ACTIONS(107), 2, sym__or_operator, sym__and_operator, - STATE(808), 2, + STATE(813), 2, sym_comment, sym_include, - ACTIONS(63), 22, + ACTIONS(105), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_LPAREN, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -83107,34 +83721,140 @@ 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, - [44094] = 10, - ACTIONS(3), 1, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [44233] = 18, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(388), 1, - sym__logical_operator, - STATE(390), 1, - sym__additive_operator, - STATE(402), 1, - sym__multiplicative_operator, - STATE(408), 1, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(1470), 1, + anon_sym_COMMA, + ACTIONS(1489), 1, + aux_sym_of_token1, + ACTIONS(1491), 1, + aux_sym_on_statement_token1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(285), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(2968), 1, + aux_sym_on_statement_repeat1, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(814), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [44304] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, anon_sym_SLASH, + ACTIONS(295), 1, anon_sym_STAR, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(809), 2, + STATE(815), 2, sym_comment, sym_include, - ACTIONS(301), 22, + ACTIONS(1493), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(301), 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, + [44369] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1476), 1, + anon_sym_LPAREN, + ACTIONS(1478), 1, + sym__namedot, + ACTIONS(1480), 1, + sym__namecolon, + STATE(1071), 1, + aux_sym_object_access_repeat1, + STATE(1492), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(816), 2, + sym_comment, + sym_include, + ACTIONS(63), 22, + anon_sym_SLASH, sym_identifier, - anon_sym_DQUOTE, + anon_sym_STAR, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -83152,47 +83872,47 @@ 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_include_argument_token1, - [44149] = 18, + anon_sym_NO_DASHERROR, + [44426] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(1453), 1, + ACTIONS(1470), 1, anon_sym_COMMA, - ACTIONS(1479), 1, + ACTIONS(1495), 1, aux_sym_of_token1, - ACTIONS(1481), 1, + ACTIONS(1497), 1, aux_sym_on_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - STATE(2958), 1, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(3004), 1, aux_sym_on_statement_repeat1, - ACTIONS(291), 2, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(810), 2, + STATE(817), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -83206,43 +83926,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44220] = 15, + [44497] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(1470), 1, + anon_sym_COMMA, + ACTIONS(1499), 1, + aux_sym_of_token1, + ACTIONS(1501), 1, + aux_sym_on_statement_token1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + STATE(2995), 1, + aux_sym_on_statement_repeat1, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(811), 2, + STATE(818), 2, sym_comment, sym_include, - ACTIONS(1483), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -83256,19 +83979,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44285] = 6, + [44568] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(203), 1, + ACTIONS(109), 1, aux_sym_variable_definition_token2, - STATE(812), 2, + STATE(819), 2, sym_comment, sym_include, - ACTIONS(205), 28, + ACTIONS(111), 28, sym__terminator, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, @@ -83297,76 +84020,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_do_tuning_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [44332] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1374), 1, - sym_identifier, - ACTIONS(1378), 1, - aux_sym_primitive_type_token19, - STATE(823), 1, - aux_sym_method_definition_repeat1, - STATE(1573), 1, - sym_method_tuning, - STATE(4104), 1, - sym_primitive_type, - STATE(4299), 1, - sym_qualified_name, - STATE(813), 2, - sym_comment, - sym_include, - ACTIONS(1380), 4, - aux_sym_scope_tuning_token4, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - ACTIONS(1376), 18, - aux_sym_primitive_type_token1, - aux_sym_primitive_type_token2, - aux_sym_primitive_type_token3, - aux_sym_primitive_type_token4, - aux_sym_primitive_type_token5, - aux_sym_primitive_type_token6, - aux_sym_primitive_type_token7, - aux_sym_primitive_type_token8, - aux_sym_primitive_type_token9, - aux_sym_primitive_type_token10, - aux_sym_primitive_type_token11, - aux_sym_primitive_type_token12, - aux_sym_primitive_type_token13, - aux_sym_primitive_type_token14, - aux_sym_primitive_type_token15, - aux_sym_primitive_type_token16, - aux_sym_primitive_type_token17, - aux_sym_primitive_type_token18, - [44390] = 6, + [44615] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1485), 1, - sym__namecolon, - ACTIONS(92), 2, + STATE(446), 1, + sym__comparison_operator, + STATE(447), 1, + sym__multiplicative_operator, + STATE(449), 1, + sym__additive_operator, + STATE(450), 1, + sym__logical_operator, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(814), 3, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(820), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(90), 25, - anon_sym_SLASH, + ACTIONS(1503), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, - anon_sym_STAR, anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, + aux_sym_include_argument_token1, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83382,39 +84067,30 @@ 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_include_argument_token1, - [44436] = 13, + [44674] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, - sym__logical_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(1410), 1, + sym__namedot, + STATE(823), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(815), 2, + STATE(821), 2, sym_comment, sym_include, - ACTIONS(1125), 3, + ACTIONS(79), 24, + anon_sym_SLASH, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(305), 15, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83430,27 +84106,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44496] = 8, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [44724] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1386), 1, - sym__namedot, - STATE(834), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(99), 2, - sym__or_operator, - sym__and_operator, - STATE(816), 2, + STATE(822), 2, sym_comment, sym_include, - ACTIONS(97), 24, + ACTIONS(117), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(115), 25, anon_sym_SLASH, sym_identifier, anon_sym_STAR, + anon_sym_LPAREN, aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, @@ -83472,23 +84149,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [44546] = 7, + [44770] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1488), 1, + ACTIONS(1505), 1, sym__namedot, - ACTIONS(81), 2, + ACTIONS(100), 2, sym__or_operator, sym__and_operator, - STATE(817), 3, + STATE(823), 3, sym_comment, sym_include, aux_sym_qualified_name_repeat1, - ACTIONS(79), 24, + ACTIONS(98), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -83513,38 +84190,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [44594] = 13, + [44818] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, + STATE(358), 1, sym__logical_operator, - ACTIONS(285), 2, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(818), 2, + STATE(824), 2, sym_comment, sym_include, - ACTIONS(1131), 3, + ACTIONS(1129), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83560,34 +84237,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44654] = 12, + [44878] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1374), 1, + ACTIONS(1394), 1, sym_identifier, - ACTIONS(1378), 1, + ACTIONS(1398), 1, aux_sym_primitive_type_token19, - STATE(1142), 1, + STATE(1219), 1, aux_sym_method_definition_repeat1, - STATE(1573), 1, + STATE(1610), 1, sym_method_tuning, - STATE(4104), 1, + STATE(4088), 1, sym_primitive_type, - STATE(4299), 1, + STATE(4718), 1, sym_qualified_name, - STATE(819), 2, + STATE(825), 2, sym_comment, sym_include, - ACTIONS(1380), 4, + ACTIONS(1400), 4, aux_sym_scope_tuning_token4, aux_sym_property_type_token1, aux_sym_property_type_token2, aux_sym_method_tuning_token1, - ACTIONS(1376), 18, + ACTIONS(1396), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -83606,69 +84283,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [44712] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, - sym__logical_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(820), 2, - sym_comment, - sym_include, - ACTIONS(1123), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(305), 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, - [44772] = 7, + [44936] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1435), 1, + ACTIONS(1418), 1, sym__namecolon, - STATE(814), 1, + STATE(839), 1, aux_sym_object_access_repeat1, - ACTIONS(103), 2, + ACTIONS(107), 2, sym__or_operator, sym__and_operator, - STATE(821), 2, + STATE(826), 2, sym_comment, sym_include, - ACTIONS(101), 25, + ACTIONS(105), 25, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -83694,81 +84324,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [44820] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, - sym__logical_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(822), 2, - sym_comment, - sym_include, - ACTIONS(1491), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(305), 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, - [44880] = 12, + [44984] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1374), 1, + ACTIONS(1394), 1, sym_identifier, - ACTIONS(1378), 1, + ACTIONS(1398), 1, aux_sym_primitive_type_token19, - STATE(1142), 1, + STATE(825), 1, aux_sym_method_definition_repeat1, - STATE(1573), 1, + STATE(1610), 1, sym_method_tuning, - STATE(4167), 1, + STATE(4201), 1, sym_primitive_type, - STATE(4299), 1, + STATE(4718), 1, sym_qualified_name, - STATE(823), 2, + STATE(827), 2, sym_comment, sym_include, - ACTIONS(1380), 4, + ACTIONS(1400), 4, aux_sym_scope_tuning_token4, aux_sym_property_type_token1, aux_sym_property_type_token2, aux_sym_method_tuning_token1, - ACTIONS(1376), 18, + ACTIONS(1396), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -83787,45 +84370,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [44938] = 15, - ACTIONS(59), 1, + [45042] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(355), 1, + STATE(358), 1, sym__logical_operator, - STATE(448), 1, + STATE(359), 1, sym__additive_operator, - STATE(453), 1, + STATE(360), 1, sym__multiplicative_operator, - STATE(489), 1, + STATE(361), 1, sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(161), 2, sym__or_operator, sym__and_operator, - STATE(824), 2, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(828), 2, sym_comment, sym_include, - ACTIONS(1493), 3, - anon_sym_COMMA, - aux_sym_of_token1, - aux_sym_on_statement_token1, - ACTIONS(307), 13, + ACTIONS(159), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(299), 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, @@ -83836,38 +84417,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45002] = 13, + [45102] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, + STATE(358), 1, sym__logical_operator, - ACTIONS(285), 2, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(825), 2, + STATE(829), 2, sym_comment, sym_include, - ACTIONS(1119), 3, + ACTIONS(1139), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83883,24 +84464,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45062] = 8, + [45162] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1386), 1, + ACTIONS(1410), 1, sym__namedot, - STATE(834), 1, + STATE(821), 1, aux_sym_qualified_name_repeat1, - ACTIONS(88), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(826), 2, + STATE(830), 2, sym_comment, sym_include, - ACTIONS(86), 24, + ACTIONS(83), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -83925,36 +84506,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [45112] = 12, + [45212] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, + ACTIONS(1394), 1, + sym_identifier, + ACTIONS(1398), 1, + aux_sym_primitive_type_token19, + STATE(1219), 1, + aux_sym_method_definition_repeat1, + STATE(1610), 1, + sym_method_tuning, + STATE(4201), 1, + sym_primitive_type, + STATE(4718), 1, + sym_qualified_name, + STATE(831), 2, + sym_comment, + sym_include, + ACTIONS(1400), 4, + aux_sym_scope_tuning_token4, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + ACTIONS(1396), 18, + aux_sym_primitive_type_token1, + aux_sym_primitive_type_token2, + aux_sym_primitive_type_token3, + aux_sym_primitive_type_token4, + aux_sym_primitive_type_token5, + aux_sym_primitive_type_token6, + aux_sym_primitive_type_token7, + aux_sym_primitive_type_token8, + aux_sym_primitive_type_token9, + aux_sym_primitive_type_token10, + aux_sym_primitive_type_token11, + aux_sym_primitive_type_token12, + aux_sym_primitive_type_token13, + aux_sym_primitive_type_token14, + aux_sym_primitive_type_token15, + aux_sym_primitive_type_token16, + aux_sym_primitive_type_token17, + aux_sym_primitive_type_token18, + [45270] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(358), 1, sym__logical_operator, - ACTIONS(285), 2, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(289), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(827), 2, + STATE(832), 2, sym_comment, sym_include, - ACTIONS(293), 18, + ACTIONS(1137), 3, sym_identifier, sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83970,29 +84599,85 @@ 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, - [45170] = 6, + [45330] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(828), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namecolon, + STATE(358), 1, + sym__logical_operator, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - ACTIONS(115), 25, - anon_sym_SLASH, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(833), 2, + sym_comment, + sym_include, + ACTIONS(1131), 3, sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(299), 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, + [45390] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(358), 1, + sym__logical_operator, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(293), 2, + anon_sym_SLASH, anon_sym_STAR, - anon_sym_LPAREN, - aux_sym_input_expression_token2, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(834), 2, + sym_comment, + sym_include, + ACTIONS(1508), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84008,41 +84693,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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [45216] = 13, + [45450] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, + STATE(358), 1, sym__logical_operator, - ACTIONS(285), 2, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(829), 2, + STATE(835), 2, sym_comment, sym_include, - ACTIONS(1133), 3, + ACTIONS(1135), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(305), 15, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84058,32 +84740,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45276] = 10, + [45510] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, - sym__logical_operator, - ACTIONS(297), 2, + ACTIONS(1410), 1, + sym__namedot, + STATE(821), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - STATE(830), 2, + STATE(836), 2, sym_comment, sym_include, - ACTIONS(295), 22, + ACTIONS(87), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -84101,33 +84779,34 @@ 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, - [45330] = 11, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [45560] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, + STATE(358), 1, sym__logical_operator, - ACTIONS(285), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(299), 2, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(321), 2, sym__or_operator, sym__and_operator, - STATE(831), 2, + STATE(837), 2, sym_comment, sym_include, - ACTIONS(301), 20, + ACTIONS(319), 22, + anon_sym_SLASH, sym_identifier, + anon_sym_STAR, sym__terminator, anon_sym_PLUS, anon_sym_DASH, @@ -84147,38 +84826,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [45386] = 13, + [45614] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(391), 1, - sym__comparison_operator, - STATE(392), 1, - sym__multiplicative_operator, - STATE(393), 1, - sym__additive_operator, - STATE(394), 1, + STATE(358), 1, sym__logical_operator, - ACTIONS(153), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(285), 2, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(323), 2, + sym__or_operator, + sym__and_operator, ACTIONS(1121), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(832), 2, + STATE(838), 2, sym_comment, sym_include, - ACTIONS(151), 3, + ACTIONS(325), 18, sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(305), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84194,38 +84871,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45446] = 13, + anon_sym_NO_DASHERROR, + [45672] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(1510), 1, + sym__namecolon, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(839), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(91), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [45718] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(391), 1, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(439), 1, sym__comparison_operator, - STATE(392), 1, + STATE(440), 1, sym__multiplicative_operator, - STATE(393), 1, + STATE(441), 1, sym__additive_operator, - STATE(394), 1, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(840), 2, + sym_comment, + sym_include, + ACTIONS(1513), 3, + anon_sym_COMMA, + aux_sym_of_token1, + aux_sym_on_statement_token1, + ACTIONS(301), 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, + [45782] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(358), 1, sym__logical_operator, - ACTIONS(285), 2, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(293), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(309), 2, + ACTIONS(315), 2, sym__or_operator, sym__and_operator, - ACTIONS(1121), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(833), 2, + STATE(841), 2, sym_comment, sym_include, - ACTIONS(1127), 3, + ACTIONS(317), 20, sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(305), 15, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84241,30 +85005,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45506] = 8, + anon_sym_NO_DASHERROR, + [45838] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1386), 1, - sym__namedot, - STATE(817), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(107), 2, + STATE(358), 1, + sym__logical_operator, + STATE(359), 1, + sym__additive_operator, + STATE(360), 1, + sym__multiplicative_operator, + STATE(361), 1, + sym__comparison_operator, + ACTIONS(293), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(834), 2, + ACTIONS(1121), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(842), 2, sym_comment, sym_include, - ACTIONS(105), 24, - anon_sym_SLASH, + ACTIONS(1133), 3, sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(299), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84280,20 +85053,17 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [45556] = 5, + [45898] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(835), 2, + STATE(843), 2, sym_comment, sym_include, - ACTIONS(1495), 27, + ACTIONS(1515), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -84321,19 +85091,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45599] = 6, + [45941] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1497), 1, + ACTIONS(1517), 1, ts_builtin_sym_end, - STATE(836), 2, + STATE(844), 2, sym_comment, sym_include, - ACTIONS(1499), 26, + ACTIONS(1519), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -84360,19 +85130,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45644] = 6, + [45986] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1501), 1, + ACTIONS(1521), 1, ts_builtin_sym_end, - STATE(837), 2, + STATE(845), 2, sym_comment, sym_include, - ACTIONS(1503), 26, + ACTIONS(1523), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -84399,19 +85169,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45689] = 5, + [46031] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(838), 2, + ACTIONS(1525), 1, + ts_builtin_sym_end, + STATE(846), 2, sym_comment, sym_include, - ACTIONS(1505), 27, + ACTIONS(1527), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -84437,19 +85208,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45732] = 5, + [46076] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(839), 2, + ACTIONS(1529), 1, + ts_builtin_sym_end, + STATE(847), 2, sym_comment, sym_include, - ACTIONS(1507), 27, + ACTIONS(1531), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -84475,19 +85247,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45775] = 5, + [46121] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(840), 2, + ACTIONS(1533), 1, + ts_builtin_sym_end, + STATE(848), 2, sym_comment, sym_include, - ACTIONS(1509), 27, + ACTIONS(1535), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -84513,19 +85286,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45818] = 5, + [46166] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1537), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + STATE(849), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [46229] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(841), 2, + ACTIONS(1539), 1, + ts_builtin_sym_end, + STATE(850), 2, sym_comment, sym_include, - ACTIONS(1511), 27, + ACTIONS(1541), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -84551,19 +85373,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45861] = 6, + [46274] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1513), 1, + ACTIONS(1543), 1, ts_builtin_sym_end, - STATE(842), 2, + STATE(851), 2, sym_comment, sym_include, - ACTIONS(1515), 26, + ACTIONS(1545), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -84590,19 +85412,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45906] = 6, + [46319] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1517), 1, + ACTIONS(1547), 1, ts_builtin_sym_end, - STATE(843), 2, + STATE(852), 2, sym_comment, sym_include, - ACTIONS(1519), 26, + ACTIONS(1549), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -84629,19 +85451,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45951] = 5, + [46364] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(844), 2, + ACTIONS(1551), 1, + ts_builtin_sym_end, + STATE(853), 2, sym_comment, sym_include, - ACTIONS(1521), 27, + ACTIONS(1553), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -84667,19 +85490,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45994] = 5, + [46409] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(845), 2, + ACTIONS(1555), 1, + ts_builtin_sym_end, + STATE(854), 2, sym_comment, sym_include, - ACTIONS(1523), 27, + ACTIONS(1557), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -84705,67 +85529,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46037] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1525), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(846), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [46100] = 5, + [46454] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(847), 2, + ACTIONS(1559), 1, + ts_builtin_sym_end, + STATE(855), 2, sym_comment, sym_include, - ACTIONS(1527), 27, + ACTIONS(1561), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -84791,19 +85568,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46143] = 5, + [46499] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(848), 2, + ACTIONS(1563), 1, + ts_builtin_sym_end, + STATE(856), 2, sym_comment, sym_include, - ACTIONS(1529), 27, + ACTIONS(1565), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -84829,19 +85607,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46186] = 5, + [46544] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(849), 2, + ACTIONS(1567), 1, + ts_builtin_sym_end, + STATE(857), 2, sym_comment, sym_include, - ACTIONS(1531), 27, + ACTIONS(1569), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -84867,115 +85646,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46229] = 15, - ACTIONS(59), 1, + [46589] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1533), 2, - sym__terminator, - aux_sym_output_stream_statement_token1, - STATE(850), 2, + ACTIONS(1571), 1, + ts_builtin_sym_end, + STATE(858), 2, sym_comment, sym_include, - ACTIONS(307), 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, - [46292] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1535), 2, - anon_sym_COLON, + ACTIONS(1573), 26, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, - STATE(851), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [46355] = 6, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [46634] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1537), 1, + ACTIONS(1575), 1, ts_builtin_sym_end, - STATE(852), 2, + STATE(859), 2, sym_comment, sym_include, - ACTIONS(1539), 26, + ACTIONS(1577), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -85002,19 +85724,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46400] = 6, + [46679] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1541), 1, + ACTIONS(1579), 1, ts_builtin_sym_end, - STATE(853), 2, + STATE(860), 2, sym_comment, sym_include, - ACTIONS(1543), 26, + ACTIONS(1581), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -85041,19 +85763,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46445] = 5, + [46724] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(854), 2, + ACTIONS(1583), 1, + ts_builtin_sym_end, + STATE(861), 2, sym_comment, sym_include, - ACTIONS(1545), 27, + ACTIONS(1585), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85079,19 +85802,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46488] = 5, + [46769] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(855), 2, + ACTIONS(1587), 1, + ts_builtin_sym_end, + STATE(862), 2, sym_comment, sym_include, - ACTIONS(1547), 27, + ACTIONS(1589), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85117,19 +85841,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46531] = 5, + [46814] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(856), 2, + ACTIONS(1591), 1, + ts_builtin_sym_end, + STATE(863), 2, sym_comment, sym_include, - ACTIONS(1549), 27, + ACTIONS(1593), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85155,19 +85880,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46574] = 5, + [46859] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(857), 2, + ACTIONS(1595), 1, + ts_builtin_sym_end, + STATE(864), 2, sym_comment, sym_include, - ACTIONS(1551), 27, + ACTIONS(1597), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85193,19 +85919,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46617] = 5, + [46904] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(858), 2, + ACTIONS(1599), 1, + ts_builtin_sym_end, + STATE(865), 2, sym_comment, sym_include, - ACTIONS(1553), 27, + ACTIONS(1601), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85231,68 +85958,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46660] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1525), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(859), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [46723] = 6, + [46949] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1555), 1, - ts_builtin_sym_end, - STATE(860), 2, + STATE(866), 2, sym_comment, sym_include, - ACTIONS(1557), 26, + ACTIONS(1603), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85318,19 +85996,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46768] = 6, + [46992] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1559), 1, + ACTIONS(1605), 1, ts_builtin_sym_end, - STATE(861), 2, + STATE(867), 2, sym_comment, sym_include, - ACTIONS(1561), 26, + ACTIONS(1607), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -85357,20 +86035,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46813] = 6, + [47037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, - ts_builtin_sym_end, - STATE(862), 2, + STATE(868), 2, sym_comment, sym_include, - ACTIONS(1565), 26, + ACTIONS(1609), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85396,17 +86073,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46858] = 5, + [47080] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(863), 2, + STATE(869), 2, sym_comment, sym_include, - ACTIONS(1567), 27, + ACTIONS(1611), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -85434,17 +86111,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46901] = 5, + [47123] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(864), 2, + STATE(870), 2, sym_comment, sym_include, - ACTIONS(1569), 27, + ACTIONS(1613), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -85472,19 +86149,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46944] = 5, + [47166] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(865), 2, + ACTIONS(1615), 1, + aux_sym_function_call_token1, + ACTIONS(155), 2, + sym__or_operator, + sym__and_operator, + STATE(871), 2, sym_comment, sym_include, - ACTIONS(1571), 27, + ACTIONS(153), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [47213] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1617), 1, + anon_sym_NO_DASHERROR, + ACTIONS(193), 2, + sym__or_operator, + sym__and_operator, + STATE(872), 2, + sym_comment, + sym_include, + ACTIONS(191), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [47260] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1619), 1, + ts_builtin_sym_end, + STATE(873), 2, + sym_comment, + sym_include, + ACTIONS(1621), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85510,19 +86268,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46987] = 5, + [47305] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(866), 2, + ACTIONS(1623), 1, + ts_builtin_sym_end, + STATE(874), 2, sym_comment, sym_include, - ACTIONS(1573), 27, + ACTIONS(1625), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85548,58 +86307,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47030] = 6, + [47350] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1575), 1, - sym__namedot, - ACTIONS(81), 2, - sym__or_operator, - sym__and_operator, - STATE(867), 3, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1627), 1, + ts_builtin_sym_end, + STATE(875), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(79), 24, - anon_sym_SLASH, + ACTIONS(1629), 26, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47395] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1631), 1, + ts_builtin_sym_end, + STATE(876), 2, + sym_comment, + sym_include, + ACTIONS(1633), 26, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_include_argument_token1, - [47075] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47440] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(868), 2, + ACTIONS(1635), 1, + ts_builtin_sym_end, + STATE(877), 2, sym_comment, sym_include, - ACTIONS(1578), 27, + ACTIONS(1637), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85625,59 +86424,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47118] = 7, + [47485] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1433), 1, - sym__namedot, - STATE(867), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(107), 2, - sym__or_operator, - sym__and_operator, - STATE(869), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1639), 1, + ts_builtin_sym_end, + STATE(878), 2, sym_comment, sym_include, - ACTIONS(105), 24, - anon_sym_SLASH, + ACTIONS(1641), 26, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47530] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1643), 1, + ts_builtin_sym_end, + STATE(879), 2, + sym_comment, + sym_include, + ACTIONS(1645), 26, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_include_argument_token1, - [47165] = 5, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47575] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(870), 2, + ACTIONS(1647), 1, + ts_builtin_sym_end, + STATE(880), 2, sym_comment, sym_include, - ACTIONS(1499), 27, + ACTIONS(1649), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85703,17 +86541,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47208] = 5, + [47620] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(871), 2, + ACTIONS(1651), 1, + ts_builtin_sym_end, + STATE(881), 2, sym_comment, sym_include, - ACTIONS(1580), 27, + ACTIONS(1515), 26, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [47665] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(882), 2, + sym_comment, + sym_include, + ACTIONS(1653), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -85741,19 +86618,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47251] = 6, + [47708] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1582), 1, + ACTIONS(1655), 1, ts_builtin_sym_end, - STATE(872), 2, + STATE(883), 2, sym_comment, sym_include, - ACTIONS(1523), 26, + ACTIONS(1657), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -85780,19 +86657,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47296] = 6, + [47753] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1584), 1, + ACTIONS(1659), 1, ts_builtin_sym_end, - STATE(873), 2, + STATE(884), 2, sym_comment, sym_include, - ACTIONS(1586), 26, + ACTIONS(1661), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -85819,19 +86696,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47341] = 6, + [47798] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1588), 1, + ACTIONS(1663), 1, ts_builtin_sym_end, - STATE(874), 2, + STATE(885), 2, sym_comment, sym_include, - ACTIONS(1590), 26, + ACTIONS(1665), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -85858,19 +86735,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47386] = 6, + [47843] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1592), 1, + ACTIONS(1667), 1, ts_builtin_sym_end, - STATE(875), 2, + STATE(886), 2, sym_comment, sym_include, - ACTIONS(1594), 26, + ACTIONS(1669), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -85897,19 +86774,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47431] = 6, + [47888] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, + ACTIONS(1671), 1, ts_builtin_sym_end, - STATE(876), 2, + STATE(887), 2, sym_comment, sym_include, - ACTIONS(1598), 26, + ACTIONS(1673), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -85936,19 +86813,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47476] = 6, + [47933] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1600), 1, + ACTIONS(1675), 1, ts_builtin_sym_end, - STATE(877), 2, + STATE(888), 2, sym_comment, sym_include, - ACTIONS(1602), 26, + ACTIONS(1677), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -85975,19 +86852,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47521] = 6, + [47978] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1604), 1, + ACTIONS(1679), 1, ts_builtin_sym_end, - STATE(878), 2, + STATE(889), 2, sym_comment, sym_include, - ACTIONS(1606), 26, + ACTIONS(1681), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86014,19 +86891,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47566] = 5, + [48023] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(879), 2, + ACTIONS(1683), 1, + ts_builtin_sym_end, + STATE(890), 2, sym_comment, sym_include, - ACTIONS(1608), 27, + ACTIONS(1685), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86052,19 +86930,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47609] = 5, + [48068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(880), 2, + ACTIONS(1687), 1, + ts_builtin_sym_end, + STATE(891), 2, sym_comment, sym_include, - ACTIONS(1610), 27, + ACTIONS(1689), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86090,19 +86969,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47652] = 5, + [48113] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(881), 2, + ACTIONS(1691), 1, + anon_sym_NO_DASHERROR, + ACTIONS(629), 2, + sym__or_operator, + sym__and_operator, + STATE(892), 2, sym_comment, sym_include, - ACTIONS(1612), 27, + ACTIONS(627), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [48160] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1693), 1, + ts_builtin_sym_end, + STATE(893), 2, + sym_comment, + sym_include, + ACTIONS(1695), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86128,19 +87048,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47695] = 5, + [48205] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(882), 2, + ACTIONS(1697), 1, + ts_builtin_sym_end, + STATE(894), 2, sym_comment, sym_include, - ACTIONS(1614), 27, + ACTIONS(1699), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86166,19 +87087,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47738] = 5, + [48250] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(883), 2, + ACTIONS(1701), 1, + ts_builtin_sym_end, + STATE(895), 2, sym_comment, sym_include, - ACTIONS(1616), 27, + ACTIONS(1653), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86204,17 +87126,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47781] = 5, + [48295] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(884), 2, + STATE(896), 2, sym_comment, sym_include, - ACTIONS(1618), 27, + ACTIONS(1703), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -86242,19 +87164,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47824] = 5, + [48338] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(885), 2, + ACTIONS(1705), 1, + ts_builtin_sym_end, + STATE(897), 2, sym_comment, sym_include, - ACTIONS(1620), 27, + ACTIONS(1707), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86280,19 +87203,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47867] = 5, + [48383] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(886), 2, + ACTIONS(1709), 1, + ts_builtin_sym_end, + STATE(898), 2, sym_comment, sym_include, - ACTIONS(1622), 27, + ACTIONS(1711), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86318,75 +87242,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47910] = 23, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1356), 1, - aux_sym_buffer_definition_token3, - ACTIONS(1360), 1, - aux_sym_function_parameter_token1, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(1366), 1, - aux_sym_property_definition_token1, - ACTIONS(1368), 1, - aux_sym_event_definition_token1, - STATE(1593), 1, - sym_access_tuning, - STATE(1879), 1, - sym_property_tuning, - STATE(1896), 1, - aux_sym_variable_definition_repeat1, - STATE(1928), 1, - sym_serialization_tuning, - STATE(1973), 1, - sym_scope_tuning, - STATE(2347), 1, - aux_sym_property_definition_repeat1, - STATE(2440), 1, - aux_sym_property_definition_repeat2, - STATE(2855), 1, - sym_property_type, - ACTIONS(1340), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1362), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(887), 2, - sym_comment, - sym_include, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [47989] = 5, + [48428] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(888), 2, + ACTIONS(1713), 1, + ts_builtin_sym_end, + STATE(899), 2, sym_comment, sym_include, - ACTIONS(1624), 27, + ACTIONS(1715), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86412,19 +87281,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48032] = 6, + [48473] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1626), 1, + ACTIONS(1717), 1, ts_builtin_sym_end, - STATE(889), 2, + STATE(900), 2, sym_comment, sym_include, - ACTIONS(1628), 26, + ACTIONS(1719), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86451,19 +87320,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48077] = 6, + [48518] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1630), 1, + ACTIONS(1721), 1, ts_builtin_sym_end, - STATE(890), 2, + STATE(901), 2, sym_comment, sym_include, - ACTIONS(1632), 26, + ACTIONS(1723), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86490,59 +87359,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48122] = 7, + [48563] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1634), 1, - sym__namedot, - ACTIONS(111), 2, - sym__or_operator, - sym__and_operator, - STATE(891), 2, + ACTIONS(1725), 1, + ts_builtin_sym_end, + STATE(902), 2, sym_comment, sym_include, - ACTIONS(109), 24, - anon_sym_SLASH, + ACTIONS(1727), 26, sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [48169] = 5, + 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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [48608] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(892), 2, + ACTIONS(1729), 1, + ts_builtin_sym_end, + STATE(903), 2, sym_comment, sym_include, - ACTIONS(1636), 27, + ACTIONS(1731), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86568,59 +87437,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48212] = 7, + [48653] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1384), 1, - anon_sym_LPAREN, - ACTIONS(77), 2, - sym__or_operator, - sym__and_operator, - STATE(893), 2, + ACTIONS(1733), 1, + ts_builtin_sym_end, + STATE(904), 2, sym_comment, sym_include, - ACTIONS(75), 24, - anon_sym_SLASH, + ACTIONS(1735), 26, sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [48259] = 5, + 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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [48698] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(894), 2, + ACTIONS(1737), 1, + ts_builtin_sym_end, + STATE(905), 2, sym_comment, sym_include, - ACTIONS(1638), 27, + ACTIONS(1703), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86646,19 +87515,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48302] = 6, + [48743] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1640), 1, + ACTIONS(1739), 1, ts_builtin_sym_end, - STATE(895), 2, + STATE(906), 2, sym_comment, sym_include, - ACTIONS(1642), 26, + ACTIONS(1741), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86685,19 +87554,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48347] = 6, + [48788] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1644), 1, + ACTIONS(1743), 1, ts_builtin_sym_end, - STATE(896), 2, + STATE(907), 2, sym_comment, sym_include, - ACTIONS(1646), 26, + ACTIONS(1745), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86724,19 +87593,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48392] = 6, + [48833] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1648), 1, + ACTIONS(1747), 1, ts_builtin_sym_end, - STATE(897), 2, + STATE(908), 2, sym_comment, sym_include, - ACTIONS(1650), 26, + ACTIONS(1749), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86763,19 +87632,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48437] = 5, + [48878] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(898), 2, + ACTIONS(1751), 1, + ts_builtin_sym_end, + STATE(909), 2, sym_comment, sym_include, - ACTIONS(1652), 27, + ACTIONS(1753), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86801,20 +87671,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48480] = 6, + [48923] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1654), 1, - ts_builtin_sym_end, - STATE(899), 2, + STATE(910), 2, sym_comment, sym_include, - ACTIONS(1656), 26, + ACTIONS(1735), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86840,20 +87709,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48525] = 6, + [48966] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1658), 1, - ts_builtin_sym_end, - STATE(900), 2, + STATE(911), 2, sym_comment, sym_include, - ACTIONS(1660), 26, + ACTIONS(1731), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86879,20 +87747,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48570] = 6, + [49009] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1662), 1, - ts_builtin_sym_end, - STATE(901), 2, + STATE(912), 2, sym_comment, sym_include, - ACTIONS(1664), 26, + ACTIONS(1727), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86918,19 +87785,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48615] = 6, + [49052] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1666), 1, + ACTIONS(1755), 1, ts_builtin_sym_end, - STATE(902), 2, + STATE(913), 2, sym_comment, sym_include, - ACTIONS(1668), 26, + ACTIONS(1613), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86957,19 +87824,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48660] = 6, + [49097] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1670), 1, + ACTIONS(1757), 1, ts_builtin_sym_end, - STATE(903), 2, + STATE(914), 2, sym_comment, sym_include, - ACTIONS(1672), 26, + ACTIONS(1611), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86996,19 +87863,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48705] = 6, + [49142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1674), 1, + ACTIONS(1759), 1, ts_builtin_sym_end, - STATE(904), 2, + STATE(915), 2, sym_comment, sym_include, - ACTIONS(1676), 26, + ACTIONS(1609), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -87035,19 +87902,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48750] = 6, + [49187] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1678), 1, + ACTIONS(1761), 1, ts_builtin_sym_end, - STATE(905), 2, + STATE(916), 2, sym_comment, sym_include, - ACTIONS(1680), 26, + ACTIONS(1603), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -87074,19 +87941,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48795] = 6, + [49232] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1682), 1, + ACTIONS(1763), 1, ts_builtin_sym_end, - STATE(906), 2, + STATE(917), 2, sym_comment, sym_include, - ACTIONS(1684), 26, + ACTIONS(1765), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -87113,19 +87980,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48840] = 6, + [49277] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1686), 1, + ACTIONS(1767), 1, ts_builtin_sym_end, - STATE(907), 2, + STATE(918), 2, sym_comment, sym_include, - ACTIONS(1688), 26, + ACTIONS(1769), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -87152,19 +88019,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48885] = 5, + [49322] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(908), 2, + ACTIONS(1771), 1, + ts_builtin_sym_end, + STATE(919), 2, sym_comment, sym_include, - ACTIONS(1690), 27, + ACTIONS(1773), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87190,19 +88058,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48928] = 6, + [49367] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1692), 1, + ACTIONS(1775), 1, ts_builtin_sym_end, - STATE(909), 2, + STATE(920), 2, sym_comment, sym_include, - ACTIONS(1694), 26, + ACTIONS(1777), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -87229,19 +88097,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48973] = 5, + [49412] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(910), 2, + ACTIONS(1779), 1, + ts_builtin_sym_end, + STATE(921), 2, sym_comment, sym_include, - ACTIONS(1696), 27, + ACTIONS(1781), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87267,98 +88136,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49016] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(911), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(115), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_include_argument_token1, - [49059] = 7, + [49457] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1384), 1, - anon_sym_LPAREN, - ACTIONS(67), 2, - sym__or_operator, - sym__and_operator, - STATE(912), 2, + ACTIONS(1783), 1, + ts_builtin_sym_end, + STATE(922), 2, sym_comment, sym_include, - ACTIONS(63), 24, - anon_sym_SLASH, + ACTIONS(1785), 26, sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [49106] = 6, + 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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [49502] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1698), 1, - ts_builtin_sym_end, - STATE(913), 2, + STATE(923), 2, sym_comment, sym_include, - ACTIONS(1509), 26, + ACTIONS(1723), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87384,17 +88213,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49151] = 5, + [49545] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(914), 2, + STATE(924), 2, sym_comment, sym_include, - ACTIONS(1503), 27, + ACTIONS(1719), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87422,17 +88251,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49194] = 5, + [49588] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(915), 2, + STATE(925), 2, sym_comment, sym_include, - ACTIONS(1515), 27, + ACTIONS(1715), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87460,17 +88289,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49237] = 5, + [49631] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(916), 2, + STATE(926), 2, sym_comment, sym_include, - ACTIONS(1519), 27, + ACTIONS(1711), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87498,17 +88327,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49280] = 5, + [49674] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(917), 2, + STATE(927), 2, sym_comment, sym_include, - ACTIONS(1539), 27, + ACTIONS(1707), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87536,19 +88365,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49323] = 5, + [49717] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(918), 2, + ACTIONS(1787), 1, + ts_builtin_sym_end, + STATE(928), 2, sym_comment, sym_include, - ACTIONS(1543), 27, + ACTIONS(1789), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87574,19 +88404,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49366] = 5, + [49762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(919), 2, + ACTIONS(1791), 1, + ts_builtin_sym_end, + STATE(929), 2, sym_comment, sym_include, - ACTIONS(1700), 27, + ACTIONS(1793), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87612,19 +88443,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49409] = 5, + [49807] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(920), 2, + ACTIONS(1795), 1, + ts_builtin_sym_end, + STATE(930), 2, sym_comment, sym_include, - ACTIONS(1557), 27, + ACTIONS(1797), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87650,19 +88482,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49452] = 5, + [49852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(921), 2, + ACTIONS(1799), 1, + ts_builtin_sym_end, + STATE(931), 2, sym_comment, sym_include, - ACTIONS(1702), 27, + ACTIONS(1801), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87688,19 +88521,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49495] = 5, + [49897] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(922), 2, + ACTIONS(1803), 1, + ts_builtin_sym_end, + STATE(932), 2, sym_comment, sym_include, - ACTIONS(1561), 27, + ACTIONS(1805), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87726,17 +88560,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49538] = 5, + [49942] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1807), 1, + sym__namedot, + ACTIONS(100), 2, + sym__or_operator, + sym__and_operator, + STATE(933), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(98), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [49987] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(923), 2, + ACTIONS(1408), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(934), 2, + sym_comment, + sym_include, + ACTIONS(63), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [50034] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(935), 2, sym_comment, sym_include, - ACTIONS(1704), 27, + ACTIONS(1699), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87764,17 +88677,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49581] = 5, + [50077] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(924), 2, + STATE(936), 2, sym_comment, sym_include, - ACTIONS(1706), 27, + ACTIONS(1695), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87802,17 +88715,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49624] = 5, + [50120] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(925), 2, + STATE(937), 2, sym_comment, sym_include, - ACTIONS(1708), 27, + ACTIONS(1689), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87840,17 +88753,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49667] = 5, + [50163] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(926), 2, + STATE(938), 2, sym_comment, sym_include, - ACTIONS(1710), 27, + ACTIONS(1685), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87878,17 +88791,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49710] = 5, + [50206] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(927), 2, + STATE(939), 2, sym_comment, sym_include, - ACTIONS(1712), 27, + ACTIONS(1681), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87916,17 +88829,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49753] = 5, + [50249] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(928), 2, + STATE(940), 2, sym_comment, sym_include, - ACTIONS(1714), 27, + ACTIONS(1677), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87954,19 +88867,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49796] = 5, + [50292] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(929), 2, + ACTIONS(1810), 1, + ts_builtin_sym_end, + STATE(941), 2, sym_comment, sym_include, - ACTIONS(1565), 27, + ACTIONS(1812), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87992,19 +88906,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49839] = 5, + [50337] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(930), 2, + ACTIONS(1814), 1, + ts_builtin_sym_end, + STATE(942), 2, sym_comment, sym_include, - ACTIONS(1716), 27, + ACTIONS(1816), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88030,17 +88945,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49882] = 5, + [50382] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(931), 2, + STATE(943), 2, sym_comment, sym_include, - ACTIONS(1718), 27, + ACTIONS(1673), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88068,17 +88983,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49925] = 5, + [50425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(932), 2, + STATE(944), 2, sym_comment, sym_include, - ACTIONS(1586), 27, + ACTIONS(1669), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88106,17 +89021,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49968] = 5, + [50468] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(933), 2, + STATE(945), 2, sym_comment, sym_include, - ACTIONS(1720), 27, + ACTIONS(1665), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88144,19 +89059,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50011] = 5, + [50511] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(934), 2, + ACTIONS(1818), 1, + ts_builtin_sym_end, + STATE(946), 2, sym_comment, sym_include, - ACTIONS(1722), 27, + ACTIONS(1820), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88182,19 +89098,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50054] = 5, + [50556] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(935), 2, + ACTIONS(1822), 1, + ts_builtin_sym_end, + STATE(947), 2, sym_comment, sym_include, - ACTIONS(1724), 27, + ACTIONS(1824), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88220,19 +89137,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50097] = 5, + [50601] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(936), 2, + ACTIONS(1826), 1, + ts_builtin_sym_end, + STATE(948), 2, sym_comment, sym_include, - ACTIONS(1726), 27, + ACTIONS(1828), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88258,19 +89176,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50140] = 5, + [50646] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(937), 2, + ACTIONS(1830), 1, + ts_builtin_sym_end, + STATE(949), 2, sym_comment, sym_include, - ACTIONS(1728), 27, + ACTIONS(1832), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88296,19 +89215,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50183] = 6, + [50691] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1730), 1, + ACTIONS(1834), 1, ts_builtin_sym_end, - STATE(938), 2, + STATE(950), 2, sym_comment, sym_include, - ACTIONS(1732), 26, + ACTIONS(1836), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -88335,20 +89254,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50228] = 6, + [50736] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1734), 1, - ts_builtin_sym_end, - STATE(939), 2, + STATE(951), 2, sym_comment, sym_include, - ACTIONS(1736), 26, + ACTIONS(1661), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88374,20 +89292,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50273] = 6, + [50779] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1738), 1, - ts_builtin_sym_end, - STATE(940), 2, + STATE(952), 2, sym_comment, sym_include, - ACTIONS(1740), 26, + ACTIONS(1657), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88413,55 +89330,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50318] = 5, + [50822] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(941), 2, + ACTIONS(1408), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(953), 2, sym_comment, sym_include, - ACTIONS(1590), 27, + ACTIONS(75), 24, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [50361] = 5, + aux_sym_widget_field_token1, + [50869] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(942), 2, + STATE(954), 2, sym_comment, sym_include, - ACTIONS(1594), 27, + ACTIONS(1765), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88489,19 +89408,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50404] = 5, + [50912] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(943), 2, + ACTIONS(1838), 1, + ts_builtin_sym_end, + STATE(955), 2, sym_comment, sym_include, - ACTIONS(1598), 27, + ACTIONS(1840), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88527,20 +89447,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50447] = 6, + [50957] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1742), 1, - ts_builtin_sym_end, - STATE(944), 2, + STATE(956), 2, sym_comment, sym_include, - ACTIONS(1744), 26, + ACTIONS(1649), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88566,17 +89485,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50492] = 5, + [51000] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(945), 2, + STATE(957), 2, sym_comment, sym_include, - ACTIONS(1602), 27, + ACTIONS(1645), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88604,20 +89523,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50535] = 6, + [51043] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1746), 1, - ts_builtin_sym_end, - STATE(946), 2, + STATE(958), 2, sym_comment, sym_include, - ACTIONS(1748), 26, + ACTIONS(1641), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88643,17 +89561,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50580] = 5, + [51086] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(947), 2, + STATE(959), 2, sym_comment, sym_include, - ACTIONS(1750), 27, + ACTIONS(1637), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88681,58 +89599,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50623] = 5, + [51129] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(948), 2, + ACTIONS(1842), 1, + sym__namedot, + ACTIONS(111), 2, + sym__or_operator, + sym__and_operator, + STATE(960), 2, sym_comment, sym_include, - ACTIONS(1606), 27, + ACTIONS(109), 24, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [50666] = 6, + aux_sym_widget_field_token1, + [51176] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1752), 1, - ts_builtin_sym_end, - STATE(949), 2, + STATE(961), 2, sym_comment, sym_include, - ACTIONS(1754), 26, + ACTIONS(1633), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88758,19 +89677,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50711] = 5, + [51219] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(950), 2, + ACTIONS(1844), 1, + ts_builtin_sym_end, + STATE(962), 2, sym_comment, sym_include, - ACTIONS(1756), 27, + ACTIONS(1846), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88796,20 +89716,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50754] = 6, + [51264] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1758), 1, - ts_builtin_sym_end, - STATE(951), 2, + STATE(963), 2, sym_comment, sym_include, - ACTIONS(1760), 26, + ACTIONS(1629), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88835,20 +89754,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50799] = 6, + [51307] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1762), 1, - ts_builtin_sym_end, - STATE(952), 2, + STATE(964), 2, sym_comment, sym_include, - ACTIONS(1764), 26, + ACTIONS(1625), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88874,19 +89792,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50844] = 6, + [51350] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1766), 1, + ACTIONS(1848), 1, ts_builtin_sym_end, - STATE(953), 2, + STATE(965), 2, sym_comment, sym_include, - ACTIONS(1768), 26, + ACTIONS(1850), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -88913,20 +89831,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50889] = 6, + [51395] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1770), 1, - ts_builtin_sym_end, - STATE(954), 2, + STATE(966), 2, sym_comment, sym_include, - ACTIONS(1772), 26, + ACTIONS(1621), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88952,20 +89869,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50934] = 6, + [51438] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1774), 1, - ts_builtin_sym_end, - STATE(955), 2, + STATE(967), 2, sym_comment, sym_include, - ACTIONS(1776), 26, + ACTIONS(1607), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88991,17 +89907,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50979] = 5, + [51481] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(956), 2, + STATE(968), 2, sym_comment, sym_include, - ACTIONS(1778), 27, + ACTIONS(1852), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89029,17 +89945,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51022] = 5, + [51524] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(957), 2, + STATE(969), 2, sym_comment, sym_include, - ACTIONS(1656), 27, + ACTIONS(1601), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89067,19 +89983,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51065] = 6, + [51567] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1780), 1, + ACTIONS(1854), 1, ts_builtin_sym_end, - STATE(958), 2, + STATE(970), 2, sym_comment, sym_include, - ACTIONS(1782), 26, + ACTIONS(1856), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -89106,19 +90022,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51110] = 5, + [51612] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(959), 2, + ACTIONS(1858), 1, + ts_builtin_sym_end, + STATE(971), 2, sym_comment, sym_include, - ACTIONS(1784), 27, + ACTIONS(1860), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89144,19 +90061,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51153] = 6, + [51657] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1786), 1, + ACTIONS(1862), 1, ts_builtin_sym_end, - STATE(960), 2, + STATE(972), 2, sym_comment, sym_include, - ACTIONS(1788), 26, + ACTIONS(1864), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -89183,19 +90100,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51198] = 6, + [51702] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1866), 2, + sym__terminator, + aux_sym_output_stream_statement_token1, + STATE(973), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [51765] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1790), 1, + ACTIONS(1868), 1, ts_builtin_sym_end, - STATE(961), 2, + STATE(974), 2, sym_comment, sym_include, - ACTIONS(1792), 26, + ACTIONS(1870), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -89222,19 +90187,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51243] = 5, + [51810] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(962), 2, + ACTIONS(1872), 1, + ts_builtin_sym_end, + STATE(975), 2, sym_comment, sym_include, - ACTIONS(1794), 27, + ACTIONS(1874), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89260,19 +90226,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51286] = 5, + [51855] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(963), 2, + ACTIONS(1876), 1, + ts_builtin_sym_end, + STATE(976), 2, sym_comment, sym_include, - ACTIONS(1660), 27, + ACTIONS(1878), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89298,17 +90265,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51329] = 5, + [51900] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(964), 2, + STATE(977), 2, sym_comment, sym_include, - ACTIONS(1796), 27, + ACTIONS(1597), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89336,17 +90303,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51372] = 5, + [51943] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(965), 2, + STATE(978), 2, sym_comment, sym_include, - ACTIONS(1798), 27, + ACTIONS(1593), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89374,17 +90341,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51415] = 5, + [51986] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(966), 2, + STATE(979), 2, sym_comment, sym_include, - ACTIONS(1800), 27, + ACTIONS(1589), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89412,17 +90379,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51458] = 5, + [52029] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(967), 2, + STATE(980), 2, sym_comment, sym_include, - ACTIONS(1664), 27, + ACTIONS(1585), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89450,17 +90417,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51501] = 5, + [52072] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(968), 2, + STATE(981), 2, sym_comment, sym_include, - ACTIONS(1668), 27, + ACTIONS(1581), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89488,17 +90455,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51544] = 5, + [52115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(969), 2, + STATE(982), 2, sym_comment, sym_include, - ACTIONS(1802), 27, + ACTIONS(1577), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89526,19 +90493,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51587] = 5, + [52158] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(970), 2, + ACTIONS(1880), 1, + ts_builtin_sym_end, + STATE(983), 2, sym_comment, sym_include, - ACTIONS(1804), 27, + ACTIONS(1882), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89564,17 +90532,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51630] = 5, + [52203] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(971), 2, + STATE(984), 2, sym_comment, sym_include, - ACTIONS(1672), 27, + ACTIONS(1884), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89602,17 +90570,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51673] = 5, + [52246] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(972), 2, + STATE(985), 2, sym_comment, sym_include, - ACTIONS(1806), 27, + ACTIONS(1573), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89640,17 +90608,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51716] = 5, + [52289] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(973), 2, + STATE(986), 2, sym_comment, sym_include, - ACTIONS(1808), 27, + ACTIONS(1569), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89678,19 +90646,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51759] = 5, + [52332] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1886), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(987), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [52395] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(974), 2, + ACTIONS(1888), 1, + ts_builtin_sym_end, + STATE(988), 2, sym_comment, sym_include, - ACTIONS(1676), 27, + ACTIONS(1890), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89716,17 +90733,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51802] = 5, + [52440] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(975), 2, + STATE(989), 2, sym_comment, sym_include, - ACTIONS(1810), 27, + ACTIONS(1565), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89754,19 +90771,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51845] = 5, + [52483] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(976), 2, + ACTIONS(1892), 1, + ts_builtin_sym_end, + STATE(990), 2, sym_comment, sym_include, - ACTIONS(1812), 27, + ACTIONS(1894), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89792,17 +90810,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51888] = 5, + [52528] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(977), 2, + STATE(991), 2, sym_comment, sym_include, - ACTIONS(1814), 27, + ACTIONS(1561), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89830,17 +90848,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51931] = 5, + [52571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(978), 2, + STATE(992), 2, sym_comment, sym_include, - ACTIONS(1684), 27, + ACTIONS(1557), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89868,19 +90886,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51974] = 5, + [52614] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(979), 2, + ACTIONS(1896), 1, + ts_builtin_sym_end, + STATE(993), 2, sym_comment, sym_include, - ACTIONS(1816), 27, + ACTIONS(1898), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89906,17 +90925,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52017] = 5, + [52659] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(980), 2, + STATE(994), 2, sym_comment, sym_include, - ACTIONS(1818), 27, + ACTIONS(1900), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89944,17 +90963,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52060] = 5, + [52702] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(981), 2, + STATE(995), 2, sym_comment, sym_include, - ACTIONS(1820), 27, + ACTIONS(1553), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89982,17 +91001,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52103] = 5, + [52745] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(982), 2, + STATE(996), 2, sym_comment, sym_include, - ACTIONS(1688), 27, + ACTIONS(1549), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90020,19 +91039,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52146] = 6, + [52788] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1822), 1, + ACTIONS(1902), 1, ts_builtin_sym_end, - STATE(983), 2, + STATE(997), 2, sym_comment, sym_include, - ACTIONS(1824), 26, + ACTIONS(1904), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90059,17 +91078,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52191] = 5, + [52833] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(984), 2, + STATE(998), 2, sym_comment, sym_include, - ACTIONS(1826), 27, + ACTIONS(1545), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90097,20 +91116,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52234] = 6, + [52876] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1828), 1, - ts_builtin_sym_end, - STATE(985), 2, + STATE(999), 2, sym_comment, sym_include, - ACTIONS(1830), 26, + ACTIONS(1541), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90136,19 +91154,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52279] = 5, + [52919] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(986), 2, + ACTIONS(1906), 1, + ts_builtin_sym_end, + STATE(1000), 2, sym_comment, sym_include, - ACTIONS(1832), 27, + ACTIONS(1908), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90174,19 +91193,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52322] = 5, + [52964] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(987), 2, + ACTIONS(1910), 1, + ts_builtin_sym_end, + STATE(1001), 2, sym_comment, sym_include, - ACTIONS(1834), 27, + ACTIONS(1912), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90212,19 +91232,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52365] = 5, + [53009] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(988), 2, + ACTIONS(1914), 1, + ts_builtin_sym_end, + STATE(1002), 2, sym_comment, sym_include, - ACTIONS(1836), 27, + ACTIONS(1916), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90250,19 +91271,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52408] = 6, + [53054] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1838), 1, + ACTIONS(1918), 1, ts_builtin_sym_end, - STATE(989), 2, + STATE(1003), 2, sym_comment, sym_include, - ACTIONS(1840), 26, + ACTIONS(1920), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90289,19 +91310,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52453] = 6, + [53099] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1842), 1, + ACTIONS(1922), 1, ts_builtin_sym_end, - STATE(990), 2, + STATE(1004), 2, sym_comment, sym_include, - ACTIONS(1844), 26, + ACTIONS(1924), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90328,20 +91349,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52498] = 6, + [53144] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1846), 1, - ts_builtin_sym_end, - STATE(991), 2, + STATE(1005), 2, sym_comment, sym_include, - ACTIONS(1848), 26, + ACTIONS(1769), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90367,17 +91387,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52543] = 5, + [53187] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(992), 2, + STATE(1006), 2, sym_comment, sym_include, - ACTIONS(1732), 27, + ACTIONS(1926), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90405,20 +91425,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52586] = 6, + [53230] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1850), 1, - ts_builtin_sym_end, - STATE(993), 2, + STATE(1007), 2, sym_comment, sym_include, - ACTIONS(1852), 26, + ACTIONS(1928), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90444,19 +91463,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52631] = 5, + [53273] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(994), 2, + ACTIONS(1930), 1, + ts_builtin_sym_end, + STATE(1008), 2, sym_comment, sym_include, - ACTIONS(1854), 27, + ACTIONS(1932), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90482,19 +91502,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52674] = 5, + [53318] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(995), 2, + ACTIONS(1934), 1, + ts_builtin_sym_end, + STATE(1009), 2, sym_comment, sym_include, - ACTIONS(1856), 27, + ACTIONS(1936), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90520,19 +91541,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52717] = 5, + [53363] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(996), 2, + ACTIONS(1938), 1, + ts_builtin_sym_end, + STATE(1010), 2, sym_comment, sym_include, - ACTIONS(1858), 27, + ACTIONS(1940), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90558,19 +91580,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52760] = 5, + [53408] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(997), 2, + ACTIONS(1942), 1, + ts_builtin_sym_end, + STATE(1011), 2, sym_comment, sym_include, - ACTIONS(1860), 27, + ACTIONS(1944), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90596,20 +91619,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52803] = 6, + [53453] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1862), 1, - ts_builtin_sym_end, - STATE(998), 2, + STATE(1012), 2, sym_comment, sym_include, - ACTIONS(1864), 26, + ACTIONS(1535), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90635,17 +91657,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52848] = 5, + [53496] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(999), 2, + STATE(1013), 2, sym_comment, sym_include, - ACTIONS(1736), 27, + ACTIONS(1531), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90673,20 +91695,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52891] = 6, + [53539] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1866), 1, - ts_builtin_sym_end, - STATE(1000), 2, + STATE(1014), 2, sym_comment, sym_include, - ACTIONS(1868), 26, + ACTIONS(1527), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90712,17 +91733,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52936] = 5, + [53582] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1001), 2, + STATE(1015), 2, sym_comment, sym_include, - ACTIONS(1870), 27, + ACTIONS(1523), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90750,17 +91771,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52979] = 5, + [53625] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1002), 2, + STATE(1016), 2, sym_comment, sym_include, - ACTIONS(1740), 27, + ACTIONS(1890), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90788,20 +91809,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53022] = 6, + [53668] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, - ts_builtin_sym_end, - STATE(1003), 2, + STATE(1017), 2, sym_comment, sym_include, - ACTIONS(1874), 26, + ACTIONS(1745), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90827,17 +91847,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53067] = 5, + [53711] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1004), 2, + STATE(1018), 2, sym_comment, sym_include, - ACTIONS(1876), 27, + ACTIONS(1749), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90865,20 +91885,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53110] = 6, + [53754] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1878), 1, - ts_builtin_sym_end, - STATE(1005), 2, + STATE(1019), 2, sym_comment, sym_include, - ACTIONS(1880), 26, + ACTIONS(1785), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90904,17 +91923,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53155] = 5, + [53797] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1006), 2, + STATE(1020), 2, sym_comment, sym_include, - ACTIONS(1744), 27, + ACTIONS(1793), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90942,17 +91961,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53198] = 5, + [53840] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1007), 2, + STATE(1021), 2, sym_comment, sym_include, - ACTIONS(1882), 27, + ACTIONS(1797), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90980,17 +91999,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53241] = 5, + [53883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1008), 2, + STATE(1022), 2, sym_comment, sym_include, - ACTIONS(1884), 27, + ACTIONS(1801), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91018,19 +92037,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53284] = 5, + [53926] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1009), 2, + ACTIONS(1946), 1, + ts_builtin_sym_end, + STATE(1023), 2, sym_comment, sym_include, - ACTIONS(1880), 27, + ACTIONS(1948), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91056,19 +92076,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53327] = 6, + [53971] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1886), 1, + ACTIONS(1950), 1, ts_builtin_sym_end, - STATE(1010), 2, + STATE(1024), 2, sym_comment, sym_include, - ACTIONS(1884), 26, + ACTIONS(1952), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91095,19 +92115,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53372] = 5, + [54016] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1011), 2, + ACTIONS(1954), 1, + ts_builtin_sym_end, + STATE(1025), 2, sym_comment, sym_include, - ACTIONS(1874), 27, + ACTIONS(1956), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91133,19 +92154,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53415] = 5, + [54061] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1012), 2, + ACTIONS(1958), 1, + ts_builtin_sym_end, + STATE(1026), 2, sym_comment, sym_include, - ACTIONS(1868), 27, + ACTIONS(1960), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91171,19 +92193,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53458] = 5, + [54106] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1013), 2, + ACTIONS(1962), 1, + ts_builtin_sym_end, + STATE(1027), 2, sym_comment, sym_include, - ACTIONS(1864), 27, + ACTIONS(1964), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91209,19 +92232,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53501] = 5, + [54151] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1014), 2, + ACTIONS(1966), 1, + ts_builtin_sym_end, + STATE(1028), 2, sym_comment, sym_include, - ACTIONS(1852), 27, + ACTIONS(1968), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91247,19 +92271,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53544] = 5, + [54196] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1015), 2, + ACTIONS(1970), 1, + ts_builtin_sym_end, + STATE(1029), 2, sym_comment, sym_include, - ACTIONS(1848), 27, + ACTIONS(1972), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91285,17 +92310,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53587] = 5, + [54241] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1016), 2, + STATE(1030), 2, sym_comment, sym_include, - ACTIONS(1844), 27, + ACTIONS(1805), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91323,17 +92348,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53630] = 5, + [54284] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1017), 2, + STATE(1031), 2, sym_comment, sym_include, - ACTIONS(1830), 27, + ACTIONS(1812), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91361,20 +92386,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53673] = 6, + [54327] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1888), 1, - ts_builtin_sym_end, - STATE(1018), 2, + STATE(1032), 2, sym_comment, sym_include, - ACTIONS(1890), 26, + ACTIONS(1836), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91400,17 +92424,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53718] = 5, + [54370] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1019), 2, + STATE(1033), 2, sym_comment, sym_include, - ACTIONS(1824), 27, + ACTIONS(1840), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91438,20 +92462,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53761] = 6, + [54413] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1892), 1, - ts_builtin_sym_end, - STATE(1020), 2, + STATE(1034), 2, sym_comment, sym_include, - ACTIONS(1882), 26, + ACTIONS(1870), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91477,20 +92500,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53806] = 6, + [54456] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1894), 1, - ts_builtin_sym_end, - STATE(1021), 2, + STATE(1035), 2, sym_comment, sym_include, - ACTIONS(1876), 26, + ACTIONS(1882), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91516,17 +92538,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53851] = 5, + [54499] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1022), 2, + STATE(1036), 2, sym_comment, sym_include, - ACTIONS(1748), 27, + ACTIONS(1519), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91554,59 +92576,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53894] = 7, + [54542] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1896), 1, - anon_sym_NO_DASHERROR, - ACTIONS(623), 2, - sym__or_operator, - sym__and_operator, - STATE(1023), 2, - sym_comment, - sym_include, - ACTIONS(621), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [53941] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1898), 1, + ACTIONS(1974), 1, ts_builtin_sym_end, - STATE(1024), 2, + STATE(1037), 2, sym_comment, sym_include, - ACTIONS(1860), 26, + ACTIONS(1976), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91633,19 +92615,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53986] = 6, + [54587] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1900), 1, + ACTIONS(1978), 1, ts_builtin_sym_end, - STATE(1025), 2, + STATE(1038), 2, sym_comment, sym_include, - ACTIONS(1858), 26, + ACTIONS(1980), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91672,19 +92654,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54031] = 6, + [54632] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1902), 1, + ACTIONS(1982), 1, ts_builtin_sym_end, - STATE(1026), 2, + STATE(1039), 2, sym_comment, sym_include, - ACTIONS(1856), 26, + ACTIONS(1984), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91711,19 +92693,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54076] = 6, + [54677] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1904), 1, + ACTIONS(1986), 1, ts_builtin_sym_end, - STATE(1027), 2, + STATE(1040), 2, sym_comment, sym_include, - ACTIONS(1854), 26, + ACTIONS(1988), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91750,61 +92732,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54121] = 8, + [54722] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1463), 1, - sym__namecolon, - STATE(1078), 1, - aux_sym_object_access_repeat1, - ACTIONS(103), 2, - sym__or_operator, - sym__and_operator, - STATE(1028), 2, + STATE(1041), 2, sym_comment, sym_include, - ACTIONS(101), 23, - anon_sym_SLASH, + ACTIONS(1894), 27, sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [54170] = 6, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [54765] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1906), 1, - ts_builtin_sym_end, - STATE(1029), 2, + STATE(1042), 2, sym_comment, sym_include, - ACTIONS(1836), 26, + ACTIONS(1898), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91830,20 +92808,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54215] = 6, + [54808] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1908), 1, - ts_builtin_sym_end, - STATE(1030), 2, + STATE(1043), 2, sym_comment, sym_include, - ACTIONS(1834), 26, + ACTIONS(1904), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91869,20 +92846,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54260] = 6, + [54851] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, - ts_builtin_sym_end, - STATE(1031), 2, + STATE(1044), 2, sym_comment, sym_include, - ACTIONS(1832), 26, + ACTIONS(1916), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91908,58 +92884,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54305] = 6, + [54894] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1032), 2, + STATE(1045), 2, sym_comment, sym_include, - ACTIONS(81), 3, - sym__namedot, - sym__or_operator, - sym__and_operator, - ACTIONS(79), 24, - anon_sym_SLASH, + ACTIONS(1741), 27, sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [54350] = 6, + 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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [54937] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1912), 1, + ACTIONS(1990), 1, ts_builtin_sym_end, - STATE(1033), 2, + STATE(1046), 2, sym_comment, sym_include, - ACTIONS(1505), 26, + ACTIONS(1992), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91986,19 +92961,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54395] = 6, + [54982] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(1994), 1, ts_builtin_sym_end, - STATE(1034), 2, + STATE(1047), 2, sym_comment, sym_include, - ACTIONS(1826), 26, + ACTIONS(1996), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92025,20 +93000,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54440] = 6, + [55027] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1916), 1, - ts_builtin_sym_end, - STATE(1035), 2, + STATE(1048), 2, sym_comment, sym_include, - ACTIONS(1820), 26, + ACTIONS(1968), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92064,20 +93038,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54485] = 6, + [55070] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1918), 1, - ts_builtin_sym_end, - STATE(1036), 2, + STATE(1049), 2, sym_comment, sym_include, - ACTIONS(1816), 26, + ACTIONS(1980), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92103,20 +93076,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54530] = 6, + [55113] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - ts_builtin_sym_end, - STATE(1037), 2, + STATE(1050), 2, sym_comment, sym_include, - ACTIONS(1814), 26, + ACTIONS(1998), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92142,20 +93114,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54575] = 6, + [55156] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - ts_builtin_sym_end, - STATE(1038), 2, + STATE(1051), 2, sym_comment, sym_include, - ACTIONS(1812), 26, + ACTIONS(2000), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92181,17 +93152,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54620] = 5, + [55199] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1039), 2, + STATE(1052), 2, sym_comment, sym_include, - ACTIONS(1792), 27, + ACTIONS(2002), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92219,19 +93190,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54663] = 5, + [55242] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1040), 2, + ACTIONS(2004), 1, + ts_builtin_sym_end, + STATE(1053), 2, sym_comment, sym_include, - ACTIONS(1788), 27, + ACTIONS(2006), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92257,19 +93229,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54706] = 5, + [55287] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1041), 2, + ACTIONS(2008), 1, + ts_builtin_sym_end, + STATE(1054), 2, sym_comment, sym_include, - ACTIONS(1782), 27, + ACTIONS(2010), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92295,17 +93268,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54749] = 5, + [55332] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1042), 2, + STATE(1055), 2, sym_comment, sym_include, - ACTIONS(1776), 27, + ACTIONS(2012), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92333,17 +93306,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54792] = 5, + [55375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1043), 2, + STATE(1056), 2, sym_comment, sym_include, - ACTIONS(1772), 27, + ACTIONS(2014), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92371,19 +93344,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54835] = 6, + [55418] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1924), 1, + ACTIONS(2016), 1, ts_builtin_sym_end, - STATE(1044), 2, + STATE(1057), 2, sym_comment, sym_include, - ACTIONS(1810), 26, + ACTIONS(2018), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92410,17 +93383,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54880] = 5, + [55463] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1045), 2, + STATE(1058), 2, sym_comment, sym_include, - ACTIONS(1768), 27, + ACTIONS(2020), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92448,17 +93421,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54923] = 5, + [55506] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1046), 2, + STATE(1059), 2, sym_comment, sym_include, - ACTIONS(1764), 27, + ACTIONS(2022), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92486,17 +93459,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54966] = 5, + [55549] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1047), 2, + STATE(1060), 2, sym_comment, sym_include, - ACTIONS(1760), 27, + ACTIONS(2024), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92524,20 +93497,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55009] = 6, + [55592] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, - ts_builtin_sym_end, - STATE(1048), 2, + STATE(1061), 2, sym_comment, sym_include, - ACTIONS(1808), 26, + ACTIONS(2026), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92563,17 +93535,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55054] = 5, + [55635] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1049), 2, + STATE(1062), 2, sym_comment, sym_include, - ACTIONS(1754), 27, + ACTIONS(2028), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92601,19 +93573,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55097] = 6, + [55678] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1928), 1, + ACTIONS(2030), 1, ts_builtin_sym_end, - STATE(1050), 2, + STATE(1063), 2, sym_comment, sym_include, - ACTIONS(1804), 26, + ACTIONS(1998), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92640,20 +93612,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55142] = 6, + [55723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1930), 1, - ts_builtin_sym_end, - STATE(1051), 2, + STATE(1064), 2, sym_comment, sym_include, - ACTIONS(1802), 26, + ACTIONS(2032), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92679,20 +93650,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55187] = 6, + [55766] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1932), 1, - ts_builtin_sym_end, - STATE(1052), 2, + STATE(1065), 2, sym_comment, sym_include, - ACTIONS(1800), 26, + ACTIONS(2034), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92718,20 +93688,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55232] = 6, + [55809] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1934), 1, - ts_builtin_sym_end, - STATE(1053), 2, + STATE(1066), 2, sym_comment, sym_include, - ACTIONS(1798), 26, + ACTIONS(2036), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92757,59 +93726,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55277] = 7, + [55852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1936), 1, - anon_sym_NO_DASHERROR, - ACTIONS(213), 2, - sym__or_operator, - sym__and_operator, - STATE(1054), 2, + ACTIONS(2038), 1, + ts_builtin_sym_end, + STATE(1067), 2, sym_comment, sym_include, - ACTIONS(211), 24, - anon_sym_SLASH, + ACTIONS(2000), 26, sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [55324] = 6, + 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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [55897] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1938), 1, + ACTIONS(2040), 1, ts_builtin_sym_end, - STATE(1055), 2, + STATE(1068), 2, sym_comment, sym_include, - ACTIONS(1756), 26, + ACTIONS(2002), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92836,19 +93804,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55369] = 6, + [55942] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1940), 1, + ACTIONS(2042), 1, ts_builtin_sym_end, - STATE(1056), 2, + STATE(1069), 2, sym_comment, sym_include, - ACTIONS(1750), 26, + ACTIONS(1900), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92875,19 +93843,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55414] = 6, + [55987] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, + ACTIONS(2044), 1, ts_builtin_sym_end, - STATE(1057), 2, + STATE(1070), 2, sym_comment, sym_include, - ACTIONS(1728), 26, + ACTIONS(2012), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92914,19 +93882,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55459] = 6, + [56032] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1944), 1, + ACTIONS(1480), 1, + sym__namecolon, + STATE(1080), 1, + aux_sym_object_access_repeat1, + ACTIONS(107), 2, + sym__or_operator, + sym__and_operator, + STATE(1071), 2, + sym_comment, + sym_include, + ACTIONS(105), 23, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [56081] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1072), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(98), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [56126] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2046), 1, ts_builtin_sym_end, - STATE(1058), 2, + STATE(1073), 2, sym_comment, sym_include, - ACTIONS(1726), 26, + ACTIONS(2014), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92953,19 +94001,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55504] = 6, + [56171] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1946), 1, + ACTIONS(2048), 1, ts_builtin_sym_end, - STATE(1059), 2, + STATE(1074), 2, sym_comment, sym_include, - ACTIONS(1724), 26, + ACTIONS(2020), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92992,19 +94040,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55549] = 6, + [56216] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1948), 1, + ACTIONS(2050), 1, ts_builtin_sym_end, - STATE(1060), 2, + STATE(1075), 2, sym_comment, sym_include, - ACTIONS(1720), 26, + ACTIONS(2022), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93031,19 +94079,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55594] = 6, + [56261] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1950), 1, + ACTIONS(2052), 1, ts_builtin_sym_end, - STATE(1061), 2, + STATE(1076), 2, sym_comment, sym_include, - ACTIONS(1718), 26, + ACTIONS(2024), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93070,19 +94118,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55639] = 6, + [56306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1952), 1, + ACTIONS(2054), 1, ts_builtin_sym_end, - STATE(1062), 2, + STATE(1077), 2, sym_comment, sym_include, - ACTIONS(1716), 26, + ACTIONS(2026), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93109,19 +94157,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55684] = 6, + [56351] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1416), 1, + sym__namedot, + STATE(1122), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(1078), 2, + sym_comment, + sym_include, + ACTIONS(83), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [56398] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1954), 1, + ACTIONS(2056), 1, ts_builtin_sym_end, - STATE(1063), 2, + STATE(1079), 2, sym_comment, sym_include, - ACTIONS(1714), 26, + ACTIONS(2028), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93148,28 +94236,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55729] = 7, + [56443] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1433), 1, - sym__namedot, - STATE(869), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(99), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2058), 1, + sym__namecolon, + ACTIONS(93), 2, sym__or_operator, sym__and_operator, - STATE(1064), 2, + STATE(1080), 3, sym_comment, sym_include, - ACTIONS(97), 24, + aux_sym_object_access_repeat1, + ACTIONS(91), 23, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -93187,20 +94275,68 @@ 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_include_argument_token1, - [55776] = 6, + anon_sym_NO_DASHERROR, + [56490] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1886), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1081), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [56553] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1956), 1, + ACTIONS(2061), 1, ts_builtin_sym_end, - STATE(1065), 2, + STATE(1082), 2, sym_comment, sym_include, - ACTIONS(1712), 26, + ACTIONS(1928), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93227,19 +94363,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55821] = 6, + [56598] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1958), 1, + ACTIONS(2063), 1, ts_builtin_sym_end, - STATE(1066), 2, + STATE(1083), 2, sym_comment, sym_include, - ACTIONS(1710), 26, + ACTIONS(2032), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93266,19 +94402,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55866] = 6, + [56643] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1960), 1, + ACTIONS(2065), 1, ts_builtin_sym_end, - STATE(1067), 2, + STATE(1084), 2, sym_comment, sym_include, - ACTIONS(1708), 26, + ACTIONS(2034), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93305,19 +94441,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55911] = 6, + [56688] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1962), 1, + ACTIONS(2067), 1, ts_builtin_sym_end, - STATE(1068), 2, + STATE(1085), 2, sym_comment, sym_include, - ACTIONS(1706), 26, + ACTIONS(2036), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93344,20 +94480,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55956] = 6, + [56733] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1964), 1, - ts_builtin_sym_end, - STATE(1069), 2, + STATE(1086), 2, sym_comment, sym_include, - ACTIONS(1610), 26, + ACTIONS(1850), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93383,20 +94518,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56001] = 6, + [56776] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1966), 1, - ts_builtin_sym_end, - STATE(1070), 2, + STATE(1087), 2, sym_comment, sym_include, - ACTIONS(1704), 26, + ACTIONS(1753), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93422,97 +94556,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56046] = 6, + [56819] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1968), 1, - ts_builtin_sym_end, - STATE(1071), 2, + ACTIONS(1416), 1, + sym__namedot, + STATE(1122), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1088), 2, sym_comment, sym_include, - ACTIONS(1700), 26, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [56091] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(87), 24, + anon_sym_SLASH, anon_sym_LBRACE, - STATE(1072), 2, - sym_comment, - sym_include, - ACTIONS(1840), 27, + anon_sym_RBRACE, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [56134] = 6, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [56866] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, - ts_builtin_sym_end, - STATE(1073), 2, + STATE(1089), 2, sym_comment, sym_include, - ACTIONS(1696), 26, + ACTIONS(1816), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93538,20 +94634,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56179] = 6, + [56909] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1972), 1, - ts_builtin_sym_end, - STATE(1074), 2, + STATE(1090), 2, sym_comment, sym_include, - ACTIONS(1690), 26, + ACTIONS(1856), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93577,20 +94672,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56224] = 6, + [56952] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1974), 1, - ts_builtin_sym_end, - STATE(1075), 2, + STATE(1091), 2, sym_comment, sym_include, - ACTIONS(1652), 26, + ACTIONS(1860), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93616,20 +94710,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56269] = 6, + [56995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, - ts_builtin_sym_end, - STATE(1076), 2, + STATE(1092), 2, sym_comment, sym_include, - ACTIONS(1638), 26, + ACTIONS(1864), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93655,20 +94748,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56314] = 6, + [57038] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1978), 1, - ts_builtin_sym_end, - STATE(1077), 2, + STATE(1093), 2, sym_comment, sym_include, - ACTIONS(1636), 26, + ACTIONS(1874), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93694,60 +94786,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56359] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1980), 1, - sym__namecolon, - ACTIONS(92), 2, - sym__or_operator, - sym__and_operator, - STATE(1078), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(90), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [56406] = 6, + [57081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, - ts_builtin_sym_end, - STATE(1079), 2, + STATE(1094), 2, sym_comment, sym_include, - ACTIONS(1624), 26, + ACTIONS(1878), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93773,20 +94824,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56451] = 6, + [57124] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1985), 1, - ts_builtin_sym_end, - STATE(1080), 2, + STATE(1095), 2, sym_comment, sym_include, - ACTIONS(1622), 26, + ACTIONS(1846), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93812,19 +94862,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56496] = 6, + [57167] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1987), 1, + ACTIONS(2069), 1, ts_builtin_sym_end, - STATE(1081), 2, + STATE(1096), 2, sym_comment, sym_include, - ACTIONS(1620), 26, + ACTIONS(1884), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93851,17 +94901,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56541] = 5, + [57212] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1082), 2, + STATE(1097), 2, sym_comment, sym_include, - ACTIONS(1694), 27, + ACTIONS(1832), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -93889,17 +94939,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56584] = 5, + [57255] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1083), 2, + STATE(1098), 2, sym_comment, sym_include, - ACTIONS(1650), 27, + ACTIONS(1908), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -93927,57 +94977,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56627] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1433), 1, - sym__namedot, - STATE(869), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(88), 2, - sym__or_operator, - sym__and_operator, - STATE(1084), 2, - sym_comment, - sym_include, - ACTIONS(86), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_include_argument_token1, - [56674] = 5, + [57298] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1085), 2, + STATE(1099), 2, sym_comment, sym_include, - ACTIONS(1646), 27, + ACTIONS(1912), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94005,20 +95015,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56717] = 6, + [57341] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, - ts_builtin_sym_end, - STATE(1086), 2, + STATE(1100), 2, sym_comment, sym_include, - ACTIONS(1618), 26, + ACTIONS(1920), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94044,17 +95053,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56762] = 5, + [57384] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1087), 2, + STATE(1101), 2, sym_comment, sym_include, - ACTIONS(1680), 27, + ACTIONS(1924), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94082,20 +95091,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56805] = 6, + [57427] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1991), 1, - ts_builtin_sym_end, - STATE(1088), 2, + STATE(1102), 2, sym_comment, sym_include, - ACTIONS(1616), 26, + ACTIONS(1789), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94121,17 +95129,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56850] = 5, + [57470] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1089), 2, + STATE(1103), 2, sym_comment, sym_include, - ACTIONS(1642), 27, + ACTIONS(1932), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94159,20 +95167,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56893] = 6, + [57513] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, - ts_builtin_sym_end, - STATE(1090), 2, + STATE(1104), 2, sym_comment, sym_include, - ACTIONS(1614), 26, + ACTIONS(1828), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94198,20 +95205,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56938] = 6, + [57556] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, - ts_builtin_sym_end, - STATE(1091), 2, + STATE(1105), 2, sym_comment, sym_include, - ACTIONS(1612), 26, + ACTIONS(1936), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94237,20 +95243,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56983] = 6, + [57599] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1997), 1, - ts_builtin_sym_end, - STATE(1092), 2, + STATE(1106), 2, sym_comment, sym_include, - ACTIONS(1608), 26, + ACTIONS(1940), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94276,20 +95281,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57028] = 6, + [57642] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1999), 1, - ts_builtin_sym_end, - STATE(1093), 2, + STATE(1107), 2, sym_comment, sym_include, - ACTIONS(1580), 26, + ACTIONS(1944), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94315,17 +95319,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57073] = 5, + [57685] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1094), 2, + STATE(1108), 2, sym_comment, sym_include, - ACTIONS(1632), 27, + ACTIONS(1948), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94353,17 +95357,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57116] = 5, + [57728] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1095), 2, + STATE(1109), 2, sym_comment, sym_include, - ACTIONS(1628), 27, + ACTIONS(1952), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94391,20 +95395,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57159] = 6, + [57771] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2001), 1, - ts_builtin_sym_end, - STATE(1096), 2, + STATE(1110), 2, sym_comment, sym_include, - ACTIONS(1818), 26, + ACTIONS(1956), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94430,17 +95433,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57204] = 5, + [57814] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1097), 2, + STATE(1111), 2, sym_comment, sym_include, - ACTIONS(1890), 27, + ACTIONS(1960), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94468,20 +95471,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57247] = 6, + [57857] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2003), 1, - ts_builtin_sym_end, - STATE(1098), 2, + STATE(1112), 2, sym_comment, sym_include, - ACTIONS(1806), 26, + ACTIONS(1964), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94507,20 +95509,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57292] = 6, + [57900] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2005), 1, - ts_builtin_sym_end, - STATE(1099), 2, + STATE(1113), 2, sym_comment, sym_include, - ACTIONS(1796), 26, + ACTIONS(1972), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94546,20 +95547,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57337] = 6, + [57943] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2007), 1, - ts_builtin_sym_end, - STATE(1100), 2, + STATE(1114), 2, sym_comment, sym_include, - ACTIONS(1794), 26, + ACTIONS(1976), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94585,20 +95585,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57382] = 6, + [57986] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2009), 1, - ts_builtin_sym_end, - STATE(1101), 2, + STATE(1115), 2, sym_comment, sym_include, - ACTIONS(1784), 26, + ACTIONS(1984), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94624,20 +95623,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57427] = 6, + [58029] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2011), 1, - ts_builtin_sym_end, - STATE(1102), 2, + STATE(1116), 2, sym_comment, sym_include, - ACTIONS(1778), 26, + ACTIONS(1988), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94663,20 +95661,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57472] = 6, + [58072] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2013), 1, - ts_builtin_sym_end, - STATE(1103), 2, + STATE(1117), 2, sym_comment, sym_include, - ACTIONS(1722), 26, + ACTIONS(1992), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94702,20 +95699,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57517] = 6, + [58115] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2015), 1, - ts_builtin_sym_end, - STATE(1104), 2, + STATE(1118), 2, sym_comment, sym_include, - ACTIONS(1702), 26, + ACTIONS(1996), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94741,20 +95737,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57562] = 6, + [58158] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2017), 1, - ts_builtin_sym_end, - STATE(1105), 2, + STATE(1119), 2, sym_comment, sym_include, - ACTIONS(1870), 26, + ACTIONS(2006), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94780,20 +95775,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57607] = 6, + [58201] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2019), 1, - ts_builtin_sym_end, - STATE(1106), 2, + STATE(1120), 2, sym_comment, sym_include, - ACTIONS(1507), 26, + ACTIONS(2010), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94819,20 +95813,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57652] = 6, + [58244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2021), 1, - ts_builtin_sym_end, - STATE(1107), 2, + STATE(1121), 2, sym_comment, sym_include, - ACTIONS(1511), 26, + ACTIONS(2018), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94858,20 +95851,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57697] = 6, + [58287] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1416), 1, + sym__namedot, + STATE(933), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, + sym__or_operator, + sym__and_operator, + STATE(1122), 2, + sym_comment, + sym_include, + ACTIONS(79), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [58334] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, - ts_builtin_sym_end, - STATE(1108), 2, + STATE(1123), 2, sym_comment, sym_include, - ACTIONS(1521), 26, + ACTIONS(1824), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94897,20 +95929,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57742] = 6, + [58377] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2025), 1, - ts_builtin_sym_end, - STATE(1109), 2, + STATE(1124), 2, sym_comment, sym_include, - ACTIONS(1527), 26, + ACTIONS(1820), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94936,19 +95967,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57787] = 6, + [58420] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1125), 2, + sym_comment, + sym_include, + ACTIONS(117), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(115), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [58463] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2027), 1, + ACTIONS(2071), 1, ts_builtin_sym_end, - STATE(1110), 2, + STATE(1126), 2, sym_comment, sym_include, - ACTIONS(1529), 26, + ACTIONS(1852), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94975,20 +96044,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57832] = 6, + [58508] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2029), 1, - ts_builtin_sym_end, - STATE(1111), 2, + ACTIONS(2073), 1, + aux_sym_function_call_token1, + ACTIONS(129), 2, + sym__or_operator, + sym__and_operator, + STATE(1127), 2, sym_comment, sym_include, - ACTIONS(1531), 26, + ACTIONS(127), 24, + anon_sym_SLASH, sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [58555] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1128), 2, + sym_comment, + sym_include, + ACTIONS(1781), 27, + sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95014,20 +96122,113 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57877] = 6, + [58598] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2031), 1, - ts_builtin_sym_end, - STATE(1112), 2, + STATE(1129), 2, + sym_comment, + sym_include, + ACTIONS(1777), 27, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_else_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [58641] = 23, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1368), 1, + aux_sym_buffer_definition_token3, + ACTIONS(1372), 1, + aux_sym_function_parameter_token1, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(1378), 1, + aux_sym_property_definition_token1, + ACTIONS(1380), 1, + aux_sym_event_definition_token1, + STATE(1631), 1, + sym_access_tuning, + STATE(1870), 1, + sym_property_tuning, + STATE(1919), 1, + aux_sym_variable_definition_repeat1, + STATE(1948), 1, + sym_serialization_tuning, + STATE(2013), 1, + sym_scope_tuning, + STATE(2364), 1, + aux_sym_property_definition_repeat1, + STATE(2501), 1, + aux_sym_property_definition_repeat2, + STATE(2782), 1, + sym_property_type, + ACTIONS(1352), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1374), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(1130), 2, + sym_comment, + sym_include, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [58720] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1131), 2, sym_comment, sym_include, - ACTIONS(1495), 26, + ACTIONS(1773), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95053,19 +96254,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57922] = 6, + [58763] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2033), 1, + ACTIONS(2075), 1, ts_builtin_sym_end, - STATE(1113), 2, + STATE(1132), 2, sym_comment, sym_include, - ACTIONS(1545), 26, + ACTIONS(1926), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95092,20 +96293,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57967] = 6, + [58808] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2035), 1, - ts_builtin_sym_end, - STATE(1114), 2, + STATE(1133), 2, sym_comment, sym_include, - ACTIONS(1547), 26, + ACTIONS(2077), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95113,7 +96313,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -95131,19 +96330,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58012] = 6, + [58850] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2037), 1, + ACTIONS(1525), 1, ts_builtin_sym_end, - STATE(1115), 2, + STATE(1134), 2, sym_comment, sym_include, - ACTIONS(1549), 26, + ACTIONS(1527), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95152,7 +96351,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -95170,59 +96368,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58057] = 6, + [58894] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2039), 1, - ts_builtin_sym_end, - STATE(1116), 2, + ACTIONS(143), 2, + sym__or_operator, + sym__and_operator, + STATE(1135), 2, sym_comment, sym_include, - ACTIONS(1551), 26, + ACTIONS(141), 24, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [58102] = 6, + aux_sym_widget_field_token1, + [58938] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2041), 1, - ts_builtin_sym_end, - STATE(1117), 2, + STATE(1136), 2, sym_comment, sym_include, - ACTIONS(1553), 26, + ACTIONS(1541), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95230,7 +96426,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -95248,20 +96443,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58147] = 6, + [58980] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2043), 1, - ts_builtin_sym_end, - STATE(1118), 2, + STATE(1137), 2, sym_comment, sym_include, - ACTIONS(1567), 26, + ACTIONS(1545), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95269,7 +96463,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -95287,19 +96480,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58192] = 6, + [59022] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2045), 1, + ACTIONS(1888), 1, ts_builtin_sym_end, - STATE(1119), 2, + STATE(1138), 2, sym_comment, sym_include, - ACTIONS(1569), 26, + ACTIONS(1890), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95308,7 +96501,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -95326,19 +96518,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58237] = 6, + [59066] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2047), 1, + ACTIONS(1743), 1, ts_builtin_sym_end, - STATE(1120), 2, + STATE(1139), 2, sym_comment, sym_include, - ACTIONS(1571), 26, + ACTIONS(1745), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95347,7 +96539,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -95365,20 +96556,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58282] = 6, + [59110] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, - ts_builtin_sym_end, - STATE(1121), 2, + STATE(1140), 2, sym_comment, sym_include, - ACTIONS(1573), 26, + ACTIONS(1549), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95386,7 +96576,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, @@ -95404,129 +96593,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58327] = 6, + [59152] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2051), 1, - ts_builtin_sym_end, - STATE(1122), 2, - sym_comment, - sym_include, - ACTIONS(1578), 26, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_else_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [58372] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2053), 1, - anon_sym_RPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(1478), 1, + sym__namedot, + STATE(1492), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(1123), 2, + STATE(1141), 2, sym_comment, sym_include, - ACTIONS(307), 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, - [58434] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(83), 22, anon_sym_SLASH, - ACTIONS(287), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2055), 1, - anon_sym_RPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1124), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, @@ -95537,19 +96632,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [58496] = 6, + anon_sym_NO_DASHERROR, + [59200] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2045), 1, + ACTIONS(1591), 1, ts_builtin_sym_end, - STATE(1125), 2, + STATE(1142), 2, sym_comment, sym_include, - ACTIONS(1569), 25, + ACTIONS(1593), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95575,20 +96671,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58540] = 6, + [59244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2057), 1, - ts_builtin_sym_end, - STATE(1126), 2, + STATE(1143), 2, sym_comment, sym_include, - ACTIONS(2059), 25, + ACTIONS(1553), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95613,20 +96708,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58584] = 6, + [59286] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1742), 1, - ts_builtin_sym_end, - STATE(1127), 2, + STATE(1144), 2, sym_comment, sym_include, - ACTIONS(1744), 25, + ACTIONS(2079), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95651,20 +96745,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58628] = 6, + [59328] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2061), 1, - ts_builtin_sym_end, - STATE(1128), 2, + STATE(1145), 2, sym_comment, sym_include, - ACTIONS(2063), 25, + ACTIONS(1557), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95689,54 +96782,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58672] = 5, + [59370] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1129), 2, + ACTIONS(151), 2, + sym__or_operator, + sym__and_operator, + STATE(1146), 2, sym_comment, sym_include, - ACTIONS(1710), 26, + ACTIONS(149), 24, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [58714] = 5, + aux_sym_widget_field_token1, + [59414] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1130), 2, + STATE(1147), 2, sym_comment, sym_include, - ACTIONS(1712), 26, + ACTIONS(1561), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -95763,20 +96857,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58756] = 6, + [59456] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2043), 1, - ts_builtin_sym_end, - STATE(1131), 2, + STATE(1148), 2, sym_comment, sym_include, - ACTIONS(1567), 25, + ACTIONS(1565), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95801,19 +96894,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58800] = 5, + [59498] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1132), 2, + ACTIONS(1595), 1, + ts_builtin_sym_end, + STATE(1149), 2, sym_comment, sym_include, - ACTIONS(1714), 26, + ACTIONS(1597), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95838,19 +96932,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58842] = 5, + [59542] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1133), 2, + ACTIONS(2081), 1, + ts_builtin_sym_end, + STATE(1150), 2, sym_comment, sym_include, - ACTIONS(1716), 26, + ACTIONS(2077), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95875,27 +96970,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58884] = 5, + [59586] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1134), 2, + ACTIONS(2081), 1, + ts_builtin_sym_end, + ACTIONS(2083), 1, + aux_sym_buffer_definition_token2, + ACTIONS(2085), 1, + aux_sym_repeat_statement_token1, + ACTIONS(2087), 1, + aux_sym_do_block_token1, + STATE(1151), 2, sym_comment, sym_include, - ACTIONS(1718), 26, + ACTIONS(2077), 22, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, aux_sym__function_terminator_token1, @@ -95903,7 +97003,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, aux_sym__case_terminator_token1, aux_sym_find_statement_token1, aux_sym_assign_statement_token1, @@ -95912,17 +97011,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58926] = 5, + [59636] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1135), 2, + STATE(1152), 2, sym_comment, sym_include, - ACTIONS(1720), 26, + ACTIONS(1569), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -95949,54 +97048,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58968] = 5, - ACTIONS(3), 1, + [59678] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1136), 2, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2089), 1, + anon_sym_LPAREN, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1153), 2, sym_comment, sym_include, - ACTIONS(2065), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [59010] = 5, + ACTIONS(301), 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, + [59740] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1137), 2, + STATE(1154), 2, sym_comment, sym_include, - ACTIONS(2067), 26, + ACTIONS(1573), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96023,19 +97132,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59052] = 6, + [59782] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2051), 1, + ACTIONS(1848), 1, ts_builtin_sym_end, - STATE(1138), 2, + STATE(1155), 2, sym_comment, sym_include, - ACTIONS(1578), 25, + ACTIONS(1850), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96061,19 +97170,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59096] = 6, + [59826] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1746), 1, + ACTIONS(2091), 1, ts_builtin_sym_end, - STATE(1139), 2, + STATE(1156), 2, sym_comment, sym_include, - ACTIONS(1748), 25, + ACTIONS(2093), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96099,17 +97208,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59140] = 5, + [59870] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1140), 2, + STATE(1157), 2, sym_comment, sym_include, - ACTIONS(1724), 26, + ACTIONS(1577), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96136,126 +97245,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59182] = 15, + [59912] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(71), 1, + sym__namedot, + ACTIONS(73), 1, + sym__namecolon, + ACTIONS(2095), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1158), 2, + sym_comment, + sym_include, + ACTIONS(75), 3, anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2069), 1, - anon_sym_RPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(77), 18, sym__or_operator, sym__and_operator, - STATE(1141), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [59244] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1573), 1, - sym_method_tuning, - STATE(1142), 3, - sym_comment, - sym_include, - aux_sym_method_definition_repeat1, - ACTIONS(2073), 4, - aux_sym_scope_tuning_token4, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - ACTIONS(2071), 20, - sym_identifier, - aux_sym_primitive_type_token1, - aux_sym_primitive_type_token2, - aux_sym_primitive_type_token3, - aux_sym_primitive_type_token4, - aux_sym_primitive_type_token5, - aux_sym_primitive_type_token6, - aux_sym_primitive_type_token7, - aux_sym_primitive_type_token8, - aux_sym_primitive_type_token9, - aux_sym_primitive_type_token10, - aux_sym_primitive_type_token11, - aux_sym_primitive_type_token12, - aux_sym_primitive_type_token13, - aux_sym_primitive_type_token14, - aux_sym_primitive_type_token15, - aux_sym_primitive_type_token16, - aux_sym_primitive_type_token17, - aux_sym_primitive_type_token18, - aux_sym_primitive_type_token19, - [59290] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, anon_sym_STAR, - ACTIONS(2076), 1, - anon_sym_LPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1143), 2, - sym_comment, - sym_include, - ACTIONS(307), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -96269,19 +97288,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [59352] = 6, + [59966] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1962), 1, + ACTIONS(1844), 1, ts_builtin_sym_end, - STATE(1144), 2, + STATE(1159), 2, sym_comment, sym_include, - ACTIONS(1706), 25, + ACTIONS(1846), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96307,55 +97326,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59396] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(157), 2, - sym__or_operator, - sym__and_operator, - STATE(1145), 2, - sym_comment, - sym_include, - ACTIONS(155), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [59440] = 5, + [60010] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1146), 2, + STATE(1160), 2, sym_comment, sym_include, - ACTIONS(1726), 26, + ACTIONS(1581), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96382,20 +97363,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59482] = 6, + [60052] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2099), 1, + anon_sym_COLON, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1662), 1, + sym_of, + STATE(1683), 1, + sym__pre_tuning, + STATE(1743), 1, + aux_sym_for_phrase_repeat1, + STATE(1803), 1, + sym_where_clause, + STATE(1942), 1, + sym_query_tuning, + STATE(2093), 1, + aux_sym_for_phrase_repeat2, + STATE(2595), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2882), 1, + sym_on_quit_phrase, + STATE(3309), 1, + aux_sym_for_statement_repeat1, + STATE(3311), 1, + sym_on_stop_phrase, + STATE(1161), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [60136] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, - ts_builtin_sym_end, - STATE(1147), 2, + STATE(1162), 2, sym_comment, sym_include, - ACTIONS(1573), 25, + ACTIONS(1585), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96420,17 +97458,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59526] = 5, + [60178] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1148), 2, + STATE(1163), 2, sym_comment, sym_include, - ACTIONS(1728), 26, + ACTIONS(2109), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96457,17 +97495,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59568] = 5, + [60220] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2111), 1, + sym__terminator, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1164), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [60282] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2113), 1, + anon_sym_LPAREN, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1165), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [60344] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1149), 2, + STATE(1166), 2, sym_comment, sym_include, - ACTIONS(1732), 26, + ACTIONS(2115), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96494,17 +97626,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59610] = 5, + [60386] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1150), 2, + STATE(1167), 2, sym_comment, sym_include, - ACTIONS(1736), 26, + ACTIONS(1589), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96531,19 +97663,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59652] = 6, + [60428] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1738), 1, + ACTIONS(1747), 1, ts_builtin_sym_end, - STATE(1151), 2, + STATE(1168), 2, sym_comment, sym_include, - ACTIONS(1740), 25, + ACTIONS(1749), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96569,19 +97701,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59696] = 6, + [60472] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2047), 1, + ACTIONS(1783), 1, ts_builtin_sym_end, - STATE(1152), 2, + STATE(1169), 2, sym_comment, sym_include, - ACTIONS(1571), 25, + ACTIONS(1785), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96607,20 +97739,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59740] = 6, + [60516] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1734), 1, - ts_builtin_sym_end, - STATE(1153), 2, + STATE(1170), 2, sym_comment, sym_include, - ACTIONS(1736), 25, + ACTIONS(1593), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96645,54 +97776,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59784] = 5, + [60558] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1154), 2, - sym_comment, - sym_include, - ACTIONS(1740), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [59826] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1155), 2, + STATE(1171), 2, sym_comment, sym_include, - ACTIONS(1744), 26, + ACTIONS(1597), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96719,20 +97813,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59868] = 6, + [60600] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(161), 2, + ACTIONS(217), 2, sym__or_operator, sym__and_operator, - STATE(1156), 2, + STATE(1172), 2, sym_comment, sym_include, - ACTIONS(159), 24, + ACTIONS(215), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -96757,19 +97851,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [59912] = 5, + [60644] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym__namedot, + ACTIONS(73), 1, + sym__namecolon, + ACTIONS(2117), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1173), 2, + sym_comment, + sym_include, + ACTIONS(75), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(77), 18, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [60698] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1157), 2, + ACTIONS(1974), 1, + ts_builtin_sym_end, + STATE(1174), 2, sym_comment, sym_include, - ACTIONS(1748), 26, + ACTIONS(1976), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96794,19 +97932,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59954] = 6, + [60742] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2078), 1, + ACTIONS(1982), 1, ts_builtin_sym_end, - STATE(1158), 2, + STATE(1175), 2, sym_comment, sym_include, - ACTIONS(2080), 25, + ACTIONS(1984), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96832,19 +97970,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59998] = 5, + [60786] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1159), 2, + ACTIONS(1986), 1, + ts_builtin_sym_end, + STATE(1176), 2, sym_comment, sym_include, - ACTIONS(1750), 26, + ACTIONS(1988), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96869,20 +98008,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60040] = 6, + [60830] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1987), 1, - ts_builtin_sym_end, - STATE(1160), 2, + STATE(1177), 2, sym_comment, sym_include, - ACTIONS(1620), 25, + ACTIONS(1878), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96907,19 +98045,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60084] = 5, + [60872] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1161), 2, + ACTIONS(225), 2, + sym__or_operator, + sym__and_operator, + STATE(1178), 2, sym_comment, sym_include, - ACTIONS(1756), 26, + ACTIONS(223), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [60916] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2119), 1, + ts_builtin_sym_end, + STATE(1179), 2, + sym_comment, + sym_include, + ACTIONS(2121), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96944,36 +98121,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60126] = 11, - ACTIONS(59), 1, + [60960] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - sym__namedot, - ACTIONS(73), 1, - sym__namecolon, - ACTIONS(2082), 1, - anon_sym_LPAREN, - STATE(8), 1, - aux_sym_object_access_repeat1, - STATE(9), 1, - aux_sym_qualified_name_repeat1, - STATE(1162), 2, + ACTIONS(155), 2, + sym__or_operator, + sym__and_operator, + STATE(1180), 2, sym_comment, sym_include, - ACTIONS(75), 3, + ACTIONS(153), 24, anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(77), 18, - sym__or_operator, - sym__and_operator, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [61004] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, anon_sym_STAR, + ACTIONS(2123), 1, + anon_sym_LPAREN, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1181), 2, + sym_comment, + sym_include, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -96987,32 +98206,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [60180] = 9, + [61066] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2078), 1, + ACTIONS(1587), 1, ts_builtin_sym_end, - ACTIONS(2084), 1, - aux_sym_buffer_definition_token2, - ACTIONS(2086), 1, - aux_sym_repeat_statement_token1, - ACTIONS(2088), 1, - aux_sym_do_block_token1, - STATE(1163), 2, + STATE(1182), 2, sym_comment, sym_include, - ACTIONS(2080), 22, + ACTIONS(1589), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, aux_sym__function_terminator_token1, @@ -97020,6 +98235,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, aux_sym_on_error_phrase_token3, + aux_sym_do_block_token1, aux_sym__case_terminator_token1, aux_sym_find_statement_token1, aux_sym_assign_statement_token1, @@ -97028,77 +98244,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60230] = 26, - ACTIONS(59), 1, + [61110] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2092), 1, - anon_sym_COLON, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1632), 1, - sym_of, - STATE(1670), 1, - sym__pre_tuning, - STATE(1773), 1, - sym_where_clause, - STATE(1778), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2054), 1, - aux_sym_for_phrase_repeat2, - STATE(2649), 1, - sym_on_error_phrase, - STATE(2714), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3425), 1, - aux_sym_for_statement_repeat1, - STATE(3435), 1, - sym_on_stop_phrase, - STATE(1164), 2, + ACTIONS(1876), 1, + ts_builtin_sym_end, + STATE(1183), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [60314] = 6, + ACTIONS(1878), 25, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [61154] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2102), 1, + ACTIONS(2125), 1, ts_builtin_sym_end, - STATE(1165), 2, + STATE(1184), 2, sym_comment, sym_include, - ACTIONS(2104), 25, + ACTIONS(2115), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97124,19 +98320,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60358] = 6, + [61198] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2106), 1, + ACTIONS(1892), 1, ts_builtin_sym_end, - STATE(1166), 2, + STATE(1185), 2, sym_comment, sym_include, - ACTIONS(2108), 25, + ACTIONS(1894), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97162,40 +98358,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60402] = 15, + [61242] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2110), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2127), 1, + anon_sym_RPAREN, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1167), 2, + STATE(1186), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -97209,20 +98405,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [60464] = 6, + [61304] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1497), 1, - ts_builtin_sym_end, - STATE(1168), 2, + STATE(1187), 2, sym_comment, sym_include, - ACTIONS(1499), 25, + ACTIONS(1874), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97247,19 +98442,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60508] = 6, + [61346] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym__namedot, + ACTIONS(73), 1, + sym__namecolon, + ACTIONS(2129), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1188), 2, + sym_comment, + sym_include, + ACTIONS(75), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(77), 18, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [61400] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1626), 1, + ACTIONS(2131), 1, ts_builtin_sym_end, - STATE(1169), 2, + STATE(1189), 2, sym_comment, sym_include, - ACTIONS(1628), 25, + ACTIONS(2109), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97285,20 +98523,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60552] = 6, + [61444] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1730), 1, - ts_builtin_sym_end, - STATE(1170), 2, + STATE(1190), 2, sym_comment, sym_include, - ACTIONS(1732), 25, + ACTIONS(1864), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97323,57 +98560,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60596] = 6, - ACTIONS(3), 1, + [61486] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(177), 2, - sym__or_operator, - sym__and_operator, - STATE(1171), 2, + ACTIONS(2135), 1, + aux_sym_variable_definition_token4, + STATE(1191), 2, sym_comment, sym_include, - ACTIONS(175), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [60640] = 6, + ACTIONS(2133), 25, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token1, + aux_sym_buffer_definition_token3, + aux_sym_query_definition_token1, + aux_sym_function_parameter_token1, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_property_definition_token1, + aux_sym_event_definition_token1, + aux_sym_data_source_definition_token1, + [61530] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1563), 1, + ACTIONS(1872), 1, ts_builtin_sym_end, - STATE(1172), 2, + STATE(1192), 2, sym_comment, sym_include, - ACTIONS(1565), 25, + ACTIONS(1874), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97399,19 +98636,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60684] = 6, + [61574] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1559), 1, + ACTIONS(1896), 1, ts_builtin_sym_end, - STATE(1173), 2, + STATE(1193), 2, sym_comment, sym_include, - ACTIONS(1561), 25, + ACTIONS(1898), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97437,20 +98674,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60728] = 6, + [61618] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1555), 1, - ts_builtin_sym_end, - STATE(1174), 2, + STATE(1194), 2, sym_comment, sym_include, - ACTIONS(1557), 25, + ACTIONS(1860), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97475,19 +98711,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60772] = 6, + [61660] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2112), 1, + ACTIONS(2137), 1, ts_builtin_sym_end, - STATE(1175), 2, + STATE(1195), 2, sym_comment, sym_include, - ACTIONS(2114), 25, + ACTIONS(2139), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97513,78 +98749,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60816] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(189), 2, - sym__or_operator, - sym__and_operator, - STATE(1176), 2, - sym_comment, - sym_include, - ACTIONS(187), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [60860] = 15, + [61704] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2116), 1, - anon_sym_LPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2141), 1, + aux_sym_if_statement_token2, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1177), 2, + STATE(1196), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -97598,60 +98796,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [60922] = 11, - ACTIONS(59), 1, + [61766] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - sym__namedot, - ACTIONS(73), 1, - sym__namecolon, - ACTIONS(2118), 1, - anon_sym_LPAREN, - STATE(8), 1, - aux_sym_object_access_repeat1, - STATE(9), 1, - aux_sym_qualified_name_repeat1, - STATE(1178), 2, + STATE(1197), 2, sym_comment, sym_include, - ACTIONS(75), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(77), 18, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [60976] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1179), 2, - sym_comment, - sym_include, - ACTIONS(2120), 26, + ACTIONS(1856), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -97678,107 +98833,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61018] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(137), 2, - sym__or_operator, - sym__and_operator, - STATE(1180), 2, - sym_comment, - sym_include, - ACTIONS(135), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [61062] = 6, - ACTIONS(3), 1, + [61808] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(141), 2, - sym__or_operator, - sym__and_operator, - STATE(1181), 2, - sym_comment, - sym_include, - ACTIONS(139), 24, + ACTIONS(293), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(295), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2143), 1, + aux_sym_else_if_statement_token1, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 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, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [61106] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(193), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1182), 2, + STATE(1198), 2, sym_comment, sym_include, - ACTIONS(191), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, + ACTIONS(301), 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, @@ -97789,23 +98880,19 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [61150] = 6, + [61870] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2041), 1, - ts_builtin_sym_end, - STATE(1183), 2, + STATE(1199), 2, sym_comment, sym_include, - ACTIONS(1553), 25, + ACTIONS(1601), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97830,171 +98917,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61194] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2122), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1634), 1, - sym_of, - STATE(1665), 1, - sym__pre_tuning, - STATE(1779), 1, - sym_where_clause, - STATE(1784), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2118), 1, - aux_sym_for_phrase_repeat2, - STATE(2625), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2852), 1, - sym_on_quit_phrase, - STATE(3124), 1, - aux_sym_for_statement_repeat1, - STATE(3126), 1, - sym_on_stop_phrase, - STATE(1184), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [61278] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2124), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1635), 1, - sym_of, - STATE(1663), 1, - sym__pre_tuning, - STATE(1727), 1, - aux_sym_for_phrase_repeat1, - STATE(1728), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2067), 1, - aux_sym_for_phrase_repeat2, - STATE(2622), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2882), 1, - sym_on_quit_phrase, - STATE(3105), 1, - aux_sym_for_statement_repeat1, - STATE(3107), 1, - sym_on_stop_phrase, - STATE(1185), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [61362] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(209), 2, - sym__or_operator, - sym__and_operator, - STATE(1186), 2, - sym_comment, - sym_include, - ACTIONS(207), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [61406] = 5, + [61912] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1187), 2, + STATE(1200), 2, sym_comment, sym_include, - ACTIONS(1798), 26, + ACTIONS(1607), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98021,19 +98954,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61448] = 5, + [61954] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1188), 2, + ACTIONS(2145), 1, + ts_builtin_sym_end, + STATE(1201), 2, sym_comment, sym_include, - ACTIONS(1800), 26, + ACTIONS(2147), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98058,19 +98992,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61490] = 5, + [61998] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1189), 2, + ACTIONS(1902), 1, + ts_builtin_sym_end, + STATE(1202), 2, sym_comment, sym_include, - ACTIONS(1802), 26, + ACTIONS(1904), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98095,19 +99030,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61532] = 5, + [62042] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2149), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1673), 1, + sym_of, + STATE(1679), 1, + sym__pre_tuning, + STATE(1742), 1, + sym_where_clause, + STATE(1794), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2042), 1, + aux_sym_for_phrase_repeat2, + STATE(2551), 1, + sym_on_error_phrase, + STATE(2754), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3212), 1, + aux_sym_for_statement_repeat1, + STATE(3217), 1, + sym_on_stop_phrase, + STATE(1203), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [62126] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1190), 2, + ACTIONS(1914), 1, + ts_builtin_sym_end, + STATE(1204), 2, sym_comment, sym_include, - ACTIONS(1804), 26, + ACTIONS(1916), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98132,19 +99126,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61574] = 6, + [62170] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2039), 1, + ACTIONS(2151), 1, ts_builtin_sym_end, - STATE(1191), 2, + STATE(1205), 2, sym_comment, sym_include, - ACTIONS(1551), 25, + ACTIONS(2153), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98170,19 +99164,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61618] = 5, + [62214] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1192), 2, + ACTIONS(2155), 1, + ts_builtin_sym_end, + STATE(1206), 2, sym_comment, sym_include, - ACTIONS(1808), 26, + ACTIONS(2157), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98207,19 +99202,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61660] = 6, + [62258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2126), 1, + ACTIONS(1862), 1, ts_builtin_sym_end, - STATE(1193), 2, + STATE(1207), 2, sym_comment, sym_include, - ACTIONS(2128), 25, + ACTIONS(1864), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98245,19 +99240,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61704] = 5, + [62302] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1194), 2, + ACTIONS(1739), 1, + ts_builtin_sym_end, + STATE(1208), 2, sym_comment, sym_include, - ACTIONS(1810), 26, + ACTIONS(1741), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98282,19 +99278,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61746] = 5, + [62346] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1195), 2, + ACTIONS(1858), 1, + ts_builtin_sym_end, + STATE(1209), 2, sym_comment, sym_include, - ACTIONS(1812), 26, + ACTIONS(1860), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98319,19 +99316,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61788] = 5, + [62390] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1196), 2, + ACTIONS(1583), 1, + ts_builtin_sym_end, + STATE(1210), 2, sym_comment, sym_include, - ACTIONS(1814), 26, + ACTIONS(1585), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98356,19 +99354,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61830] = 6, + [62434] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1940), 1, + ACTIONS(1854), 1, ts_builtin_sym_end, - STATE(1197), 2, + STATE(1211), 2, sym_comment, sym_include, - ACTIONS(1750), 25, + ACTIONS(1856), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98394,19 +99392,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61874] = 5, + [62478] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1198), 2, + ACTIONS(205), 2, + sym__or_operator, + sym__and_operator, + STATE(1212), 2, sym_comment, sym_include, - ACTIONS(2130), 26, + ACTIONS(203), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [62522] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(139), 2, + sym__or_operator, + sym__and_operator, + STATE(1213), 2, + sym_comment, + sym_include, + ACTIONS(137), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [62566] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1579), 1, + ts_builtin_sym_end, + STATE(1214), 2, + sym_comment, + sym_include, + ACTIONS(1581), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98431,19 +99506,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61916] = 5, + [62610] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1199), 2, + ACTIONS(1478), 1, + sym__namedot, + STATE(1492), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1215), 2, sym_comment, sym_include, - ACTIONS(1816), 26, + ACTIONS(87), 22, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [62658] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1791), 1, + ts_builtin_sym_end, + STATE(1216), 2, + sym_comment, + sym_include, + ACTIONS(1793), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98468,20 +99584,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61958] = 6, + [62702] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2159), 1, + aux_sym_else_if_statement_token1, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1217), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [62764] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2037), 1, - ts_builtin_sym_end, - STATE(1200), 2, + STATE(1218), 2, sym_comment, sym_include, - ACTIONS(1549), 25, + ACTIONS(2161), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98506,57 +99668,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62002] = 6, + [62806] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1942), 1, - ts_builtin_sym_end, - STATE(1201), 2, + STATE(1610), 1, + sym_method_tuning, + STATE(1219), 3, sym_comment, sym_include, - ACTIONS(1728), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [62046] = 6, + aux_sym_method_definition_repeat1, + ACTIONS(2165), 4, + aux_sym_scope_tuning_token4, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + ACTIONS(2163), 20, + sym_identifier, + aux_sym_primitive_type_token1, + aux_sym_primitive_type_token2, + aux_sym_primitive_type_token3, + aux_sym_primitive_type_token4, + aux_sym_primitive_type_token5, + aux_sym_primitive_type_token6, + aux_sym_primitive_type_token7, + aux_sym_primitive_type_token8, + aux_sym_primitive_type_token9, + aux_sym_primitive_type_token10, + aux_sym_primitive_type_token11, + aux_sym_primitive_type_token12, + aux_sym_primitive_type_token13, + aux_sym_primitive_type_token14, + aux_sym_primitive_type_token15, + aux_sym_primitive_type_token16, + aux_sym_primitive_type_token17, + aux_sym_primitive_type_token18, + aux_sym_primitive_type_token19, + [62852] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2035), 1, + ACTIONS(1575), 1, ts_builtin_sym_end, - STATE(1202), 2, + STATE(1220), 2, sym_comment, sym_include, - ACTIONS(1547), 25, + ACTIONS(1577), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98582,57 +99745,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62090] = 6, - ACTIONS(3), 1, + [62896] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2132), 1, - ts_builtin_sym_end, - STATE(1203), 2, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2168), 1, + aux_sym_if_statement_token2, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1221), 2, sym_comment, sym_include, - ACTIONS(2134), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [62134] = 6, + ACTIONS(301), 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, + [62958] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2136), 1, + ACTIONS(1571), 1, ts_builtin_sym_end, - STATE(1204), 2, + STATE(1222), 2, sym_comment, sym_include, - ACTIONS(2138), 25, + ACTIONS(1573), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98658,19 +99830,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62178] = 6, + [63002] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1999), 1, + ACTIONS(1567), 1, ts_builtin_sym_end, - STATE(1205), 2, + STATE(1223), 2, sym_comment, sym_include, - ACTIONS(1580), 25, + ACTIONS(1569), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98696,20 +99868,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62222] = 6, + [63046] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2033), 1, - ts_builtin_sym_end, - STATE(1206), 2, + STATE(1224), 2, sym_comment, sym_include, - ACTIONS(1545), 25, + ACTIONS(1621), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98734,20 +99905,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62266] = 6, + [63088] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1938), 1, - ts_builtin_sym_end, - STATE(1207), 2, + STATE(1225), 2, sym_comment, sym_include, - ACTIONS(1756), 25, + ACTIONS(1625), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98772,17 +99942,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62310] = 5, + [63130] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1208), 2, + STATE(1226), 2, sym_comment, sym_include, - ACTIONS(2140), 26, + ACTIONS(1629), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98809,19 +99979,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62352] = 6, + [63172] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1630), 1, + ACTIONS(1830), 1, ts_builtin_sym_end, - STATE(1209), 2, + STATE(1227), 2, sym_comment, sym_include, - ACTIONS(1632), 25, + ACTIONS(1832), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98847,35 +100017,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62396] = 8, - ACTIONS(3), 1, + [63216] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, - sym__namedot, - STATE(1365), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(99), 2, - sym__or_operator, - sym__and_operator, - STATE(1210), 2, - sym_comment, - sym_include, - ACTIONS(97), 22, + ACTIONS(293), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(295), 1, anon_sym_STAR, + ACTIONS(2170), 1, sym__terminator, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1228), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, @@ -98886,18 +100064,17 @@ 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, - [62444] = 5, + [63278] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1211), 2, + STATE(1229), 2, sym_comment, sym_include, - ACTIONS(1820), 26, + ACTIONS(1633), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98924,26 +100101,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62486] = 6, + [63320] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1431), 1, - anon_sym_LPAREN, - ACTIONS(67), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(165), 2, sym__or_operator, sym__and_operator, - STATE(1212), 2, + STATE(1230), 2, sym_comment, sym_include, - ACTIONS(63), 24, + ACTIONS(163), 24, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -98961,67 +100136,60 @@ 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_include_argument_token1, - [62530] = 15, - ACTIONS(59), 1, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [63364] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2142), 1, - aux_sym_else_if_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1213), 2, + ACTIONS(1563), 1, + ts_builtin_sym_end, + STATE(1231), 2, sym_comment, sym_include, - ACTIONS(307), 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, - [62592] = 6, + ACTIONS(1565), 25, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [63408] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2144), 1, + ACTIONS(1559), 1, ts_builtin_sym_end, - STATE(1214), 2, + STATE(1232), 2, sym_comment, sym_include, - ACTIONS(2146), 25, + ACTIONS(1561), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99047,19 +100215,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62636] = 5, + [63452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1215), 2, + ACTIONS(1599), 1, + ts_builtin_sym_end, + STATE(1233), 2, sym_comment, sym_include, - ACTIONS(1826), 26, + ACTIONS(1601), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99084,57 +100253,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62678] = 6, + [63496] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1584), 1, + ACTIONS(1555), 1, ts_builtin_sym_end, - STATE(1216), 2, - sym_comment, - sym_include, - ACTIONS(1586), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [62722] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1217), 2, + STATE(1234), 2, sym_comment, sym_include, - ACTIONS(1832), 26, + ACTIONS(1557), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99159,107 +100291,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62764] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(181), 2, - sym__or_operator, - sym__and_operator, - STATE(1218), 2, - sym_comment, - sym_include, - ACTIONS(179), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [62808] = 6, - ACTIONS(3), 1, + [63540] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(185), 2, - sym__or_operator, - sym__and_operator, - STATE(1219), 2, - sym_comment, - sym_include, - ACTIONS(183), 24, + ACTIONS(293), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(295), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2172), 1, + anon_sym_RPAREN, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 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, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [62852] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(125), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1220), 2, + STATE(1235), 2, sym_comment, sym_include, - ACTIONS(123), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, + ACTIONS(301), 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, @@ -99270,22 +100338,20 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [62896] = 5, + [63602] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1221), 2, + ACTIONS(1605), 1, + ts_builtin_sym_end, + STATE(1236), 2, sym_comment, sym_include, - ACTIONS(1834), 26, + ACTIONS(1607), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99310,19 +100376,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62938] = 6, + [63646] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2148), 1, + ACTIONS(2174), 1, ts_builtin_sym_end, - STATE(1222), 2, + STATE(1237), 2, sym_comment, sym_include, - ACTIONS(2150), 25, + ACTIONS(2079), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99348,31 +100414,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62982] = 6, - ACTIONS(3), 1, + [63690] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(213), 2, - sym__or_operator, - sym__and_operator, - STATE(1223), 2, - sym_comment, - sym_include, - ACTIONS(211), 24, + ACTIONS(293), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(295), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2176), 1, + aux_sym_else_if_statement_token1, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1238), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, @@ -99383,23 +100461,19 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [63026] = 6, + [63752] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1588), 1, - ts_builtin_sym_end, - STATE(1224), 2, + STATE(1239), 2, sym_comment, sym_include, - ACTIONS(1590), 25, + ACTIONS(1637), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99424,17 +100498,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63070] = 5, + [63794] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1225), 2, + STATE(1240), 2, sym_comment, sym_include, - ACTIONS(1836), 26, + ACTIONS(1641), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99461,17 +100535,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63112] = 5, + [63836] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1226), 2, + STATE(1241), 2, sym_comment, sym_include, - ACTIONS(1840), 26, + ACTIONS(1645), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99498,20 +100572,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63154] = 6, + [63878] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1592), 1, - ts_builtin_sym_end, - STATE(1227), 2, + STATE(1242), 2, sym_comment, sym_include, - ACTIONS(1594), 25, + ACTIONS(1649), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99536,20 +100609,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63198] = 6, + [63920] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2178), 1, + sym__terminator, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1243), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [63982] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1596), 1, - ts_builtin_sym_end, - STATE(1228), 2, + STATE(1244), 2, sym_comment, sym_include, - ACTIONS(1598), 25, + ACTIONS(2180), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99574,19 +100693,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63242] = 6, + [64024] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1944), 1, + ACTIONS(1551), 1, ts_builtin_sym_end, - STATE(1229), 2, + STATE(1245), 2, sym_comment, sym_include, - ACTIONS(1726), 25, + ACTIONS(1553), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99612,20 +100731,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63286] = 6, + [64068] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1600), 1, - ts_builtin_sym_end, - STATE(1230), 2, + STATE(1246), 2, sym_comment, sym_include, - ACTIONS(1602), 25, + ACTIONS(1515), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99650,45 +100768,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63330] = 6, + [64110] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1604), 1, - ts_builtin_sym_end, - STATE(1231), 2, + ACTIONS(121), 2, + sym__or_operator, + sym__and_operator, + STATE(1247), 2, sym_comment, sym_include, - ACTIONS(1606), 25, + ACTIONS(119), 24, + anon_sym_SLASH, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [63374] = 6, + aux_sym_widget_field_token1, + [64154] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(169), 2, + sym__or_operator, + sym__and_operator, + STATE(1248), 2, + sym_comment, + sym_include, + ACTIONS(167), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [64198] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -99698,7 +100854,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(173), 2, sym__or_operator, sym__and_operator, - STATE(1232), 2, + STATE(1249), 2, sym_comment, sym_include, ACTIONS(171), 24, @@ -99726,17 +100882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [63418] = 5, + [64242] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1233), 2, + STATE(1250), 2, sym_comment, sym_include, - ACTIONS(1854), 26, + ACTIONS(2182), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99763,20 +100919,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63460] = 6, + [64284] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2152), 1, - ts_builtin_sym_end, - STATE(1234), 2, + STATE(1251), 2, sym_comment, sym_include, - ACTIONS(2154), 25, + ACTIONS(1657), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99801,19 +100956,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63504] = 6, + [64326] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1997), 1, + ACTIONS(1795), 1, ts_builtin_sym_end, - STATE(1235), 2, + STATE(1252), 2, sym_comment, sym_include, - ACTIONS(1608), 25, + ACTIONS(1797), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99839,78 +100994,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63548] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2156), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1660), 1, - sym_of, - STATE(1671), 1, - sym__pre_tuning, - STATE(1736), 1, - sym_where_clause, - STATE(1753), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2117), 1, - aux_sym_for_phrase_repeat2, - STATE(2616), 1, - sym_on_error_phrase, - STATE(2713), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3452), 1, - aux_sym_for_statement_repeat1, - STATE(3459), 1, - sym_on_stop_phrase, - STATE(1236), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [63632] = 6, + [64370] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(121), 2, + ACTIONS(177), 2, sym__or_operator, sym__and_operator, - STATE(1237), 2, + STATE(1253), 2, sym_comment, sym_include, - ACTIONS(119), 24, + ACTIONS(175), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -99935,19 +101032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [63676] = 5, + [64414] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1238), 2, + ACTIONS(1826), 1, + ts_builtin_sym_end, + STATE(1254), 2, sym_comment, sym_include, - ACTIONS(1856), 26, + ACTIONS(1828), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99972,31 +101070,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63718] = 6, - ACTIONS(3), 1, + [64458] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(149), 2, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2184), 1, + anon_sym_LPAREN, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1239), 2, + STATE(1255), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [64520] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym__namedot, + ACTIONS(73), 1, + sym__namecolon, + ACTIONS(2186), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1256), 2, sym_comment, sym_include, - ACTIONS(147), 24, + ACTIONS(75), 3, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(77), 18, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - 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, @@ -100007,34 +101160,43 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [63762] = 6, - ACTIONS(3), 1, + [64574] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(165), 2, - sym__or_operator, - sym__and_operator, - STATE(1240), 2, - sym_comment, - sym_include, - ACTIONS(163), 24, + ACTIONS(293), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(295), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2188), 1, + anon_sym_LPAREN, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1257), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, @@ -100045,22 +101207,20 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [63806] = 5, + [64636] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1241), 2, + ACTIONS(1547), 1, + ts_builtin_sym_end, + STATE(1258), 2, sym_comment, sym_include, - ACTIONS(1858), 26, + ACTIONS(1549), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100085,19 +101245,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63848] = 5, + [64680] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1242), 2, + ACTIONS(2190), 1, + ts_builtin_sym_end, + STATE(1259), 2, sym_comment, sym_include, - ACTIONS(1860), 26, + ACTIONS(2161), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100122,33 +101283,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63890] = 6, - ACTIONS(3), 1, + [64724] = 11, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(1431), 1, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, + sym__namedot, + ACTIONS(73), 1, + sym__namecolon, + ACTIONS(2192), 1, anon_sym_LPAREN, - ACTIONS(77), 2, - sym__or_operator, - sym__and_operator, - STATE(1243), 2, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1260), 2, sym_comment, sym_include, - ACTIONS(75), 24, + ACTIONS(75), 3, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(77), 18, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - 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, @@ -100159,41 +101326,229 @@ 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_include_argument_token1, - [63934] = 15, + [64778] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1822), 1, + ts_builtin_sym_end, + STATE(1261), 2, + sym_comment, + sym_include, + ACTIONS(1824), 25, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [64822] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1262), 2, + sym_comment, + sym_include, + ACTIONS(1661), 26, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [64864] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1818), 1, + ts_builtin_sym_end, + STATE(1263), 2, + sym_comment, + sym_include, + ACTIONS(1820), 25, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [64908] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1619), 1, + ts_builtin_sym_end, + STATE(1264), 2, + sym_comment, + sym_include, + ACTIONS(1621), 25, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [64952] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1623), 1, + ts_builtin_sym_end, + STATE(1265), 2, + sym_comment, + sym_include, + ACTIONS(1625), 25, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [64996] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2158), 1, - anon_sym_LPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2194), 1, + aux_sym_if_statement_token2, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1244), 2, + STATE(1266), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -100207,36 +101562,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [63996] = 11, + [65058] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - sym__namedot, - ACTIONS(73), 1, - sym__namecolon, - ACTIONS(2160), 1, - anon_sym_LPAREN, - STATE(8), 1, - aux_sym_object_access_repeat1, - STATE(9), 1, - aux_sym_qualified_name_repeat1, - STATE(1245), 2, - sym_comment, - sym_include, - ACTIONS(75), 3, + ACTIONS(293), 1, anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2196), 1, + aux_sym_if_statement_token2, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(77), 18, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, + STATE(1267), 2, + sym_comment, + sym_include, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -100250,78 +101609,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [64050] = 6, + [65120] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(145), 2, - sym__or_operator, - sym__and_operator, - STATE(1246), 2, + STATE(1268), 2, sym_comment, sym_include, - ACTIONS(143), 24, - anon_sym_SLASH, + ACTIONS(1665), 26, sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [64094] = 15, + 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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [65162] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1269), 2, + sym_comment, + sym_include, + ACTIONS(1669), 26, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [65204] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2162), 1, - sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2198), 1, + aux_sym_if_statement_token2, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1247), 2, + STATE(1270), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -100335,40 +101730,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [64156] = 15, + [65266] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2164), 1, + ACTIONS(2200), 1, aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1248), 2, + STATE(1271), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -100382,31 +101777,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [64218] = 6, + [65328] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(88), 2, - sym__or_operator, - sym__and_operator, - STATE(1249), 2, + ACTIONS(1990), 1, + ts_builtin_sym_end, + STATE(1272), 2, sym_comment, sym_include, - ACTIONS(86), 24, - anon_sym_SLASH, + ACTIONS(1992), 25, sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [65372] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2202), 1, + aux_sym_if_statement_token2, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1273), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, @@ -100417,60 +101862,19 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [64262] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2168), 1, - aux_sym_variable_definition_token4, - STATE(1250), 2, - sym_comment, - sym_include, - ACTIONS(2166), 25, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token1, - aux_sym_buffer_definition_token3, - aux_sym_query_definition_token1, - aux_sym_function_parameter_token1, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_property_definition_token1, - aux_sym_event_definition_token1, - aux_sym_data_source_definition_token1, - [64306] = 6, + [65434] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1946), 1, + ACTIONS(1814), 1, ts_builtin_sym_end, - STATE(1251), 2, + STATE(1274), 2, sym_comment, sym_include, - ACTIONS(1724), 25, + ACTIONS(1816), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -100496,19 +101900,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64350] = 6, + [65478] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2170), 1, + ACTIONS(1994), 1, ts_builtin_sym_end, - STATE(1252), 2, + STATE(1275), 2, sym_comment, sym_include, - ACTIONS(2067), 25, + ACTIONS(1996), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -100534,19 +101938,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64394] = 5, + [65522] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1253), 2, + ACTIONS(1631), 1, + ts_builtin_sym_end, + STATE(1276), 2, sym_comment, sym_include, - ACTIONS(2172), 26, + ACTIONS(1633), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100571,19 +101976,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64436] = 6, + [65566] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2174), 1, + ACTIONS(1635), 1, ts_builtin_sym_end, - STATE(1254), 2, + STATE(1277), 2, sym_comment, sym_include, - ACTIONS(2065), 25, + ACTIONS(1637), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -100609,19 +102014,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64480] = 5, + [65610] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1255), 2, + ACTIONS(1639), 1, + ts_builtin_sym_end, + STATE(1278), 2, sym_comment, sym_include, - ACTIONS(1876), 26, + ACTIONS(1641), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100646,19 +102052,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64522] = 5, + [65654] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1256), 2, + ACTIONS(1643), 1, + ts_builtin_sym_end, + STATE(1279), 2, sym_comment, sym_include, - ACTIONS(1882), 26, + ACTIONS(1645), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100683,26 +102090,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64564] = 6, + [65698] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2176), 1, - sym__namedot, - ACTIONS(111), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(181), 2, sym__or_operator, sym__and_operator, - STATE(1257), 2, + STATE(1280), 2, sym_comment, sym_include, - ACTIONS(109), 24, + ACTIONS(179), 24, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -100720,20 +102125,23 @@ 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_include_argument_token1, - [64608] = 5, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [65742] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1258), 2, + ACTIONS(1966), 1, + ts_builtin_sym_end, + STATE(1281), 2, sym_comment, sym_include, - ACTIONS(1884), 26, + ACTIONS(1968), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100758,31 +102166,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64650] = 6, - ACTIONS(3), 1, + [65786] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(133), 2, - sym__or_operator, - sym__and_operator, - STATE(1259), 2, - sym_comment, - sym_include, - ACTIONS(131), 24, + ACTIONS(293), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(295), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2204), 1, + aux_sym_if_statement_token2, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1282), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, @@ -100793,104 +102213,31 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [64694] = 26, - ACTIONS(59), 1, + [65848] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2178), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1630), 1, - sym_of, - STATE(1680), 1, - sym__pre_tuning, - STATE(1760), 1, - aux_sym_for_phrase_repeat1, - STATE(1761), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2099), 1, - aux_sym_for_phrase_repeat2, - STATE(2559), 1, - sym_on_error_phrase, - STATE(2768), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3342), 1, - aux_sym_for_statement_repeat1, - STATE(3344), 1, - sym_on_stop_phrase, - STATE(1260), 2, + ACTIONS(185), 2, + sym__or_operator, + sym__and_operator, + STATE(1283), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [64778] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(183), 24, anon_sym_SLASH, - ACTIONS(287), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2180), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1261), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, @@ -100901,43 +102248,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [64840] = 15, - ACTIONS(59), 1, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [65892] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(1675), 1, + ts_builtin_sym_end, + STATE(1284), 2, + sym_comment, + sym_include, + ACTIONS(1677), 25, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [65936] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(189), 2, + sym__or_operator, + sym__and_operator, + STATE(1285), 2, + sym_comment, + sym_include, + ACTIONS(187), 24, anon_sym_SLASH, - ACTIONS(287), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2182), 1, - aux_sym_else_if_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1262), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, @@ -100948,19 +102324,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [64902] = 5, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [65980] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1263), 2, + ACTIONS(1543), 1, + ts_builtin_sym_end, + STATE(1286), 2, sym_comment, sym_include, - ACTIONS(1880), 26, + ACTIONS(1545), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100985,19 +102365,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64944] = 5, + [66024] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1264), 2, + ACTIONS(2206), 1, + ts_builtin_sym_end, + STATE(1287), 2, sym_comment, sym_include, - ACTIONS(1874), 26, + ACTIONS(2208), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101022,28 +102403,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64986] = 8, + [66068] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, - sym__namedot, - STATE(1365), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(88), 2, + ACTIONS(193), 2, sym__or_operator, sym__and_operator, - STATE(1265), 2, + STATE(1288), 2, sym_comment, sym_include, - ACTIONS(86), 22, + ACTIONS(191), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -101061,67 +102438,23 @@ 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, - [65034] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2184), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1266), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [65096] = 5, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [66112] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1267), 2, + ACTIONS(2210), 1, + ts_builtin_sym_end, + STATE(1289), 2, sym_comment, sym_include, - ACTIONS(1868), 26, + ACTIONS(2212), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101146,19 +102479,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65138] = 5, + [66156] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1268), 2, + ACTIONS(1679), 1, + ts_builtin_sym_end, + STATE(1290), 2, sym_comment, sym_include, - ACTIONS(1864), 26, + ACTIONS(1681), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101183,19 +102517,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65180] = 6, + [66200] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1948), 1, + ACTIONS(1647), 1, ts_builtin_sym_end, - STATE(1269), 2, + STATE(1291), 2, sym_comment, sym_include, - ACTIONS(1720), 25, + ACTIONS(1649), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101221,20 +102555,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65224] = 6, + [66244] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1541), 1, - ts_builtin_sym_end, - STATE(1270), 2, + STATE(1292), 2, sym_comment, sym_include, - ACTIONS(1543), 25, + ACTIONS(1673), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101259,19 +102592,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65268] = 5, + [66286] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1271), 2, + ACTIONS(1978), 1, + ts_builtin_sym_end, + STATE(1293), 2, sym_comment, sym_include, - ACTIONS(1706), 26, + ACTIONS(1980), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101296,19 +102630,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65310] = 6, + [66330] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1995), 1, + ACTIONS(2214), 1, ts_builtin_sym_end, - STATE(1272), 2, + STATE(1294), 2, sym_comment, sym_include, - ACTIONS(1612), 25, + ACTIONS(2216), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101334,19 +102668,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65354] = 6, + [66374] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1537), 1, + ACTIONS(2030), 1, ts_builtin_sym_end, - STATE(1273), 2, + STATE(1295), 2, sym_comment, sym_include, - ACTIONS(1539), 25, + ACTIONS(1998), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101372,20 +102706,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65398] = 6, + [66418] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2186), 1, - ts_builtin_sym_end, - STATE(1274), 2, + STATE(1296), 2, sym_comment, sym_include, - ACTIONS(2120), 25, + ACTIONS(1816), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101410,19 +102743,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65442] = 6, + [66460] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1640), 1, + ACTIONS(2218), 1, ts_builtin_sym_end, - STATE(1275), 2, + STATE(1297), 2, sym_comment, sym_include, - ACTIONS(1642), 25, + ACTIONS(2180), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101448,20 +102781,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65486] = 6, + [66504] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1993), 1, - ts_builtin_sym_end, - STATE(1276), 2, + STATE(1298), 2, sym_comment, sym_include, - ACTIONS(1614), 25, + ACTIONS(1677), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101486,20 +102818,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65530] = 6, + [66546] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2188), 1, - ts_builtin_sym_end, - STATE(1277), 2, + STATE(1299), 2, sym_comment, sym_include, - ACTIONS(2190), 25, + ACTIONS(1681), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101524,17 +102855,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65574] = 5, + [66588] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1278), 2, + STATE(1300), 2, sym_comment, sym_include, - ACTIONS(2146), 26, + ACTIONS(1685), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101561,57 +102892,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65616] = 6, + [66630] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2031), 1, + ACTIONS(1651), 1, ts_builtin_sym_end, - STATE(1279), 2, - sym_comment, - sym_include, - ACTIONS(1495), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [65660] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1280), 2, + STATE(1301), 2, sym_comment, sym_include, - ACTIONS(2192), 26, + ACTIONS(1515), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101636,19 +102930,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65702] = 5, + [66674] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1281), 2, + ACTIONS(2038), 1, + ts_builtin_sym_end, + STATE(1302), 2, sym_comment, sym_include, - ACTIONS(1704), 26, + ACTIONS(2000), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101673,19 +102968,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65744] = 6, + [66718] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1934), 1, + ACTIONS(2040), 1, ts_builtin_sym_end, - STATE(1282), 2, + STATE(1303), 2, sym_comment, sym_include, - ACTIONS(1798), 25, + ACTIONS(2002), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101711,19 +103006,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65788] = 6, + [66762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1991), 1, + ACTIONS(1779), 1, ts_builtin_sym_end, - STATE(1283), 2, + STATE(1304), 2, sym_comment, sym_include, - ACTIONS(1616), 25, + ACTIONS(1781), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101749,20 +103044,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65832] = 6, + [66806] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, - ts_builtin_sym_end, - STATE(1284), 2, + STATE(1305), 2, sym_comment, sym_include, - ACTIONS(1618), 25, + ACTIONS(1689), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101787,57 +103081,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65876] = 6, - ACTIONS(3), 1, + [66848] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2194), 1, - ts_builtin_sym_end, - STATE(1285), 2, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2220), 1, + aux_sym_if_statement_token2, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1306), 2, sym_comment, sym_include, - ACTIONS(2196), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [65920] = 6, + ACTIONS(301), 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, + [66910] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1932), 1, + ACTIONS(1775), 1, ts_builtin_sym_end, - STATE(1286), 2, + STATE(1307), 2, sym_comment, sym_include, - ACTIONS(1800), 25, + ACTIONS(1777), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101863,19 +103166,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65964] = 6, + [66954] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2198), 1, + ACTIONS(1683), 1, ts_builtin_sym_end, - STATE(1287), 2, + STATE(1308), 2, sym_comment, sym_include, - ACTIONS(2200), 25, + ACTIONS(1685), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101901,115 +103204,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66008] = 5, - ACTIONS(3), 1, + [66998] = 26, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1288), 2, - sym_comment, - sym_include, - ACTIONS(1700), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [66050] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1930), 1, - ts_builtin_sym_end, - STATE(1289), 2, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2222), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1649), 1, + sym_of, + STATE(1691), 1, + sym__pre_tuning, + STATE(1767), 1, + sym_where_clause, + STATE(1787), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2119), 1, + aux_sym_for_phrase_repeat2, + STATE(2591), 1, + sym_on_error_phrase, + STATE(2843), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3231), 1, + aux_sym_for_statement_repeat1, + STATE(3234), 1, + sym_on_stop_phrase, + STATE(1309), 2, sym_comment, sym_include, - ACTIONS(1802), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [66094] = 15, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [67082] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2202), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2224), 1, + aux_sym_else_if_statement_token1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1290), 2, + STATE(1310), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -102023,19 +103309,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [66156] = 6, + [67144] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2029), 1, + ACTIONS(2226), 1, ts_builtin_sym_end, - STATE(1291), 2, + STATE(1311), 2, sym_comment, sym_include, - ACTIONS(1531), 25, + ACTIONS(2182), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102061,19 +103347,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66200] = 6, + [67188] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2204), 1, + ACTIONS(1655), 1, ts_builtin_sym_end, - STATE(1292), 2, + STATE(1312), 2, sym_comment, sym_include, - ACTIONS(2206), 25, + ACTIONS(1657), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102099,20 +103385,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66244] = 6, + [67232] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2027), 1, - ts_builtin_sym_end, - STATE(1293), 2, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, + STATE(1313), 2, + sym_comment, + sym_include, + ACTIONS(195), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [67276] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1314), 2, + sym_comment, + sym_include, + ACTIONS(87), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [67320] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1315), 2, sym_comment, sym_include, - ACTIONS(1529), 25, + ACTIONS(1908), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102137,19 +103498,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66288] = 5, + [67362] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1294), 2, + ACTIONS(1539), 1, + ts_builtin_sym_end, + STATE(1316), 2, sym_comment, sym_include, - ACTIONS(1852), 26, + ACTIONS(1541), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102174,20 +103536,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66330] = 6, + [67406] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1985), 1, - ts_builtin_sym_end, - STATE(1295), 2, + STATE(1317), 2, sym_comment, sym_include, - ACTIONS(1622), 25, + ACTIONS(1912), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102212,19 +103573,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66374] = 6, + [67448] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1950), 1, + ACTIONS(2228), 1, ts_builtin_sym_end, - STATE(1296), 2, + STATE(1318), 2, sym_comment, sym_include, - ACTIONS(1718), 25, + ACTIONS(2230), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102250,24 +103611,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66418] = 6, + [67492] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(217), 2, + ACTIONS(2232), 1, + sym__namedot, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1297), 2, + STATE(1319), 2, sym_comment, sym_include, - ACTIONS(215), 24, + ACTIONS(109), 24, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - aux_sym_input_expression_token2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -102285,22 +103648,20 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [66462] = 6, + aux_sym_include_argument_token1, + [67536] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1983), 1, + ACTIONS(1906), 1, ts_builtin_sym_end, - STATE(1298), 2, + STATE(1320), 2, sym_comment, sym_include, - ACTIONS(1624), 25, + ACTIONS(1908), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102326,19 +103687,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66506] = 6, + [67580] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1928), 1, + ACTIONS(1910), 1, ts_builtin_sym_end, - STATE(1299), 2, + STATE(1321), 2, sym_comment, sym_include, - ACTIONS(1804), 25, + ACTIONS(1912), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102364,19 +103725,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66550] = 6, + [67624] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2025), 1, + ACTIONS(1659), 1, ts_builtin_sym_end, - STATE(1300), 2, + STATE(1322), 2, sym_comment, sym_include, - ACTIONS(1527), 25, + ACTIONS(1661), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102402,20 +103763,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66594] = 6, + [67668] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, - ts_builtin_sym_end, - STATE(1301), 2, + STATE(1323), 2, sym_comment, sym_include, - ACTIONS(1521), 25, + ACTIONS(1920), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102440,20 +103800,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66638] = 6, + [67710] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1926), 1, - ts_builtin_sym_end, - STATE(1302), 2, + STATE(1324), 2, sym_comment, sym_include, - ACTIONS(1808), 25, + ACTIONS(1924), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102478,19 +103837,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66682] = 6, + [67752] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1924), 1, + ACTIONS(1922), 1, ts_builtin_sym_end, - STATE(1303), 2, + STATE(1325), 2, sym_comment, sym_include, - ACTIONS(1810), 25, + ACTIONS(1924), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102516,105 +103875,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66726] = 6, + [67796] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(205), 2, - sym__or_operator, - sym__and_operator, - STATE(1304), 2, + ACTIONS(1663), 1, + ts_builtin_sym_end, + STATE(1326), 2, sym_comment, sym_include, - ACTIONS(203), 24, - anon_sym_SLASH, + ACTIONS(1665), 25, sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [66770] = 15, - ACTIONS(59), 1, + 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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [67840] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2208), 1, - aux_sym_else_if_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1305), 2, + STATE(1327), 2, sym_comment, sym_include, - ACTIONS(307), 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, - [66832] = 6, + ACTIONS(2234), 26, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [67882] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - ts_builtin_sym_end, - STATE(1306), 2, + STATE(1328), 2, sym_comment, sym_include, - ACTIONS(1812), 25, + ACTIONS(1695), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102639,20 +103987,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66876] = 6, + [67924] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1972), 1, - ts_builtin_sym_end, - STATE(1307), 2, + STATE(1329), 2, sym_comment, sym_include, - ACTIONS(1690), 25, + ACTIONS(1699), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102677,43 +104024,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66920] = 15, - ACTIONS(59), 1, + [67966] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + STATE(1330), 2, + sym_comment, + sym_include, + ACTIONS(1653), 26, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [68008] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1414), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(1331), 2, + sym_comment, + sym_include, + ACTIONS(75), 24, anon_sym_SLASH, - ACTIONS(287), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(2210), 1, - sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1308), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, @@ -102724,19 +104098,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [66982] = 5, + aux_sym_include_argument_token1, + [68052] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1309), 2, + ACTIONS(1667), 1, + ts_builtin_sym_end, + STATE(1332), 2, sym_comment, sym_include, - ACTIONS(1848), 26, + ACTIONS(1669), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102761,43 +104137,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67024] = 15, - ACTIONS(59), 1, + [68096] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1687), 1, + ts_builtin_sym_end, + STATE(1333), 2, + sym_comment, + sym_include, + ACTIONS(1689), 25, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [68140] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + STATE(1334), 2, + sym_comment, + sym_include, + ACTIONS(117), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(115), 23, anon_sym_SLASH, - ACTIONS(287), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2212), 1, sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_LT_GT, + anon_sym_EQ, anon_sym_GT, - ACTIONS(309), 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, + anon_sym_NO_DASHERROR, + [68184] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(147), 2, sym__or_operator, sym__and_operator, - STATE(1310), 2, + STATE(1335), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(145), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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, @@ -102808,19 +104248,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [67086] = 6, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [68228] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1966), 1, + ACTIONS(1517), 1, ts_builtin_sym_end, - STATE(1311), 2, + STATE(1336), 2, sym_comment, sym_include, - ACTIONS(1704), 25, + ACTIONS(1519), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102846,17 +104289,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67130] = 5, + [68272] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1312), 2, + STATE(1337), 2, sym_comment, sym_include, - ACTIONS(1844), 26, + ACTIONS(1707), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102883,19 +104326,152 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67172] = 6, + [68314] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1978), 1, + ACTIONS(209), 2, + sym__or_operator, + sym__and_operator, + STATE(1338), 2, + sym_comment, + sym_include, + ACTIONS(207), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [68358] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2236), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1671), 1, + sym_of, + STATE(1697), 1, + sym__pre_tuning, + STATE(1775), 1, + aux_sym_for_phrase_repeat1, + STATE(1776), 1, + sym_where_clause, + STATE(1942), 1, + sym_query_tuning, + STATE(2062), 1, + aux_sym_for_phrase_repeat2, + STATE(2609), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2897), 1, + sym_on_quit_phrase, + STATE(3132), 1, + aux_sym_for_statement_repeat1, + STATE(3150), 1, + sym_on_stop_phrase, + STATE(1339), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [68442] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1340), 2, + sym_comment, + sym_include, + ACTIONS(1711), 26, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [68484] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2238), 1, ts_builtin_sym_end, - STATE(1313), 2, + STATE(1341), 2, sym_comment, sym_include, - ACTIONS(1636), 25, + ACTIONS(2240), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102921,40 +104497,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67216] = 15, + [68528] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2214), 1, - anon_sym_RPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2242), 1, + aux_sym_if_statement_token2, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1314), 2, + STATE(1342), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -102968,19 +104544,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [67278] = 5, + [68590] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1315), 2, + ACTIONS(2244), 1, + ts_builtin_sym_end, + STATE(1343), 2, sym_comment, sym_include, - ACTIONS(1830), 26, + ACTIONS(2246), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103005,17 +104582,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67320] = 5, + [68634] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1316), 2, + STATE(1344), 2, sym_comment, sym_include, - ACTIONS(1890), 26, + ACTIONS(1789), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103042,20 +104619,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67362] = 6, + [68676] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1952), 1, - ts_builtin_sym_end, - STATE(1317), 2, + STATE(1345), 2, sym_comment, sym_include, - ACTIONS(1716), 25, + ACTIONS(1715), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103080,19 +104656,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67406] = 5, + [68718] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1318), 2, + ACTIONS(1771), 1, + ts_builtin_sym_end, + STATE(1346), 2, sym_comment, sym_include, - ACTIONS(1824), 26, + ACTIONS(1773), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103117,19 +104694,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67448] = 6, + [68762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1954), 1, + ACTIONS(1787), 1, ts_builtin_sym_end, - STATE(1319), 2, + STATE(1347), 2, sym_comment, sym_include, - ACTIONS(1714), 25, + ACTIONS(1789), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103155,66 +104732,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67492] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2216), 1, - anon_sym_LPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1320), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [67554] = 6, + [68806] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(1930), 1, ts_builtin_sym_end, - STATE(1321), 2, + STATE(1348), 2, sym_comment, sym_include, - ACTIONS(1814), 25, + ACTIONS(1932), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103240,141 +104770,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67598] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, - sym__namedot, - ACTIONS(73), 1, - sym__namecolon, - ACTIONS(2218), 1, - anon_sym_LPAREN, - STATE(8), 1, - aux_sym_object_access_repeat1, - STATE(9), 1, - aux_sym_qualified_name_repeat1, - STATE(1322), 2, - sym_comment, - sym_include, - ACTIONS(75), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(77), 18, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [67652] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2220), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1655), 1, - sym_of, - STATE(1667), 1, - sym__pre_tuning, - STATE(1747), 1, - aux_sym_for_phrase_repeat1, - STATE(1750), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2102), 1, - aux_sym_for_phrase_repeat2, - STATE(2542), 1, - sym_on_error_phrase, - STATE(2781), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3294), 1, - aux_sym_for_statement_repeat1, - STATE(3308), 1, - sym_on_stop_phrase, - STATE(1323), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [67736] = 15, + [68850] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2222), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2248), 1, + anon_sym_RPAREN, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1324), 2, + STATE(1349), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -103388,19 +104817,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [67798] = 6, + [68912] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2224), 1, + ACTIONS(1880), 1, ts_builtin_sym_end, - STATE(1325), 2, + STATE(1350), 2, sym_comment, sym_include, - ACTIONS(2130), 25, + ACTIONS(1882), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103426,19 +104855,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67842] = 6, + [68956] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1644), 1, + ACTIONS(2004), 1, ts_builtin_sym_end, - STATE(1326), 2, + STATE(1351), 2, sym_comment, sym_include, - ACTIONS(1646), 25, + ACTIONS(2006), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103464,121 +104893,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67886] = 11, - ACTIONS(59), 1, + [69000] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(71), 1, - sym__namedot, - ACTIONS(73), 1, - sym__namecolon, - ACTIONS(2226), 1, - anon_sym_LPAREN, - STATE(8), 1, - aux_sym_object_access_repeat1, - STATE(9), 1, - aux_sym_qualified_name_repeat1, - STATE(1327), 2, + ACTIONS(2008), 1, + ts_builtin_sym_end, + STATE(1352), 2, sym_comment, sym_include, - ACTIONS(75), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(77), 18, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [67940] = 15, + ACTIONS(2010), 25, + sym_identifier, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [69044] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2228), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2250), 1, + aux_sym_else_if_statement_token1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1328), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [68002] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(197), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1329), 2, + STATE(1353), 2, sym_comment, sym_include, - ACTIONS(195), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, + ACTIONS(301), 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, @@ -103589,23 +104978,19 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [68046] = 6, + [69106] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1956), 1, - ts_builtin_sym_end, - STATE(1330), 2, + STATE(1354), 2, sym_comment, sym_include, - ACTIONS(1712), 25, + ACTIONS(1719), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103630,57 +105015,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68090] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(99), 2, - sym__or_operator, - sym__and_operator, - STATE(1331), 2, - sym_comment, - sym_include, - ACTIONS(97), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [68134] = 6, + [69148] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1976), 1, + ACTIONS(1767), 1, ts_builtin_sym_end, - STATE(1332), 2, + STATE(1355), 2, sym_comment, sym_include, - ACTIONS(1638), 25, + ACTIONS(1769), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103706,43 +105053,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68178] = 15, - ACTIONS(59), 1, + [69192] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(213), 2, + sym__or_operator, + sym__and_operator, + STATE(1356), 2, + sym_comment, + sym_include, + ACTIONS(211), 24, anon_sym_SLASH, - ACTIONS(287), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2230), 1, - anon_sym_LPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1333), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, @@ -103753,20 +105088,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [68240] = 6, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [69236] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1918), 1, - ts_builtin_sym_end, - STATE(1334), 2, + STATE(1357), 2, sym_comment, sym_include, - ACTIONS(1816), 25, + ACTIONS(1932), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103791,19 +105128,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68284] = 6, + [69278] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1974), 1, + ACTIONS(2044), 1, ts_builtin_sym_end, - STATE(1335), 2, + STATE(1358), 2, sym_comment, sym_include, - ACTIONS(1652), 25, + ACTIONS(2012), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103829,40 +105166,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68328] = 15, + [69322] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2232), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2252), 1, + aux_sym_else_if_statement_token1, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1359), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [69384] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2254), 1, + anon_sym_RPAREN, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1336), 2, + STATE(1360), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -103876,20 +105260,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [68390] = 6, + [69446] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1648), 1, - ts_builtin_sym_end, - STATE(1337), 2, + STATE(1361), 2, sym_comment, sym_include, - ACTIONS(1650), 25, + ACTIONS(2256), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103914,19 +105297,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68434] = 6, + [69488] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1692), 1, + ACTIONS(1934), 1, ts_builtin_sym_end, - STATE(1338), 2, + STATE(1362), 2, sym_comment, sym_include, - ACTIONS(1694), 25, + ACTIONS(1936), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103952,66 +105335,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68478] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2234), 1, - aux_sym_else_if_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1339), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [68540] = 6, + [69532] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2236), 1, + ACTIONS(2258), 1, ts_builtin_sym_end, - STATE(1340), 2, + STATE(1363), 2, sym_comment, sym_include, - ACTIONS(2140), 25, + ACTIONS(2260), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104037,43 +105373,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68584] = 15, - ACTIONS(59), 1, + [69576] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(1414), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1364), 2, + sym_comment, + sym_include, + ACTIONS(63), 24, anon_sym_SLASH, - ACTIONS(287), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(2238), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1341), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, @@ -104084,19 +105410,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [68646] = 6, + aux_sym_include_argument_token1, + [69620] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1654), 1, + ACTIONS(2046), 1, ts_builtin_sym_end, - STATE(1342), 2, + STATE(1365), 2, sym_comment, sym_include, - ACTIONS(1656), 25, + ACTIONS(2014), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104122,19 +105449,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68690] = 6, + [69664] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1916), 1, + ACTIONS(1763), 1, ts_builtin_sym_end, - STATE(1343), 2, + STATE(1366), 2, sym_comment, sym_include, - ACTIONS(1820), 25, + ACTIONS(1765), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104160,19 +105487,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68734] = 6, + [69708] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1958), 1, + ACTIONS(1868), 1, ts_builtin_sym_end, - STATE(1344), 2, + STATE(1367), 2, sym_comment, sym_include, - ACTIONS(1710), 25, + ACTIONS(1870), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104198,17 +105525,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68778] = 5, + [69752] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1345), 2, + STATE(1368), 2, sym_comment, sym_include, - ACTIONS(1792), 26, + ACTIONS(1936), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -104235,66 +105562,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68820] = 15, + [69794] = 26, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2240), 1, - anon_sym_RPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1346), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2262), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1652), 1, + sym_of, + STATE(1689), 1, + sym__pre_tuning, + STATE(1733), 1, + sym_where_clause, + STATE(1753), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2107), 1, + aux_sym_for_phrase_repeat2, + STATE(2696), 1, + sym_on_error_phrase, + STATE(2731), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3441), 1, + aux_sym_for_statement_repeat1, + STATE(3458), 1, + sym_on_stop_phrase, + STATE(1369), 2, sym_comment, sym_include, - ACTIONS(307), 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, - [68882] = 6, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [69878] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1658), 1, + ACTIONS(1938), 1, ts_builtin_sym_end, - STATE(1347), 2, + STATE(1370), 2, sym_comment, sym_include, - ACTIONS(1660), 25, + ACTIONS(1940), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104320,58 +105658,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68926] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1348), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namecolon, - sym__or_operator, - sym__and_operator, - ACTIONS(115), 23, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [68970] = 6, + [69922] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1517), 1, - ts_builtin_sym_end, - STATE(1349), 2, + STATE(1371), 2, sym_comment, sym_include, - ACTIONS(1519), 25, + ACTIONS(1940), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104396,20 +105695,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69014] = 6, + [69964] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1513), 1, - ts_builtin_sym_end, - STATE(1350), 2, + STATE(1372), 2, sym_comment, sym_include, - ACTIONS(1515), 25, + ACTIONS(1723), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104434,17 +105732,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69058] = 5, + [70006] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1351), 2, + STATE(1373), 2, sym_comment, sym_include, - ACTIONS(1788), 26, + ACTIONS(1727), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -104471,19 +105769,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69100] = 5, + [70048] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1352), 2, + ACTIONS(1942), 1, + ts_builtin_sym_end, + STATE(1374), 2, sym_comment, sym_include, - ACTIONS(1782), 26, + ACTIONS(1944), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104508,19 +105807,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69142] = 6, + [70092] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1662), 1, + ACTIONS(2264), 1, ts_builtin_sym_end, - STATE(1353), 2, + STATE(1375), 2, sym_comment, sym_include, - ACTIONS(1664), 25, + ACTIONS(2266), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104546,69 +105845,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69186] = 6, - ACTIONS(3), 1, + [70136] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(153), 2, - sym__or_operator, - sym__and_operator, - STATE(1354), 2, - sym_comment, - sym_include, - ACTIONS(151), 24, + ACTIONS(293), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(295), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2268), 1, + aux_sym_if_statement_token2, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 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, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [69230] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(67), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1355), 2, + STATE(1376), 2, sym_comment, sym_include, - ACTIONS(63), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, + ACTIONS(301), 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, @@ -104619,22 +105892,19 @@ 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [69274] = 6, + [70198] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2021), 1, + ACTIONS(1671), 1, ts_builtin_sym_end, - STATE(1356), 2, + STATE(1377), 2, sym_comment, sym_include, - ACTIONS(1511), 25, + ACTIONS(1673), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104660,19 +105930,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69318] = 6, + [70242] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1914), 1, + ACTIONS(1838), 1, ts_builtin_sym_end, - STATE(1357), 2, + STATE(1378), 2, sym_comment, sym_include, - ACTIONS(1826), 25, + ACTIONS(1840), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104698,20 +105968,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69362] = 6, + [70286] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2270), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1646), 1, + sym_of, + STATE(1684), 1, + sym__pre_tuning, + STATE(1744), 1, + aux_sym_for_phrase_repeat1, + STATE(1778), 1, + sym_where_clause, + STATE(1942), 1, + sym_query_tuning, + STATE(2132), 1, + aux_sym_for_phrase_repeat2, + STATE(2676), 1, + sym_on_error_phrase, + STATE(2770), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3155), 1, + aux_sym_for_statement_repeat1, + STATE(3158), 1, + sym_on_stop_phrase, + STATE(1379), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [70370] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1910), 1, - ts_builtin_sym_end, - STATE(1358), 2, + STATE(1380), 2, sym_comment, sym_include, - ACTIONS(1832), 25, + ACTIONS(1944), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104736,20 +106063,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69406] = 6, + [70412] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1908), 1, - ts_builtin_sym_end, - STATE(1359), 2, + STATE(1381), 2, sym_comment, sym_include, - ACTIONS(1834), 25, + ACTIONS(1731), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104774,43 +106100,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69450] = 15, - ACTIONS(59), 1, + [70454] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(221), 2, + sym__or_operator, + sym__and_operator, + STATE(1382), 2, + sym_comment, + sym_include, + ACTIONS(219), 24, anon_sym_SLASH, - ACTIONS(287), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2242), 1, - aux_sym_else_if_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1360), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, @@ -104821,55 +106135,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [69512] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2244), 1, - ts_builtin_sym_end, - STATE(1361), 2, - sym_comment, - sym_include, - ACTIONS(2246), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, + anon_sym_COMMA, aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [69556] = 5, + aux_sym_widget_field_token1, + [70498] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1362), 2, + STATE(1383), 2, sym_comment, sym_include, - ACTIONS(1776), 26, + ACTIONS(1735), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -104896,19 +106175,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69598] = 6, + [70540] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2019), 1, + ACTIONS(1761), 1, ts_builtin_sym_end, - STATE(1363), 2, + STATE(1384), 2, sym_comment, sym_include, - ACTIONS(1507), 25, + ACTIONS(1603), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104934,17 +106213,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69642] = 5, + [70584] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1364), 2, + STATE(1385), 2, sym_comment, sym_include, - ACTIONS(2248), 26, + ACTIONS(1753), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -104971,28 +106250,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69684] = 8, + [70626] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1461), 1, - sym__namedot, - STATE(1373), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(107), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(1365), 2, + STATE(1386), 2, sym_comment, sym_include, - ACTIONS(105), 22, + ACTIONS(83), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - sym__terminator, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -105010,21 +106285,22 @@ 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, - [69732] = 6, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [70670] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1906), 1, - ts_builtin_sym_end, - STATE(1366), 2, + STATE(1387), 2, sym_comment, sym_include, - ACTIONS(1836), 25, + ACTIONS(1703), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105049,17 +106325,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69776] = 5, + [70712] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1367), 2, + STATE(1388), 2, sym_comment, sym_include, - ACTIONS(1772), 26, + ACTIONS(1535), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -105086,19 +106362,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69818] = 5, + [70754] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1368), 2, + ACTIONS(1533), 1, + ts_builtin_sym_end, + STATE(1389), 2, sym_comment, sym_include, - ACTIONS(1768), 26, + ACTIONS(1535), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105123,17 +106400,131 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69860] = 5, + [70798] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1369), 2, + ACTIONS(125), 2, + sym__or_operator, + sym__and_operator, + STATE(1390), 2, + sym_comment, + sym_include, + ACTIONS(123), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [70842] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(161), 2, + sym__or_operator, + sym__and_operator, + STATE(1391), 2, + sym_comment, + sym_include, + ACTIONS(159), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [70886] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1392), 2, + sym_comment, + sym_include, + ACTIONS(63), 24, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + 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_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [70930] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1393), 2, sym_comment, sym_include, - ACTIONS(1764), 26, + ACTIONS(1531), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -105160,17 +106551,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69902] = 5, + [70972] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1370), 2, + STATE(1394), 2, sym_comment, sym_include, - ACTIONS(1760), 26, + ACTIONS(1527), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -105197,19 +106588,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69944] = 5, + [71014] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2272), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1651), 1, + sym_of, + STATE(1690), 1, + sym__pre_tuning, + STATE(1765), 1, + sym_where_clause, + STATE(1786), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2126), 1, + aux_sym_for_phrase_repeat2, + STATE(2589), 1, + sym_on_error_phrase, + STATE(2839), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3194), 1, + sym_on_stop_phrase, + STATE(3195), 1, + aux_sym_for_statement_repeat1, + STATE(1395), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [71098] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1371), 2, + ACTIONS(1759), 1, + ts_builtin_sym_end, + STATE(1396), 2, sym_comment, sym_include, - ACTIONS(1754), 26, + ACTIONS(1609), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105234,19 +106684,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69986] = 6, + [71142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1838), 1, + ACTIONS(1529), 1, ts_builtin_sym_end, - STATE(1372), 2, + STATE(1397), 2, sym_comment, sym_include, - ACTIONS(1840), 25, + ACTIONS(1531), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105272,34 +106722,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70030] = 7, - ACTIONS(3), 1, + [71186] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2250), 1, - sym__namedot, - ACTIONS(81), 2, - sym__or_operator, - sym__and_operator, - STATE(1373), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(79), 22, + ACTIONS(293), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(295), 1, anon_sym_STAR, - sym__terminator, + ACTIONS(2274), 1, + aux_sym_if_statement_token2, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(299), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1398), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, @@ -105310,41 +106769,40 @@ 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, - [70076] = 15, + [71248] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2253), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2276), 1, + anon_sym_RPAREN, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1374), 2, + STATE(1399), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -105358,57 +106816,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [70138] = 5, - ACTIONS(3), 1, + [71310] = 26, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1375), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2278), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1648), 1, + sym_of, + STATE(1686), 1, + sym__pre_tuning, + STATE(1759), 1, + sym_where_clause, + STATE(1762), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2083), 1, + aux_sym_for_phrase_repeat2, + STATE(2705), 1, + sym_on_error_phrase, + STATE(2735), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3141), 1, + aux_sym_for_statement_repeat1, + STATE(3142), 1, + sym_on_stop_phrase, + STATE(1400), 2, sym_comment, sym_include, - ACTIONS(1708), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [70180] = 6, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [71394] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1968), 1, - ts_builtin_sym_end, - STATE(1376), 2, + STATE(1401), 2, sym_comment, sym_include, - ACTIONS(1700), 25, + ACTIONS(1523), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105433,67 +106911,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70224] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2255), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1377), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [70286] = 6, + [71436] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1666), 1, - ts_builtin_sym_end, - STATE(1378), 2, + STATE(1402), 2, sym_comment, sym_include, - ACTIONS(1668), 25, + ACTIONS(1890), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105518,20 +106948,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70330] = 6, + [71478] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1670), 1, - ts_builtin_sym_end, - STATE(1379), 2, + STATE(1403), 2, sym_comment, sym_include, - ACTIONS(1672), 25, + ACTIONS(1745), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105556,19 +106985,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70374] = 6, + [71520] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1752), 1, + ACTIONS(1834), 1, ts_builtin_sym_end, - STATE(1380), 2, + STATE(1404), 2, sym_comment, sym_include, - ACTIONS(1754), 25, + ACTIONS(1836), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105594,58 +107023,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70418] = 6, - ACTIONS(3), 1, + [71564] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1674), 1, - ts_builtin_sym_end, - STATE(1381), 2, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2280), 1, + sym__terminator, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1405), 2, sym_comment, sym_include, - ACTIONS(1676), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [70462] = 6, + ACTIONS(301), 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, + [71626] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1678), 1, - ts_builtin_sym_end, - STATE(1382), 2, + STATE(1406), 2, sym_comment, sym_include, - ACTIONS(1680), 25, + ACTIONS(1749), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105670,20 +107107,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70506] = 6, + [71668] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1758), 1, - ts_builtin_sym_end, - STATE(1383), 2, + STATE(1407), 2, sym_comment, sym_include, - ACTIONS(1760), 25, + ACTIONS(1785), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105708,43 +107144,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70550] = 15, - ACTIONS(59), 1, + [71710] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(135), 2, + sym__or_operator, + sym__and_operator, + STATE(1408), 2, + sym_comment, + sym_include, + ACTIONS(133), 24, anon_sym_SLASH, - ACTIONS(287), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2257), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1384), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, @@ -105755,20 +107179,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [70612] = 6, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [71754] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1682), 1, - ts_builtin_sym_end, - STATE(1385), 2, + STATE(1409), 2, sym_comment, sym_include, - ACTIONS(1684), 25, + ACTIONS(1613), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105793,103 +107219,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70656] = 6, + [71796] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(169), 2, - sym__or_operator, - sym__and_operator, - STATE(1386), 2, + ACTIONS(2016), 1, + ts_builtin_sym_end, + STATE(1410), 2, sym_comment, sym_include, - ACTIONS(167), 24, - anon_sym_SLASH, + ACTIONS(2018), 25, sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [70700] = 26, + 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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [71840] = 26, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2259), 1, + ACTIONS(2282), 1, anon_sym_COLON, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1640), 1, + STATE(1656), 1, sym_of, - STATE(1676), 1, + STATE(1688), 1, sym__pre_tuning, - STATE(1739), 1, + STATE(1749), 1, aux_sym_for_phrase_repeat1, - STATE(1741), 1, + STATE(1752), 1, sym_where_clause, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(2109), 1, + STATE(2112), 1, aux_sym_for_phrase_repeat2, - STATE(2532), 1, + STATE(2655), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2801), 1, + STATE(2811), 1, sym_on_quit_phrase, - STATE(3089), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3293), 1, aux_sym_for_statement_repeat1, - STATE(3104), 1, + STATE(3296), 1, sym_on_stop_phrase, - STATE(1387), 2, + STATE(1411), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [70784] = 6, + [71924] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -105899,7 +107325,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1388), 2, + STATE(1412), 2, sym_comment, sym_include, ACTIONS(109), 24, @@ -105927,20 +107353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [70828] = 6, + [71968] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1878), 1, - ts_builtin_sym_end, - STATE(1389), 2, + STATE(1413), 2, sym_comment, sym_include, - ACTIONS(1880), 25, + ACTIONS(1611), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105965,19 +107390,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70872] = 6, + [72010] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1762), 1, + ACTIONS(2048), 1, ts_builtin_sym_end, - STATE(1390), 2, + STATE(1414), 2, sym_comment, sym_include, - ACTIONS(1764), 25, + ACTIONS(2020), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106003,40 +107428,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70916] = 15, + [72054] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2261), 1, - anon_sym_RPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2284), 1, + sym__terminator, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1391), 2, + STATE(1415), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -106050,20 +107475,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [70978] = 6, + [72116] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1904), 1, - ts_builtin_sym_end, - STATE(1392), 2, + STATE(1416), 2, sym_comment, sym_include, - ACTIONS(1854), 25, + ACTIONS(1609), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106088,20 +107512,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71022] = 6, + [72158] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1902), 1, - ts_builtin_sym_end, - STATE(1393), 2, + STATE(1417), 2, sym_comment, sym_include, - ACTIONS(1856), 25, + ACTIONS(2230), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106126,19 +107549,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71066] = 6, + [72200] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1900), 1, + ACTIONS(2050), 1, ts_builtin_sym_end, - STATE(1394), 2, + STATE(1418), 2, sym_comment, sym_include, - ACTIONS(1858), 25, + ACTIONS(2022), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106164,19 +107587,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71110] = 6, + [72244] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1898), 1, + ACTIONS(1627), 1, ts_builtin_sym_end, - STATE(1395), 2, + STATE(1419), 2, sym_comment, sym_include, - ACTIONS(1860), 25, + ACTIONS(1629), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106202,66 +107625,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71154] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2263), 1, - aux_sym_else_if_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1396), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [71216] = 6, + [72288] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1686), 1, + ACTIONS(1757), 1, ts_builtin_sym_end, - STATE(1397), 2, + STATE(1420), 2, sym_comment, sym_include, - ACTIONS(1688), 25, + ACTIONS(1611), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106287,20 +107663,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71260] = 6, + [72332] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1766), 1, - ts_builtin_sym_end, - STATE(1398), 2, + STATE(1421), 2, sym_comment, sym_include, - ACTIONS(1768), 25, + ACTIONS(1603), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106325,7 +107700,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71304] = 6, + [72374] = 26, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2286), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1676), 1, + sym_of, + STATE(1687), 1, + sym__pre_tuning, + STATE(1770), 1, + sym_where_clause, + STATE(1788), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2063), 1, + aux_sym_for_phrase_repeat2, + STATE(2663), 1, + sym_on_error_phrase, + STATE(2869), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3509), 1, + aux_sym_for_statement_repeat1, + STATE(3514), 1, + sym_on_stop_phrase, + STATE(1422), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [72458] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1423), 2, + sym_comment, + sym_include, + ACTIONS(2266), 26, + sym_identifier, + aux_sym__block_terminator_token1, + aux_sym_input_expression_token1, + aux_sym_primitive_type_token19, + aux_sym_variable_definition_token1, + aux_sym_variable_definition_token2, + aux_sym_buffer_definition_token2, + aux_sym_argument_mode_token1, + aux_sym_if_statement_token1, + aux_sym_repeat_statement_token1, + aux_sym__procedure_terminator_token1, + aux_sym_procedure_parameter_definition_token1, + aux_sym__function_terminator_token1, + aux_sym_interface_statement_token1, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_token1, + aux_sym_on_error_phrase_token3, + aux_sym_do_block_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, + anon_sym_ROUTINE_DASHLEVEL, + anon_sym_BLOCK_DASHLEVEL, + [72500] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -106335,7 +107805,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(201), 2, sym__or_operator, sym__and_operator, - STATE(1399), 2, + STATE(1424), 2, sym_comment, sym_include, ACTIONS(199), 24, @@ -106363,7 +107833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [71348] = 6, + [72544] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -106373,7 +107843,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(1400), 2, + STATE(1425), 2, sym_comment, sym_include, ACTIONS(75), 24, @@ -106401,116 +107871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [71392] = 6, + [72588] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2265), 1, - ts_builtin_sym_end, - STATE(1401), 2, - sym_comment, - sym_include, - ACTIONS(2267), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [71436] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2269), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1626), 1, - sym_of, - STATE(1683), 1, - sym__pre_tuning, - STATE(1774), 1, - sym_where_clause, - STATE(1777), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2104), 1, - aux_sym_for_phrase_repeat2, - STATE(2664), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2868), 1, - sym_on_quit_phrase, - STATE(3114), 1, - sym_on_stop_phrase, - STATE(3116), 1, - aux_sym_for_statement_repeat1, - STATE(1402), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [71520] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2271), 1, - ts_builtin_sym_end, - STATE(1403), 2, + STATE(1426), 2, sym_comment, sym_include, - ACTIONS(2172), 25, + ACTIONS(1765), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106535,40 +107908,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71564] = 15, + [72630] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(285), 1, + ACTIONS(293), 1, anon_sym_SLASH, - ACTIONS(287), 1, + ACTIONS(295), 1, anon_sym_STAR, - ACTIONS(2273), 1, - aux_sym_else_if_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, + ACTIONS(2288), 1, + anon_sym_RPAREN, + STATE(439), 1, sym__comparison_operator, - ACTIONS(291), 2, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, + ACTIONS(299), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(309), 2, + ACTIONS(305), 2, sym__or_operator, sym__and_operator, - STATE(1404), 2, + STATE(1427), 2, sym_comment, sym_include, - ACTIONS(307), 13, + ACTIONS(301), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -106582,20 +107955,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [71626] = 6, + [72692] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1894), 1, - ts_builtin_sym_end, - STATE(1405), 2, + STATE(1428), 2, sym_comment, sym_include, - ACTIONS(1876), 25, + ACTIONS(1769), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106620,19 +107992,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71670] = 5, + [72734] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1406), 2, + ACTIONS(1755), 1, + ts_builtin_sym_end, + STATE(1429), 2, sym_comment, sym_include, - ACTIONS(1818), 26, + ACTIONS(1613), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106657,20 +108030,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71712] = 6, + [72778] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1770), 1, - ts_builtin_sym_end, - STATE(1407), 2, + STATE(1430), 2, sym_comment, sym_include, - ACTIONS(1772), 25, + ACTIONS(1773), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106695,19 +108067,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71756] = 6, + [72820] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1501), 1, + ACTIONS(1737), 1, ts_builtin_sym_end, - STATE(1408), 2, + STATE(1431), 2, sym_comment, sym_include, - ACTIONS(1503), 25, + ACTIONS(1703), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -106733,19 +108105,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71800] = 5, + [72864] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1409), 2, + ACTIONS(1918), 1, + ts_builtin_sym_end, + STATE(1432), 2, sym_comment, sym_include, - ACTIONS(1806), 26, + ACTIONS(1920), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106770,17 +108143,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71842] = 5, + [72908] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1410), 2, + STATE(1433), 2, sym_comment, sym_include, - ACTIONS(1796), 26, + ACTIONS(2036), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106807,17 +108180,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71884] = 5, + [72950] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1411), 2, + STATE(1434), 2, sym_comment, sym_include, - ACTIONS(1794), 26, + ACTIONS(2034), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106844,20 +108217,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71926] = 6, + [72992] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2017), 1, - ts_builtin_sym_end, - STATE(1412), 2, + STATE(1435), 2, sym_comment, sym_include, - ACTIONS(1870), 25, + ACTIONS(2032), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106882,17 +108254,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71970] = 5, + [73034] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1413), 2, + STATE(1436), 2, sym_comment, sym_include, - ACTIONS(1784), 26, + ACTIONS(1928), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106919,43 +108291,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72012] = 15, - ACTIONS(59), 1, + [73076] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, + STATE(1437), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(98), 24, anon_sym_SLASH, - ACTIONS(287), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(2275), 1, - aux_sym_if_statement_token2, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(305), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1414), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, @@ -106966,20 +108327,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [72074] = 6, + aux_sym_include_argument_token1, + [73118] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1892), 1, - ts_builtin_sym_end, - STATE(1415), 2, + STATE(1438), 2, sym_comment, sym_include, - ACTIONS(1882), 25, + ACTIONS(2028), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107004,58 +108365,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72118] = 6, + [73160] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2015), 1, - ts_builtin_sym_end, - STATE(1416), 2, + ACTIONS(2290), 1, + anon_sym_NO_DASHERROR, + ACTIONS(193), 2, + sym__or_operator, + sym__and_operator, + STATE(1439), 2, sym_comment, sym_include, - ACTIONS(1702), 25, + ACTIONS(191), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [72162] = 6, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [73204] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1886), 1, - ts_builtin_sym_end, - STATE(1417), 2, + STATE(1440), 2, sym_comment, sym_include, - ACTIONS(1884), 25, + ACTIONS(2026), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107080,75 +108440,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72206] = 26, - ACTIONS(59), 1, + [73246] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2277), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1642), 1, - sym_of, - STATE(1668), 1, - sym__pre_tuning, - STATE(1730), 1, - sym_where_clause, - STATE(1731), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2045), 1, - aux_sym_for_phrase_repeat2, - STATE(2572), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2818), 1, - sym_on_quit_phrase, - STATE(3040), 1, - sym_on_stop_phrase, - STATE(3055), 1, - aux_sym_for_statement_repeat1, - STATE(1418), 2, + ACTIONS(2292), 1, + anon_sym_NO_DASHERROR, + ACTIONS(629), 2, + sym__or_operator, + sym__and_operator, + STATE(1441), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [72290] = 5, + ACTIONS(627), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [73290] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1419), 2, + STATE(1442), 2, sym_comment, sym_include, - ACTIONS(1778), 26, + ACTIONS(2024), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107175,17 +108515,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72332] = 5, + [73332] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1420), 2, + STATE(1443), 2, sym_comment, sym_include, - ACTIONS(1722), 26, + ACTIONS(2022), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107212,17 +108552,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72374] = 5, + [73374] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2294), 1, + aux_sym_if_statement_token2, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1444), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [73436] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1421), 2, + STATE(1445), 2, sym_comment, sym_include, - ACTIONS(1702), 26, + ACTIONS(2020), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107249,19 +108636,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72416] = 5, + [73478] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1422), 2, + ACTIONS(2296), 1, + ts_builtin_sym_end, + STATE(1446), 2, sym_comment, sym_include, - ACTIONS(1870), 26, + ACTIONS(2298), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107286,19 +108674,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72458] = 5, + [73522] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1423), 2, + ACTIONS(2300), 1, + ts_builtin_sym_end, + STATE(1447), 2, sym_comment, sym_include, - ACTIONS(1503), 26, + ACTIONS(2302), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107323,17 +108712,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72500] = 5, + [73566] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1424), 2, + STATE(1448), 2, sym_comment, sym_include, - ACTIONS(1507), 26, + ACTIONS(1777), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107360,20 +108749,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72542] = 6, + [73608] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1774), 1, - ts_builtin_sym_end, - STATE(1425), 2, + STATE(1449), 2, sym_comment, sym_include, - ACTIONS(1776), 25, + ACTIONS(2018), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107398,17 +108786,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72586] = 5, + [73650] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1426), 2, + STATE(1450), 2, sym_comment, sym_include, - ACTIONS(2246), 26, + ACTIONS(2014), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107435,17 +108823,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72628] = 5, + [73692] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1427), 2, + STATE(1451), 2, sym_comment, sym_include, - ACTIONS(1511), 26, + ACTIONS(1781), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107472,17 +108860,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72670] = 5, + [73734] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1428), 2, + STATE(1452), 2, sym_comment, sym_include, - ACTIONS(1515), 26, + ACTIONS(2260), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107509,17 +108897,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72712] = 5, + [73776] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1429), 2, + STATE(1453), 2, sym_comment, sym_include, - ACTIONS(1519), 26, + ACTIONS(2012), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107546,19 +108934,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72754] = 5, + [73818] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1430), 2, + ACTIONS(1751), 1, + ts_builtin_sym_end, + STATE(1454), 2, sym_comment, sym_include, - ACTIONS(1521), 26, + ACTIONS(1753), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107583,19 +108972,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72796] = 5, + [73862] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1431), 2, + ACTIONS(2052), 1, + ts_builtin_sym_end, + STATE(1455), 2, sym_comment, sym_include, - ACTIONS(1527), 26, + ACTIONS(2024), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107620,20 +109010,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72838] = 6, + [73906] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1872), 1, - ts_builtin_sym_end, - STATE(1432), 2, + STATE(1456), 2, sym_comment, sym_include, - ACTIONS(1874), 25, + ACTIONS(2010), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107658,17 +109047,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72882] = 5, + [73948] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1433), 2, + STATE(1457), 2, sym_comment, sym_include, - ACTIONS(1529), 26, + ACTIONS(2006), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107695,19 +109084,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72924] = 5, + [73990] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1434), 2, + ACTIONS(2054), 1, + ts_builtin_sym_end, + STATE(1458), 2, sym_comment, sym_include, - ACTIONS(2206), 26, + ACTIONS(2026), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107732,17 +109122,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72966] = 5, + [74034] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1435), 2, + STATE(1459), 2, sym_comment, sym_include, - ACTIONS(1531), 26, + ACTIONS(2002), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107769,17 +109159,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73008] = 5, + [74076] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1436), 2, + STATE(1460), 2, sym_comment, sym_include, - ACTIONS(2200), 26, + ACTIONS(2000), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107806,19 +109196,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73050] = 5, + [74118] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1437), 2, + ACTIONS(1810), 1, + ts_builtin_sym_end, + STATE(1461), 2, sym_comment, sym_include, - ACTIONS(2196), 26, + ACTIONS(1812), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107843,19 +109234,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73092] = 5, + [74162] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1438), 2, + ACTIONS(1733), 1, + ts_builtin_sym_end, + STATE(1462), 2, sym_comment, sym_include, - ACTIONS(1495), 26, + ACTIONS(1735), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107880,17 +109272,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73134] = 5, + [74206] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1439), 2, + STATE(1463), 2, sym_comment, sym_include, - ACTIONS(1539), 26, + ACTIONS(1998), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107917,20 +109309,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73176] = 6, + [74248] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1960), 1, - ts_builtin_sym_end, - STATE(1440), 2, + STATE(1464), 2, sym_comment, sym_include, - ACTIONS(1708), 25, + ACTIONS(2216), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107955,20 +109346,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73220] = 6, + [74290] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1780), 1, - ts_builtin_sym_end, - STATE(1441), 2, + STATE(1465), 2, sym_comment, sym_include, - ACTIONS(1782), 25, + ACTIONS(1980), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107993,19 +109383,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73264] = 5, + [74332] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1442), 2, + ACTIONS(2304), 1, + ts_builtin_sym_end, + STATE(1466), 2, sym_comment, sym_include, - ACTIONS(1543), 26, + ACTIONS(2234), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108030,17 +109421,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73306] = 5, + [74376] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1443), 2, + STATE(1467), 2, sym_comment, sym_include, - ACTIONS(1545), 26, + ACTIONS(2147), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108067,19 +109458,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73348] = 5, + [74418] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2306), 1, + aux_sym_function_call_token1, + ACTIONS(155), 2, + sym__or_operator, + sym__and_operator, + STATE(1468), 2, + sym_comment, + sym_include, + ACTIONS(153), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [74462] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1444), 2, + ACTIONS(1693), 1, + ts_builtin_sym_end, + STATE(1469), 2, sym_comment, sym_include, - ACTIONS(2138), 26, + ACTIONS(1695), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108104,17 +109534,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73390] = 5, + [74506] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1445), 2, + STATE(1470), 2, sym_comment, sym_include, - ACTIONS(2134), 26, + ACTIONS(1793), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108141,20 +109571,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73432] = 6, + [74548] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1866), 1, - ts_builtin_sym_end, - STATE(1446), 2, + STATE(1471), 2, sym_comment, sym_include, - ACTIONS(1868), 25, + ACTIONS(1797), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108179,20 +109608,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73476] = 6, + [74590] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1862), 1, - ts_builtin_sym_end, - STATE(1447), 2, + STATE(1472), 2, sym_comment, sym_include, - ACTIONS(1864), 25, + ACTIONS(1801), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108217,17 +109645,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73520] = 5, + [74632] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1448), 2, + STATE(1473), 2, sym_comment, sym_include, - ACTIONS(1547), 26, + ACTIONS(2308), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108254,64 +109682,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73562] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2279), 1, - sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1449), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [73624] = 5, + [74674] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1450), 2, + STATE(1474), 2, sym_comment, sym_include, - ACTIONS(1694), 26, + ACTIONS(2212), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108338,19 +109719,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73666] = 5, + [74716] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1451), 2, + ACTIONS(1697), 1, + ts_builtin_sym_end, + STATE(1475), 2, sym_comment, sym_include, - ACTIONS(1549), 26, + ACTIONS(1699), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108375,17 +109757,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73708] = 5, + [74760] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1452), 2, + STATE(1476), 2, sym_comment, sym_include, - ACTIONS(1650), 26, + ACTIONS(2208), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108412,19 +109794,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73750] = 6, + [74802] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2013), 1, + ACTIONS(1729), 1, ts_builtin_sym_end, - STATE(1453), 2, + STATE(1477), 2, sym_comment, sym_include, - ACTIONS(1722), 25, + ACTIONS(1731), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108450,17 +109832,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73794] = 5, + [74846] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1454), 2, + STATE(1478), 2, sym_comment, sym_include, - ACTIONS(2128), 26, + ACTIONS(1968), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108487,17 +109869,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73836] = 5, + [74888] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1455), 2, + STATE(1479), 2, sym_comment, sym_include, - ACTIONS(1646), 26, + ACTIONS(1996), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108524,20 +109906,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73878] = 6, + [74930] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2011), 1, - ts_builtin_sym_end, - STATE(1456), 2, + STATE(1480), 2, sym_comment, sym_include, - ACTIONS(1778), 25, + ACTIONS(1992), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108562,17 +109943,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73922] = 5, + [74972] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1457), 2, + STATE(1481), 2, sym_comment, sym_include, - ACTIONS(1551), 26, + ACTIONS(1741), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108599,20 +109980,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73964] = 6, + [75014] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2281), 1, - ts_builtin_sym_end, - STATE(1458), 2, + STATE(1482), 2, sym_comment, sym_include, - ACTIONS(2192), 25, + ACTIONS(2157), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108637,17 +110017,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74008] = 5, + [75056] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1459), 2, + STATE(1483), 2, sym_comment, sym_include, - ACTIONS(1642), 26, + ACTIONS(2153), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108674,17 +110054,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74050] = 5, + [75098] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1460), 2, + STATE(1484), 2, sym_comment, sym_include, - ACTIONS(1553), 26, + ACTIONS(1916), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108711,17 +110091,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74092] = 5, + [75140] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1461), 2, + STATE(1485), 2, sym_comment, sym_include, - ACTIONS(1557), 26, + ACTIONS(1904), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108748,19 +110128,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74134] = 5, + [75182] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1462), 2, + ACTIONS(2056), 1, + ts_builtin_sym_end, + STATE(1486), 2, sym_comment, sym_include, - ACTIONS(1561), 26, + ACTIONS(2028), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108785,17 +110166,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74176] = 5, + [75226] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1463), 2, + STATE(1487), 2, sym_comment, sym_include, - ACTIONS(1565), 26, + ACTIONS(1948), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108822,19 +110203,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74218] = 5, + [75268] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1464), 2, + ACTIONS(2061), 1, + ts_builtin_sym_end, + STATE(1488), 2, sym_comment, sym_include, - ACTIONS(1567), 26, + ACTIONS(1928), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108859,19 +110241,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74260] = 5, + [75312] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2310), 1, + aux_sym_function_call_token1, + ACTIONS(129), 2, + sym__or_operator, + sym__and_operator, + STATE(1489), 2, + sym_comment, + sym_include, + ACTIONS(127), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [75356] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1465), 2, + ACTIONS(1725), 1, + ts_builtin_sym_end, + STATE(1490), 2, sym_comment, sym_include, - ACTIONS(2063), 26, + ACTIONS(1727), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108896,56 +110317,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74302] = 5, + [75400] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2312), 1, + aux_sym_else_if_statement_token1, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1491), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [75462] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1466), 2, + ACTIONS(1478), 1, + sym__namedot, + STATE(1535), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, + sym__or_operator, + sym__and_operator, + STATE(1492), 2, sym_comment, sym_include, - ACTIONS(2059), 26, + ACTIONS(79), 22, + anon_sym_SLASH, sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [74344] = 6, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [75510] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2283), 1, + ACTIONS(1721), 1, ts_builtin_sym_end, - STATE(1467), 2, + STATE(1493), 2, sym_comment, sym_include, - ACTIONS(2248), 25, + ACTIONS(1723), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108971,66 +110442,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74388] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2285), 1, - anon_sym_RPAREN, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1468), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [74450] = 5, + [75554] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1469), 2, + ACTIONS(1803), 1, + ts_builtin_sym_end, + STATE(1494), 2, sym_comment, sym_include, - ACTIONS(1569), 26, + ACTIONS(1805), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109055,17 +110480,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74492] = 5, + [75598] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1470), 2, + STATE(1495), 2, sym_comment, sym_include, - ACTIONS(1571), 26, + ACTIONS(2139), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109092,17 +110517,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74534] = 5, + [75640] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1471), 2, + STATE(1496), 2, sym_comment, sym_include, - ACTIONS(1573), 26, + ACTIONS(1898), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109129,19 +110554,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74576] = 5, + [75682] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2314), 1, + anon_sym_RPAREN, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1497), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [75744] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1472), 2, + ACTIONS(1799), 1, + ts_builtin_sym_end, + STATE(1498), 2, sym_comment, sym_include, - ACTIONS(1578), 26, + ACTIONS(1801), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109166,78 +110639,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74618] = 26, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2287), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1627), 1, - sym_of, - STATE(1682), 1, - sym__pre_tuning, - STATE(1751), 1, - sym_where_clause, - STATE(1752), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2119), 1, - aux_sym_for_phrase_repeat2, - STATE(2534), 1, - sym_on_error_phrase, - STATE(2782), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3122), 1, - sym_on_stop_phrase, - STATE(3132), 1, - aux_sym_for_statement_repeat1, - STATE(1473), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [74702] = 6, + [75788] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1850), 1, - ts_builtin_sym_end, - STATE(1474), 2, + STATE(1499), 2, sym_comment, sym_include, - ACTIONS(1852), 25, + ACTIONS(1894), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109262,19 +110676,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74746] = 5, + [75830] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1475), 2, + ACTIONS(2316), 1, + ts_builtin_sym_end, + STATE(1500), 2, sym_comment, sym_include, - ACTIONS(2104), 26, + ACTIONS(2256), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109299,19 +110714,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74788] = 5, + [75874] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1476), 2, + ACTIONS(2318), 1, + ts_builtin_sym_end, + STATE(1501), 2, sym_comment, sym_include, - ACTIONS(2108), 26, + ACTIONS(2308), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109336,17 +110752,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74830] = 5, + [75918] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1477), 2, + STATE(1502), 2, sym_comment, sym_include, - ACTIONS(1499), 26, + ACTIONS(1988), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109373,17 +110789,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74872] = 5, + [75960] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1478), 2, + STATE(1503), 2, sym_comment, sym_include, - ACTIONS(1580), 26, + ACTIONS(1952), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109410,19 +110826,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74914] = 5, + [76002] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1479), 2, + ACTIONS(1701), 1, + ts_builtin_sym_end, + STATE(1504), 2, sym_comment, sym_include, - ACTIONS(1586), 26, + ACTIONS(1653), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109447,17 +110864,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74956] = 5, + [76046] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1480), 2, + STATE(1505), 2, sym_comment, sym_include, - ACTIONS(1590), 26, + ACTIONS(1984), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109484,17 +110901,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74998] = 5, + [76088] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1481), 2, + STATE(1506), 2, sym_comment, sym_include, - ACTIONS(1594), 26, + ACTIONS(1956), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109521,20 +110938,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75040] = 6, + [76130] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1846), 1, - ts_builtin_sym_end, - STATE(1482), 2, + STATE(1507), 2, sym_comment, sym_include, - ACTIONS(1848), 25, + ACTIONS(1960), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109559,19 +110975,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75084] = 6, + [76172] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1790), 1, + ACTIONS(2063), 1, ts_builtin_sym_end, - STATE(1483), 2, + STATE(1508), 2, sym_comment, sym_include, - ACTIONS(1792), 25, + ACTIONS(2032), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109597,19 +111013,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75128] = 6, + [76216] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2009), 1, + ACTIONS(2065), 1, ts_builtin_sym_end, - STATE(1484), 2, + STATE(1509), 2, sym_comment, sym_include, - ACTIONS(1784), 25, + ACTIONS(2034), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109635,17 +111051,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75172] = 5, + [76260] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1485), 2, + STATE(1510), 2, sym_comment, sym_include, - ACTIONS(1598), 26, + ACTIONS(1964), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109672,20 +111088,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75214] = 6, + [76302] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2007), 1, - ts_builtin_sym_end, - STATE(1486), 2, + STATE(1511), 2, sym_comment, sym_include, - ACTIONS(1794), 25, + ACTIONS(1972), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109710,17 +111125,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75258] = 5, + [76344] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1487), 2, + STATE(1512), 2, sym_comment, sym_include, - ACTIONS(1602), 26, + ACTIONS(1976), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109747,55 +111162,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75300] = 6, + [76386] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(129), 2, - sym__or_operator, - sym__and_operator, - STATE(1488), 2, - sym_comment, - sym_include, - ACTIONS(127), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - 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_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [75344] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1489), 2, + STATE(1513), 2, sym_comment, sym_include, - ACTIONS(1606), 26, + ACTIONS(1519), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109822,20 +111199,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75386] = 6, + [76428] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1842), 1, - ts_builtin_sym_end, - STATE(1490), 2, + STATE(1514), 2, sym_comment, sym_include, - ACTIONS(1844), 25, + ACTIONS(2240), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109860,17 +111236,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75430] = 5, + [76470] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1491), 2, + STATE(1515), 2, sym_comment, sym_include, - ACTIONS(2154), 26, + ACTIONS(2246), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109897,20 +111273,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75472] = 6, + [76512] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1786), 1, - ts_builtin_sym_end, - STATE(1492), 2, + STATE(1516), 2, sym_comment, sym_include, - ACTIONS(1788), 25, + ACTIONS(1882), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109935,17 +111310,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75516] = 5, + [76554] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1493), 2, + STATE(1517), 2, sym_comment, sym_include, - ACTIONS(1608), 26, + ACTIONS(1805), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109972,17 +111347,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75558] = 5, + [76596] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1494), 2, + STATE(1518), 2, sym_comment, sym_include, - ACTIONS(1696), 26, + ACTIONS(1820), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110009,20 +111384,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75600] = 6, + [76638] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1970), 1, - ts_builtin_sym_end, - STATE(1495), 2, + STATE(1519), 2, sym_comment, sym_include, - ACTIONS(1696), 25, + ACTIONS(1870), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110047,19 +111421,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75644] = 5, + [76680] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1496), 2, + ACTIONS(2067), 1, + ts_builtin_sym_end, + STATE(1520), 2, sym_comment, sym_include, - ACTIONS(1612), 26, + ACTIONS(2036), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110084,17 +111459,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75686] = 5, + [76724] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1497), 2, + STATE(1521), 2, sym_comment, sym_include, - ACTIONS(2150), 26, + ACTIONS(1840), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110121,17 +111496,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75728] = 5, + [76766] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1498), 2, + STATE(1522), 2, sym_comment, sym_include, - ACTIONS(1614), 26, + ACTIONS(1824), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110158,17 +111533,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75770] = 5, + [76808] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1499), 2, + STATE(1523), 2, sym_comment, sym_include, - ACTIONS(2190), 26, + ACTIONS(1836), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110195,19 +111570,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75812] = 5, + [76850] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1500), 2, + ACTIONS(1521), 1, + ts_builtin_sym_end, + STATE(1524), 2, sym_comment, sym_include, - ACTIONS(1616), 26, + ACTIONS(1523), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110232,17 +111608,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75854] = 5, + [76894] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1501), 2, + STATE(1525), 2, sym_comment, sym_include, - ACTIONS(1618), 26, + ACTIONS(1828), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110269,19 +111645,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75896] = 5, + [76936] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1502), 2, + ACTIONS(1717), 1, + ts_builtin_sym_end, + STATE(1526), 2, sym_comment, sym_include, - ACTIONS(1620), 26, + ACTIONS(1719), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110306,17 +111683,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75938] = 5, + [76980] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(293), 1, + anon_sym_SLASH, + ACTIONS(295), 1, + anon_sym_STAR, + ACTIONS(2320), 1, + aux_sym_else_if_statement_token1, + STATE(439), 1, + sym__comparison_operator, + STATE(440), 1, + sym__multiplicative_operator, + STATE(441), 1, + sym__additive_operator, + STATE(442), 1, + sym__logical_operator, + ACTIONS(297), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(299), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(305), 2, + sym__or_operator, + sym__and_operator, + STATE(1527), 2, + sym_comment, + sym_include, + ACTIONS(301), 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, + [77042] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1503), 2, + STATE(1528), 2, sym_comment, sym_include, - ACTIONS(1622), 26, + ACTIONS(1832), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110343,19 +111767,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75980] = 5, + [77084] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1504), 2, + ACTIONS(1970), 1, + ts_builtin_sym_end, + STATE(1529), 2, sym_comment, sym_include, - ACTIONS(1624), 26, + ACTIONS(1972), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110380,27 +111805,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76022] = 5, + [77128] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1505), 2, + ACTIONS(2322), 1, + aux_sym_buffer_definition_token2, + ACTIONS(2324), 1, + aux_sym_repeat_statement_token1, + ACTIONS(2326), 1, + aux_sym_do_block_token1, + STATE(1530), 2, sym_comment, sym_include, - ACTIONS(1636), 26, + ACTIONS(2077), 23, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, aux_sym_argument_mode_token1, aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, aux_sym__procedure_terminator_token1, aux_sym_procedure_parameter_definition_token1, aux_sym__function_terminator_token1, @@ -110408,7 +111837,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, aux_sym_on_error_phrase_token3, - aux_sym_do_block_token1, aux_sym__case_terminator_token1, aux_sym_find_statement_token1, aux_sym_assign_statement_token1, @@ -110417,20 +111845,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76064] = 6, + [77176] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2005), 1, - ts_builtin_sym_end, - STATE(1506), 2, + STATE(1531), 2, sym_comment, sym_include, - ACTIONS(1796), 25, + ACTIONS(1850), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110455,20 +111882,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76108] = 6, + [77218] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2003), 1, - ts_builtin_sym_end, - STATE(1507), 2, + STATE(1532), 2, sym_comment, sym_include, - ACTIONS(1806), 25, + ACTIONS(2093), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110493,19 +111919,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76152] = 6, + [77260] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1828), 1, + ACTIONS(1713), 1, ts_builtin_sym_end, - STATE(1508), 2, + STATE(1533), 2, sym_comment, sym_include, - ACTIONS(1830), 25, + ACTIONS(1715), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110531,17 +111957,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76196] = 5, + [77304] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1509), 2, + STATE(1534), 2, sym_comment, sym_include, - ACTIONS(1638), 26, + ACTIONS(1846), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110568,26 +111994,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76238] = 6, + [77346] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2289), 1, - anon_sym_NO_DASHERROR, - ACTIONS(623), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2328), 1, + sym__namedot, + ACTIONS(100), 2, sym__or_operator, sym__and_operator, - STATE(1510), 2, + STATE(1535), 3, sym_comment, sym_include, - ACTIONS(621), 24, + aux_sym_qualified_name_repeat1, + ACTIONS(98), 22, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -110605,20 +112032,21 @@ 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_include_argument_token1, - [76282] = 5, + anon_sym_NO_DASHERROR, + [77392] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1511), 2, + ACTIONS(1962), 1, + ts_builtin_sym_end, + STATE(1536), 2, sym_comment, sym_include, - ACTIONS(1652), 26, + ACTIONS(1964), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110643,102 +112071,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76324] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2291), 1, - anon_sym_NO_DASHERROR, - ACTIONS(213), 2, - sym__or_operator, - sym__and_operator, - STATE(1512), 2, - sym_comment, - sym_include, - ACTIONS(211), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_include_argument_token1, - [76368] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2293), 1, - sym__terminator, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1513), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [76430] = 5, + [77436] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1514), 2, + STATE(1537), 2, sym_comment, sym_include, - ACTIONS(1656), 26, + ACTIONS(2298), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110765,19 +112108,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76472] = 5, + [77478] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1515), 2, + ACTIONS(1709), 1, + ts_builtin_sym_end, + STATE(1538), 2, sym_comment, sym_include, - ACTIONS(1660), 26, + ACTIONS(1711), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110802,19 +112146,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76514] = 5, + [77522] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1516), 2, + ACTIONS(1958), 1, + ts_builtin_sym_end, + STATE(1539), 2, sym_comment, sym_include, - ACTIONS(1664), 26, + ACTIONS(1960), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110839,56 +112184,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76556] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1517), 2, - sym_comment, - sym_include, - ACTIONS(81), 3, - sym__namedot, - sym__or_operator, - sym__and_operator, - ACTIONS(79), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_include_argument_token1, - [76598] = 6, + [77566] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2001), 1, + ACTIONS(1954), 1, ts_builtin_sym_end, - STATE(1518), 2, + STATE(1540), 2, sym_comment, sym_include, - ACTIONS(1818), 25, + ACTIONS(1956), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110914,66 +112222,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76642] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(285), 1, - anon_sym_SLASH, - ACTIONS(287), 1, - anon_sym_STAR, - ACTIONS(2295), 1, - aux_sym_else_if_statement_token1, - STATE(355), 1, - sym__logical_operator, - STATE(448), 1, - sym__additive_operator, - STATE(453), 1, - sym__multiplicative_operator, - STATE(489), 1, - sym__comparison_operator, - ACTIONS(291), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(305), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(309), 2, - sym__or_operator, - sym__and_operator, - STATE(1519), 2, - sym_comment, - sym_include, - ACTIONS(307), 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, - [76704] = 5, + [77610] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1520), 2, + ACTIONS(1705), 1, + ts_builtin_sym_end, + STATE(1541), 2, sym_comment, sym_include, - ACTIONS(1668), 26, + ACTIONS(1707), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110998,19 +112260,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76746] = 5, + [77654] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1521), 2, + ACTIONS(1946), 1, + ts_builtin_sym_end, + STATE(1542), 2, sym_comment, sym_include, - ACTIONS(1672), 26, + ACTIONS(1948), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111035,17 +112298,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76788] = 5, + [77698] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1522), 2, + STATE(1543), 2, sym_comment, sym_include, - ACTIONS(1676), 26, + ACTIONS(2121), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111072,318 +112335,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76830] = 5, + [77740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1523), 2, - sym_comment, - sym_include, - ACTIONS(1680), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [76872] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1524), 2, - sym_comment, - sym_include, - ACTIONS(1684), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [76914] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1525), 2, - sym_comment, - sym_include, - ACTIONS(1688), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [76956] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1526), 2, - sym_comment, - sym_include, - ACTIONS(2267), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [76998] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1527), 2, - sym_comment, - sym_include, - ACTIONS(2080), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [77040] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2297), 1, - aux_sym_buffer_definition_token2, - ACTIONS(2299), 1, - aux_sym_repeat_statement_token1, - ACTIONS(2301), 1, - aux_sym_do_block_token1, - STATE(1528), 2, - sym_comment, - sym_include, - ACTIONS(2080), 23, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - 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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [77088] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1529), 2, - sym_comment, - sym_include, - ACTIONS(1628), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [77130] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1530), 2, - sym_comment, - sym_include, - ACTIONS(2114), 26, - sym_identifier, - aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [77172] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1822), 1, + ACTIONS(1950), 1, ts_builtin_sym_end, - STATE(1531), 2, + STATE(1544), 2, sym_comment, sym_include, - ACTIONS(1824), 25, + ACTIONS(1952), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -111409,17 +112373,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77216] = 5, + [77784] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1532), 2, + STATE(1545), 2, sym_comment, sym_include, - ACTIONS(1632), 26, + ACTIONS(2302), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111446,55 +112410,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77258] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1888), 1, - ts_builtin_sym_end, - STATE(1533), 2, - sym_comment, - sym_include, - ACTIONS(1890), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, - aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, - aux_sym_repeat_statement_token1, - aux_sym__procedure_terminator_token1, - aux_sym_procedure_parameter_definition_token1, - aux_sym__function_terminator_token1, - aux_sym_interface_statement_token1, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_on_error_phrase_token3, - aux_sym_do_block_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, - anon_sym_ROUTINE_DASHLEVEL, - anon_sym_BLOCK_DASHLEVEL, - [77302] = 5, + [77826] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1534), 2, + STATE(1546), 2, sym_comment, sym_include, - ACTIONS(1690), 26, + ACTIONS(1812), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111521,54 +112447,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77344] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(149), 2, - sym__or_operator, - sym__and_operator, - STATE(1535), 2, - sym_comment, - sym_include, - ACTIONS(147), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_include_argument_token1, - [77385] = 5, + [77868] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(111), 2, + ACTIONS(209), 2, sym__or_operator, sym__and_operator, - STATE(1536), 2, + STATE(1547), 2, sym_comment, sym_include, - ACTIONS(109), 24, + ACTIONS(207), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111593,22 +112483,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77426] = 7, + [77909] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2303), 1, - sym__namedot, - ACTIONS(111), 2, + ACTIONS(1476), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(1537), 2, + STATE(1548), 2, sym_comment, sym_include, - ACTIONS(109), 22, + ACTIONS(63), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -111631,18 +112521,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [77471] = 5, + [77954] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(201), 2, + ACTIONS(173), 2, sym__or_operator, sym__and_operator, - STATE(1538), 2, + STATE(1549), 2, sym_comment, sym_include, - ACTIONS(199), 24, + ACTIONS(171), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111667,18 +112557,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77512] = 5, + [77995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(77), 2, + ACTIONS(169), 2, sym__or_operator, sym__and_operator, - STATE(1539), 2, + STATE(1550), 2, sym_comment, sym_include, - ACTIONS(75), 24, + ACTIONS(167), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111703,7 +112593,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77553] = 5, + [78036] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -111711,7 +112601,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(217), 2, sym__or_operator, sym__and_operator, - STATE(1540), 2, + STATE(1551), 2, sym_comment, sym_include, ACTIONS(215), 24, @@ -111739,18 +112629,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77594] = 5, + [78077] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(193), 2, + ACTIONS(121), 2, sym__or_operator, sym__and_operator, - STATE(1541), 2, + STATE(1552), 2, sym_comment, sym_include, - ACTIONS(191), 24, + ACTIONS(119), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111775,18 +112665,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77635] = 5, + [78118] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(141), 2, + ACTIONS(225), 2, sym__or_operator, sym__and_operator, - STATE(1542), 2, + STATE(1553), 2, sym_comment, sym_include, - ACTIONS(139), 24, + ACTIONS(223), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111811,24 +112701,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77676] = 5, + [78159] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(137), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1476), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(1543), 2, + STATE(1554), 2, sym_comment, sym_include, - ACTIONS(135), 24, + ACTIONS(75), 22, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -111846,19 +112738,19 @@ 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_include_argument_token1, - [77717] = 5, + anon_sym_NO_DASHERROR, + [78204] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(169), 2, + ACTIONS(205), 2, sym__or_operator, sym__and_operator, - STATE(1544), 2, + STATE(1555), 2, sym_comment, sym_include, - ACTIONS(167), 24, + ACTIONS(203), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111883,54 +112775,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77758] = 5, - ACTIONS(3), 1, + [78245] = 24, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(213), 2, - sym__or_operator, - sym__and_operator, - STATE(1545), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1680), 1, + sym_of, + STATE(1727), 1, + sym__pre_tuning, + STATE(1808), 1, + sym_where_clause, + STATE(1813), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2183), 1, + aux_sym_for_phrase_repeat2, + STATE(2870), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2956), 1, + sym_on_quit_phrase, + STATE(4069), 1, + sym_on_stop_phrase, + ACTIONS(2331), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1556), 2, sym_comment, sym_include, - ACTIONS(211), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, - 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, - aux_sym_include_argument_token1, - [77799] = 5, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [78324] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(181), 2, + ACTIONS(193), 2, sym__or_operator, sym__and_operator, - STATE(1546), 2, + STATE(1557), 2, sym_comment, sym_include, - ACTIONS(179), 24, + ACTIONS(191), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -111955,22 +112866,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77840] = 7, + [78365] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1459), 1, - anon_sym_LPAREN, - ACTIONS(77), 2, + ACTIONS(2333), 1, + sym__namedot, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1547), 2, + STATE(1558), 2, sym_comment, sym_include, - ACTIONS(75), 22, + ACTIONS(109), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -111993,18 +112904,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [77885] = 5, + [78410] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(185), 2, + ACTIONS(165), 2, sym__or_operator, sym__and_operator, - STATE(1548), 2, + STATE(1559), 2, sym_comment, sym_include, - ACTIONS(183), 24, + ACTIONS(163), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112029,18 +112940,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77926] = 5, - ACTIONS(3), 1, + [78451] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(205), 2, - sym__or_operator, - sym__and_operator, - STATE(1549), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2337), 1, + aux_sym_variable_definition_token2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1560), 2, sym_comment, sym_include, - ACTIONS(203), 24, + ACTIONS(2335), 22, + sym__terminator, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + anon_sym_COMMA, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [78498] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(177), 2, + sym__or_operator, + sym__and_operator, + STATE(1561), 2, + sym_comment, + sym_include, + ACTIONS(175), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112065,18 +113015,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77967] = 5, + [78539] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(161), 2, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(1550), 2, + STATE(1562), 2, sym_comment, sym_include, - ACTIONS(159), 24, + ACTIONS(75), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112101,18 +113051,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78008] = 5, + [78580] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 2, + ACTIONS(201), 2, sym__or_operator, sym__and_operator, - STATE(1551), 2, + STATE(1563), 2, sym_comment, sym_include, - ACTIONS(123), 24, + ACTIONS(199), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112137,18 +113087,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78049] = 5, + [78621] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(88), 2, + ACTIONS(143), 2, sym__or_operator, sym__and_operator, - STATE(1552), 2, + STATE(1564), 2, sym_comment, sym_include, - ACTIONS(86), 24, + ACTIONS(141), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112173,18 +113123,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78090] = 5, + [78662] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(165), 2, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1553), 2, + STATE(1565), 2, sym_comment, sym_include, - ACTIONS(163), 24, + ACTIONS(109), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112209,18 +113159,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78131] = 5, + [78703] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(129), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1566), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namedot, sym__or_operator, sym__and_operator, - STATE(1554), 2, + ACTIONS(98), 22, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [78746] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(147), 2, + sym__or_operator, + sym__and_operator, + STATE(1567), 2, sym_comment, sym_include, - ACTIONS(127), 24, + ACTIONS(145), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112245,57 +113232,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78172] = 8, - ACTIONS(59), 1, + [78787] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2307), 1, - aux_sym_variable_definition_token2, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1555), 2, + ACTIONS(181), 2, + sym__or_operator, + sym__and_operator, + STATE(1568), 2, sym_comment, sym_include, - ACTIONS(2305), 22, - sym__terminator, - aux_sym__block_terminator_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - anon_sym_COMMA, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [78219] = 5, + ACTIONS(179), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [78828] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(197), 2, + ACTIONS(135), 2, sym__or_operator, sym__and_operator, - STATE(1556), 2, + STATE(1569), 2, sym_comment, sym_include, - ACTIONS(195), 24, + ACTIONS(133), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112320,18 +113304,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78260] = 5, + [78869] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(189), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2339), 1, + aux_sym_function_call_token1, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(1557), 2, + STATE(1570), 2, sym_comment, sym_include, - ACTIONS(187), 24, + ACTIONS(153), 22, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [78914] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1571), 2, + sym_comment, + sym_include, + ACTIONS(63), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112356,18 +113378,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78301] = 5, + [78955] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(145), 2, + ACTIONS(151), 2, sym__or_operator, sym__and_operator, - STATE(1558), 2, + STATE(1572), 2, sym_comment, sym_include, - ACTIONS(143), 24, + ACTIONS(149), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112392,18 +113414,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78342] = 5, + [78996] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(173), 2, + ACTIONS(185), 2, sym__or_operator, sym__and_operator, - STATE(1559), 2, + STATE(1573), 2, sym_comment, sym_include, - ACTIONS(171), 24, + ACTIONS(183), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112428,18 +113450,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78383] = 5, + [79037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(67), 2, + ACTIONS(125), 2, sym__or_operator, sym__and_operator, - STATE(1560), 2, + STATE(1574), 2, sym_comment, sym_include, - ACTIONS(63), 24, + ACTIONS(123), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112464,18 +113486,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78424] = 5, + [79078] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(153), 2, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(1561), 2, + STATE(1575), 2, sym_comment, sym_include, - ACTIONS(151), 24, + ACTIONS(153), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112500,18 +113522,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78465] = 5, + [79119] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(209), 2, + ACTIONS(221), 2, sym__or_operator, sym__and_operator, - STATE(1562), 2, + STATE(1576), 2, sym_comment, sym_include, - ACTIONS(207), 24, + ACTIONS(219), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112536,18 +113558,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78506] = 5, + [79160] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(157), 2, + ACTIONS(197), 2, sym__or_operator, sym__and_operator, - STATE(1563), 2, + STATE(1577), 2, sym_comment, sym_include, - ACTIONS(155), 24, + ACTIONS(195), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112572,25 +113594,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78547] = 6, + [79201] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1564), 2, - sym_comment, - sym_include, - ACTIONS(81), 3, - sym__namedot, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - ACTIONS(79), 22, + STATE(1578), 2, + sym_comment, + sym_include, + ACTIONS(87), 24, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - sym__terminator, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -112608,19 +113629,19 @@ 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, - [78590] = 5, + aux_sym_include_argument_token1, + [79242] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(177), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(1565), 2, + STATE(1579), 2, sym_comment, sym_include, - ACTIONS(175), 24, + ACTIONS(83), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112645,18 +113666,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78631] = 5, + [79283] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 2, + ACTIONS(139), 2, sym__or_operator, sym__and_operator, - STATE(1566), 2, + STATE(1580), 2, sym_comment, sym_include, - ACTIONS(119), 24, + ACTIONS(137), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112681,18 +113702,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78672] = 5, + [79324] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(133), 2, + ACTIONS(161), 2, sym__or_operator, sym__and_operator, - STATE(1567), 2, + STATE(1581), 2, sym_comment, sym_include, - ACTIONS(131), 24, + ACTIONS(159), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112717,22 +113738,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78713] = 7, + [79365] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1459), 1, - anon_sym_LPAREN, - ACTIONS(67), 2, + ACTIONS(2341), 1, + aux_sym_function_call_token1, + ACTIONS(129), 2, sym__or_operator, sym__and_operator, - STATE(1568), 2, + STATE(1582), 2, sym_comment, sym_include, - ACTIONS(63), 22, + ACTIONS(127), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -112755,18 +113776,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [78758] = 5, + [79410] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(99), 2, + ACTIONS(189), 2, sym__or_operator, sym__and_operator, - STATE(1569), 2, + STATE(1583), 2, sym_comment, sym_include, - ACTIONS(97), 24, + ACTIONS(187), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112791,75 +113812,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78799] = 24, - ACTIONS(59), 1, + [79451] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1679), 1, - sym_of, - STATE(1715), 1, - sym__pre_tuning, - STATE(1799), 1, - aux_sym_for_phrase_repeat1, - STATE(1800), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2135), 1, - aux_sym_for_phrase_repeat2, - STATE(2779), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2987), 1, - sym_on_quit_phrase, - STATE(3939), 1, - sym_on_stop_phrase, - ACTIONS(2309), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1570), 2, + ACTIONS(213), 2, + sym__or_operator, + sym__and_operator, + STATE(1584), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [78878] = 6, + ACTIONS(211), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, + 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, + aux_sym_include_argument_token1, + [79492] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(129), 2, + ACTIONS(143), 2, sym__or_operator, sym__and_operator, - STATE(1571), 2, + STATE(1585), 2, sym_comment, sym_include, - ACTIONS(127), 22, + ACTIONS(141), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -112882,71 +113884,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [78920] = 24, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2277), 1, - anon_sym_COLON, - STATE(1642), 1, - sym_of, - STATE(1668), 1, - sym__pre_tuning, - STATE(1730), 1, - sym_where_clause, - STATE(1731), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2045), 1, - aux_sym_for_phrase_repeat2, - STATE(2572), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2818), 1, - sym_on_quit_phrase, - STATE(3040), 1, - sym_on_stop_phrase, - STATE(3055), 1, - aux_sym_for_statement_repeat1, - STATE(1572), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [78998] = 5, + [79534] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1573), 2, + STATE(1586), 2, sym_comment, sym_include, - ACTIONS(2311), 24, + ACTIONS(2343), 24, sym_identifier, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, @@ -112971,20 +113919,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_property_type_token1, aux_sym_property_type_token2, aux_sym_method_tuning_token1, - [79038] = 6, + [79574] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(67), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(1574), 2, + STATE(1587), 2, sym_comment, sym_include, - ACTIONS(63), 22, + ACTIONS(83), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113007,20 +113955,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79080] = 6, + [79616] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(153), 2, + ACTIONS(161), 2, sym__or_operator, sym__and_operator, - STATE(1575), 2, + STATE(1588), 2, sym_comment, sym_include, - ACTIONS(151), 22, + ACTIONS(159), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113043,56 +113991,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79122] = 6, + [79658] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(157), 2, - sym__or_operator, - sym__and_operator, - STATE(1576), 2, + STATE(1589), 2, sym_comment, sym_include, - ACTIONS(155), 22, - anon_sym_SLASH, + ACTIONS(2135), 24, sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [79164] = 6, + aux_sym_primitive_type_token1, + aux_sym_primitive_type_token2, + aux_sym_primitive_type_token3, + aux_sym_primitive_type_token4, + aux_sym_primitive_type_token5, + aux_sym_primitive_type_token6, + aux_sym_primitive_type_token7, + aux_sym_primitive_type_token8, + aux_sym_primitive_type_token9, + aux_sym_primitive_type_token10, + aux_sym_primitive_type_token11, + aux_sym_primitive_type_token12, + aux_sym_primitive_type_token13, + aux_sym_primitive_type_token14, + aux_sym_primitive_type_token15, + aux_sym_primitive_type_token16, + aux_sym_primitive_type_token17, + aux_sym_primitive_type_token18, + aux_sym_primitive_type_token19, + aux_sym_scope_tuning_token4, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + [79698] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(213), 2, + ACTIONS(125), 2, sym__or_operator, sym__and_operator, - STATE(1577), 2, + STATE(1590), 2, sym_comment, sym_include, - ACTIONS(211), 22, + ACTIONS(123), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113115,20 +114062,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79206] = 6, + [79740] = 24, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2278), 1, + anon_sym_COLON, + STATE(1648), 1, + sym_of, + STATE(1686), 1, + sym__pre_tuning, + STATE(1759), 1, + sym_where_clause, + STATE(1762), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2083), 1, + aux_sym_for_phrase_repeat2, + STATE(2705), 1, + sym_on_error_phrase, + STATE(2735), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3141), 1, + aux_sym_for_statement_repeat1, + STATE(3142), 1, + sym_on_stop_phrase, + STATE(1591), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [79818] = 19, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2345), 1, + aux_sym_input_expression_token1, + ACTIONS(2347), 1, + aux_sym_variable_definition_token3, + ACTIONS(2349), 1, + aux_sym_variable_definition_token4, + ACTIONS(2351), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2353), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2355), 1, + aux_sym_query_definition_token1, + ACTIONS(2359), 1, + aux_sym_stream_definition_token1, + STATE(1858), 1, + aux_sym_variable_definition_repeat1, + STATE(1971), 1, + aux_sym_buffer_definition_repeat1, + STATE(1973), 1, + sym_serialization_tuning, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1592), 2, + sym_comment, + sym_include, + STATE(1932), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2357), 3, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [79886] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(149), 2, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(1578), 2, + STATE(1593), 2, sym_comment, sym_include, - ACTIONS(147), 22, + ACTIONS(63), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113151,76 +114201,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79248] = 24, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2124), 1, - anon_sym_COLON, - STATE(1635), 1, - sym_of, - STATE(1663), 1, - sym__pre_tuning, - STATE(1727), 1, - aux_sym_for_phrase_repeat1, - STATE(1728), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2067), 1, - aux_sym_for_phrase_repeat2, - STATE(2622), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2882), 1, - sym_on_quit_phrase, - STATE(3105), 1, - aux_sym_for_statement_repeat1, - STATE(3107), 1, - sym_on_stop_phrase, - STATE(1579), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [79326] = 7, + [79928] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2313), 1, + ACTIONS(2361), 1, anon_sym_NO_DASHERROR, - ACTIONS(623), 2, + ACTIONS(629), 2, sym__or_operator, sym__and_operator, - STATE(1580), 2, + STATE(1594), 2, sym_comment, sym_include, - ACTIONS(621), 21, + ACTIONS(627), 21, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113242,20 +114238,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [79370] = 6, + [79972] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(173), 2, + ACTIONS(193), 2, sym__or_operator, sym__and_operator, - STATE(1581), 2, + STATE(1595), 2, sym_comment, sym_include, - ACTIONS(171), 22, + ACTIONS(191), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113278,20 +114274,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79412] = 6, + [80014] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(137), 2, + ACTIONS(135), 2, sym__or_operator, sym__and_operator, - STATE(1582), 2, + STATE(1596), 2, sym_comment, sym_include, - ACTIONS(135), 22, + ACTIONS(133), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113314,123 +114310,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79454] = 24, + [80056] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2259), 1, + ACTIONS(2286), 1, anon_sym_COLON, - STATE(1640), 1, - sym_of, STATE(1676), 1, + sym_of, + STATE(1687), 1, sym__pre_tuning, - STATE(1739), 1, - aux_sym_for_phrase_repeat1, - STATE(1741), 1, + STATE(1770), 1, sym_where_clause, - STATE(1933), 1, + STATE(1788), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, sym_query_tuning, - STATE(2109), 1, + STATE(2063), 1, aux_sym_for_phrase_repeat2, - STATE(2532), 1, + STATE(2663), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2801), 1, + STATE(2869), 1, sym_on_quit_phrase, - STATE(3089), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3509), 1, aux_sym_for_statement_repeat1, - STATE(3104), 1, + STATE(3514), 1, sym_on_stop_phrase, - STATE(1583), 2, + STATE(1597), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [79532] = 19, + [80134] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2315), 1, - aux_sym_input_expression_token1, - ACTIONS(2317), 1, - aux_sym_variable_definition_token3, - ACTIONS(2319), 1, - aux_sym_variable_definition_token4, - ACTIONS(2321), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2323), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2325), 1, - aux_sym_query_definition_token1, - ACTIONS(2329), 1, - aux_sym_stream_definition_token1, - STATE(1832), 1, - aux_sym_variable_definition_repeat1, - STATE(1941), 1, - aux_sym_buffer_definition_repeat1, - STATE(1981), 1, - sym_serialization_tuning, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1584), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2282), 1, + anon_sym_COLON, + STATE(1656), 1, + sym_of, + STATE(1688), 1, + sym__pre_tuning, + STATE(1749), 1, + aux_sym_for_phrase_repeat1, + STATE(1752), 1, + sym_where_clause, + STATE(1942), 1, + sym_query_tuning, + STATE(2112), 1, + aux_sym_for_phrase_repeat2, + STATE(2655), 1, + sym_on_error_phrase, + STATE(2811), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3293), 1, + aux_sym_for_statement_repeat1, + STATE(3296), 1, + sym_on_stop_phrase, + STATE(1598), 2, sym_comment, sym_include, - STATE(1901), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2327), 3, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [79600] = 6, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [80212] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(99), 2, + ACTIONS(139), 2, sym__or_operator, sym__and_operator, - STATE(1585), 2, + STATE(1599), 2, sym_comment, sym_include, - ACTIONS(97), 22, + ACTIONS(137), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113453,20 +114454,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79642] = 6, + [80254] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(141), 2, + ACTIONS(205), 2, sym__or_operator, sym__and_operator, - STATE(1586), 2, + STATE(1600), 2, sym_comment, sym_include, - ACTIONS(139), 22, + ACTIONS(203), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113489,20 +114490,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79684] = 6, + [80296] = 19, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2363), 1, + aux_sym_input_expression_token1, + ACTIONS(2365), 1, + aux_sym_variable_definition_token3, + ACTIONS(2367), 1, + aux_sym_variable_definition_token4, + ACTIONS(2369), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2371), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2373), 1, + aux_sym_query_definition_token1, + ACTIONS(2377), 1, + aux_sym_stream_definition_token1, + STATE(1844), 1, + aux_sym_variable_definition_repeat1, + STATE(1973), 1, + sym_serialization_tuning, + STATE(2011), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1601), 2, + sym_comment, + sym_include, + STATE(1932), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2375), 3, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [80364] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(193), 2, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1587), 2, + STATE(1602), 2, sym_comment, sym_include, - ACTIONS(191), 22, + ACTIONS(109), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113525,20 +114575,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79726] = 6, + [80406] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(197), 2, + ACTIONS(221), 2, sym__or_operator, sym__and_operator, - STATE(1588), 2, + STATE(1603), 2, sym_comment, sym_include, - ACTIONS(195), 22, + ACTIONS(219), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113561,22 +114611,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79768] = 7, + [80448] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, - anon_sym_NO_DASHERROR, - ACTIONS(213), 2, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(1589), 2, + STATE(1604), 2, sym_comment, sym_include, - ACTIONS(211), 21, + ACTIONS(153), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113598,128 +114646,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [79812] = 24, - ACTIONS(59), 1, + anon_sym_NO_DASHERROR, + [80490] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2269), 1, - anon_sym_COLON, - STATE(1626), 1, - sym_of, - STATE(1683), 1, - sym__pre_tuning, - STATE(1774), 1, - sym_where_clause, - STATE(1777), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2104), 1, - aux_sym_for_phrase_repeat2, - STATE(2664), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2868), 1, - sym_on_quit_phrase, - STATE(3114), 1, - sym_on_stop_phrase, - STATE(3116), 1, - aux_sym_for_statement_repeat1, - STATE(1590), 2, + ACTIONS(177), 2, + sym__or_operator, + sym__and_operator, + STATE(1605), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [79890] = 24, + ACTIONS(175), 22, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [80532] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2099), 1, + anon_sym_COLON, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2122), 1, - anon_sym_COLON, - STATE(1634), 1, + STATE(1662), 1, sym_of, - STATE(1665), 1, + STATE(1683), 1, sym__pre_tuning, - STATE(1779), 1, - sym_where_clause, - STATE(1784), 1, + STATE(1743), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1803), 1, + sym_where_clause, + STATE(1942), 1, sym_query_tuning, - STATE(2118), 1, + STATE(2093), 1, aux_sym_for_phrase_repeat2, - STATE(2625), 1, + STATE(2595), 1, sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2852), 1, + STATE(2882), 1, sym_on_quit_phrase, - STATE(3124), 1, + STATE(3309), 1, aux_sym_for_statement_repeat1, - STATE(3126), 1, + STATE(3311), 1, sym_on_stop_phrase, - STATE(1591), 2, + STATE(1606), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [79968] = 6, + [80610] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(189), 2, + ACTIONS(225), 2, sym__or_operator, sym__and_operator, - STATE(1592), 2, + STATE(1607), 2, sym_comment, sym_include, - ACTIONS(187), 22, + ACTIONS(223), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113742,65 +114773,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80010] = 18, - ACTIONS(59), 1, + [80652] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(1415), 1, - aux_sym_function_parameter_token1, - ACTIONS(1417), 1, - aux_sym_property_definition_token1, - ACTIONS(1419), 1, - aux_sym_event_definition_token1, - STATE(1879), 1, - sym_property_tuning, - STATE(2346), 1, - aux_sym_property_definition_repeat1, - STATE(2435), 1, - aux_sym_property_definition_repeat2, - STATE(2855), 1, - sym_property_type, - STATE(4106), 1, - sym_serialization_tuning, - ACTIONS(1340), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1362), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - ACTIONS(1406), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1593), 2, + ACTIONS(2379), 1, + anon_sym_NO_DASHERROR, + ACTIONS(193), 2, + sym__or_operator, + sym__and_operator, + STATE(1608), 2, sym_comment, sym_include, - ACTIONS(1409), 8, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_buffer_definition_token3, - [80076] = 5, + ACTIONS(191), 21, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [80696] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1594), 2, + ACTIONS(201), 2, + sym__or_operator, + sym__and_operator, + STATE(1609), 2, + sym_comment, + sym_include, + ACTIONS(199), 22, + anon_sym_SLASH, + sym_identifier, + anon_sym_STAR, + sym__terminator, + anon_sym_PLUS, + anon_sym_DASH, + 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, + [80738] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1610), 2, sym_comment, sym_include, - ACTIONS(2333), 24, + ACTIONS(2381), 24, sym_identifier, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, @@ -113825,69 +114881,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_property_type_token1, aux_sym_property_type_token2, aux_sym_method_tuning_token1, - [80116] = 19, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2335), 1, - aux_sym_input_expression_token1, - ACTIONS(2337), 1, - aux_sym_variable_definition_token3, - ACTIONS(2339), 1, - aux_sym_variable_definition_token4, - ACTIONS(2341), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2343), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2345), 1, - aux_sym_query_definition_token1, - ACTIONS(2349), 1, - aux_sym_stream_definition_token1, - STATE(1835), 1, - aux_sym_variable_definition_repeat1, - STATE(1936), 1, - aux_sym_buffer_definition_repeat1, - STATE(1981), 1, - sym_serialization_tuning, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1595), 2, - sym_comment, - sym_include, - STATE(1901), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2347), 3, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [80184] = 6, + [80778] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(177), 2, + ACTIONS(217), 2, sym__or_operator, sym__and_operator, - STATE(1596), 2, + STATE(1611), 2, sym_comment, sym_include, - ACTIONS(175), 22, + ACTIONS(215), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113910,128 +114917,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80226] = 24, + [80820] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2220), 1, + ACTIONS(2272), 1, anon_sym_COLON, - STATE(1655), 1, + STATE(1651), 1, sym_of, - STATE(1667), 1, + STATE(1690), 1, sym__pre_tuning, - STATE(1747), 1, - aux_sym_for_phrase_repeat1, - STATE(1750), 1, + STATE(1765), 1, sym_where_clause, - STATE(1933), 1, + STATE(1786), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, sym_query_tuning, - STATE(2102), 1, + STATE(2126), 1, aux_sym_for_phrase_repeat2, - STATE(2542), 1, + STATE(2589), 1, sym_on_error_phrase, - STATE(2781), 1, + STATE(2839), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3294), 1, - aux_sym_for_statement_repeat1, - STATE(3308), 1, + STATE(3194), 1, sym_on_stop_phrase, - STATE(1597), 2, + STATE(3195), 1, + aux_sym_for_statement_repeat1, + STATE(1612), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [80304] = 24, + [80898] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2092), 1, - anon_sym_COLON, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(1632), 1, + ACTIONS(2270), 1, + anon_sym_COLON, + STATE(1646), 1, sym_of, - STATE(1670), 1, + STATE(1684), 1, sym__pre_tuning, - STATE(1773), 1, - sym_where_clause, - STATE(1778), 1, + STATE(1744), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1778), 1, + sym_where_clause, + STATE(1942), 1, sym_query_tuning, - STATE(2054), 1, + STATE(2132), 1, aux_sym_for_phrase_repeat2, - STATE(2649), 1, + STATE(2676), 1, sym_on_error_phrase, - STATE(2714), 1, + STATE(2770), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3425), 1, + STATE(3155), 1, aux_sym_for_statement_repeat1, - STATE(3435), 1, + STATE(3158), 1, sym_on_stop_phrase, - STATE(1598), 2, + STATE(1613), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [80382] = 6, + [80976] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(181), 2, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(1599), 2, + STATE(1614), 2, sym_comment, sym_include, - ACTIONS(179), 22, + ACTIONS(75), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114054,20 +115061,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80424] = 6, + [81018] = 24, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2262), 1, + anon_sym_COLON, + STATE(1652), 1, + sym_of, + STATE(1689), 1, + sym__pre_tuning, + STATE(1733), 1, + sym_where_clause, + STATE(1753), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2107), 1, + aux_sym_for_phrase_repeat2, + STATE(2696), 1, + sym_on_error_phrase, + STATE(2731), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3441), 1, + aux_sym_for_statement_repeat1, + STATE(3458), 1, + sym_on_stop_phrase, + STATE(1615), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [81096] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(185), 2, + ACTIONS(213), 2, sym__or_operator, sym__and_operator, - STATE(1600), 2, + STATE(1616), 2, sym_comment, sym_include, - ACTIONS(183), 22, + ACTIONS(211), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114090,20 +115151,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80466] = 6, + [81138] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(125), 2, + ACTIONS(209), 2, sym__or_operator, sym__and_operator, - STATE(1601), 2, + STATE(1617), 2, sym_comment, sym_include, - ACTIONS(123), 22, + ACTIONS(207), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114126,20 +115187,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80508] = 6, + [81180] = 24, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2149), 1, + anon_sym_COLON, + STATE(1673), 1, + sym_of, + STATE(1679), 1, + sym__pre_tuning, + STATE(1742), 1, + sym_where_clause, + STATE(1794), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2042), 1, + aux_sym_for_phrase_repeat2, + STATE(2551), 1, + sym_on_error_phrase, + STATE(2754), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3212), 1, + aux_sym_for_statement_repeat1, + STATE(3217), 1, + sym_on_stop_phrase, + STATE(1618), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [81258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(121), 2, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - STATE(1602), 2, + STATE(1619), 2, sym_comment, sym_include, - ACTIONS(119), 22, + ACTIONS(87), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114162,74 +115277,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80550] = 24, + [81300] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2156), 1, + ACTIONS(2236), 1, anon_sym_COLON, - STATE(1660), 1, - sym_of, STATE(1671), 1, + sym_of, + STATE(1697), 1, sym__pre_tuning, - STATE(1736), 1, - sym_where_clause, - STATE(1753), 1, + STATE(1775), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1776), 1, + sym_where_clause, + STATE(1942), 1, sym_query_tuning, - STATE(2117), 1, + STATE(2062), 1, aux_sym_for_phrase_repeat2, - STATE(2616), 1, + STATE(2609), 1, sym_on_error_phrase, - STATE(2713), 1, - sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3452), 1, + STATE(2897), 1, + sym_on_quit_phrase, + STATE(3132), 1, aux_sym_for_statement_repeat1, - STATE(3459), 1, + STATE(3150), 1, sym_on_stop_phrase, - STATE(1603), 2, + STATE(1620), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [80628] = 6, + [81378] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(205), 2, + ACTIONS(197), 2, sym__or_operator, sym__and_operator, - STATE(1604), 2, + STATE(1621), 2, sym_comment, sym_include, - ACTIONS(203), 22, + ACTIONS(195), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114252,55 +115367,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80670] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1605), 2, - sym_comment, - sym_include, - ACTIONS(2168), 24, - sym_identifier, - aux_sym_primitive_type_token1, - aux_sym_primitive_type_token2, - aux_sym_primitive_type_token3, - aux_sym_primitive_type_token4, - aux_sym_primitive_type_token5, - aux_sym_primitive_type_token6, - aux_sym_primitive_type_token7, - aux_sym_primitive_type_token8, - aux_sym_primitive_type_token9, - aux_sym_primitive_type_token10, - aux_sym_primitive_type_token11, - aux_sym_primitive_type_token12, - aux_sym_primitive_type_token13, - aux_sym_primitive_type_token14, - aux_sym_primitive_type_token15, - aux_sym_primitive_type_token16, - aux_sym_primitive_type_token17, - aux_sym_primitive_type_token18, - aux_sym_primitive_type_token19, - aux_sym_scope_tuning_token4, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - [80710] = 6, + [81420] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(217), 2, + ACTIONS(189), 2, sym__or_operator, sym__and_operator, - STATE(1606), 2, + STATE(1622), 2, sym_comment, sym_include, - ACTIONS(215), 22, + ACTIONS(187), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114323,20 +115403,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80752] = 6, + [81462] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(111), 2, + ACTIONS(185), 2, sym__or_operator, sym__and_operator, - STATE(1607), 2, + STATE(1623), 2, sym_comment, sym_include, - ACTIONS(109), 22, + ACTIONS(183), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114359,74 +115439,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80794] = 24, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2287), 1, - anon_sym_COLON, - STATE(1627), 1, - sym_of, - STATE(1682), 1, - sym__pre_tuning, - STATE(1751), 1, - sym_where_clause, - STATE(1752), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2119), 1, - aux_sym_for_phrase_repeat2, - STATE(2534), 1, - sym_on_error_phrase, - STATE(2782), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3122), 1, - sym_on_stop_phrase, - STATE(3132), 1, - aux_sym_for_statement_repeat1, - STATE(1608), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [80872] = 6, + [81504] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(161), 2, + ACTIONS(181), 2, sym__or_operator, sym__and_operator, - STATE(1609), 2, + STATE(1624), 2, sym_comment, sym_include, - ACTIONS(159), 22, + ACTIONS(179), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114449,20 +115475,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80914] = 6, + [81546] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(133), 2, + ACTIONS(151), 2, sym__or_operator, sym__and_operator, - STATE(1610), 2, + STATE(1625), 2, sym_comment, sym_include, - ACTIONS(131), 22, + ACTIONS(149), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114485,20 +115511,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80956] = 6, + [81588] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(169), 2, + ACTIONS(173), 2, sym__or_operator, sym__and_operator, - STATE(1611), 2, + STATE(1626), 2, sym_comment, sym_include, - ACTIONS(167), 22, + ACTIONS(171), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114521,20 +115547,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80998] = 6, + [81630] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(209), 2, + ACTIONS(169), 2, sym__or_operator, sym__and_operator, - STATE(1612), 2, + STATE(1627), 2, sym_comment, sym_include, - ACTIONS(207), 22, + ACTIONS(167), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114557,20 +115583,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81040] = 6, + [81672] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(77), 2, + ACTIONS(121), 2, sym__or_operator, sym__and_operator, - STATE(1613), 2, + STATE(1628), 2, sym_comment, sym_include, - ACTIONS(75), 22, + ACTIONS(119), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114593,20 +115619,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81082] = 6, + [81714] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(145), 2, + ACTIONS(147), 2, sym__or_operator, sym__and_operator, - STATE(1614), 2, + STATE(1629), 2, sym_comment, sym_include, - ACTIONS(143), 22, + ACTIONS(145), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114629,20 +115655,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81124] = 6, + [81756] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(88), 2, + ACTIONS(165), 2, sym__or_operator, sym__and_operator, - STATE(1615), 2, + STATE(1630), 2, sym_comment, sym_include, - ACTIONS(86), 22, + ACTIONS(163), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114665,196 +115691,207 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81166] = 24, + [81798] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(1453), 1, + aux_sym_function_parameter_token1, + ACTIONS(1455), 1, + aux_sym_property_definition_token1, + ACTIONS(1457), 1, + aux_sym_event_definition_token1, + STATE(1870), 1, + sym_property_tuning, + STATE(2378), 1, + aux_sym_property_definition_repeat1, + STATE(2443), 1, + aux_sym_property_definition_repeat2, + STATE(2782), 1, + sym_property_type, + STATE(4204), 1, + sym_serialization_tuning, + ACTIONS(1352), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1374), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + ACTIONS(1444), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1631), 2, + sym_comment, + sym_include, + ACTIONS(1447), 8, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_buffer_definition_token3, + [81864] = 24, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2178), 1, + ACTIONS(2222), 1, anon_sym_COLON, - STATE(1630), 1, + STATE(1649), 1, sym_of, - STATE(1680), 1, + STATE(1691), 1, sym__pre_tuning, - STATE(1760), 1, - aux_sym_for_phrase_repeat1, - STATE(1761), 1, + STATE(1767), 1, sym_where_clause, - STATE(1933), 1, + STATE(1787), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, sym_query_tuning, - STATE(2099), 1, + STATE(2119), 1, aux_sym_for_phrase_repeat2, - STATE(2559), 1, + STATE(2591), 1, sym_on_error_phrase, - STATE(2768), 1, + STATE(2843), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3342), 1, + STATE(3231), 1, aux_sym_for_statement_repeat1, - STATE(3344), 1, + STATE(3234), 1, sym_on_stop_phrase, - STATE(1616), 2, + STATE(1632), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [81244] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(165), 2, - sym__or_operator, - sym__and_operator, - STATE(1617), 2, - sym_comment, - sym_include, - ACTIONS(163), 22, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [81286] = 6, - ACTIONS(3), 1, + [81942] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(201), 2, - sym__or_operator, - sym__and_operator, - STATE(1618), 2, + ACTIONS(2337), 1, + aux_sym_variable_definition_token2, + STATE(1633), 2, sym_comment, sym_include, - ACTIONS(199), 22, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, + ACTIONS(2335), 22, sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, - 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, - [81328] = 22, + aux_sym__block_terminator_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + anon_sym_COMMA, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [81983] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(1679), 1, + STATE(1680), 1, sym_of, - STATE(1715), 1, + STATE(1727), 1, sym__pre_tuning, - STATE(1799), 1, - aux_sym_for_phrase_repeat1, - STATE(1800), 1, + STATE(1808), 1, sym_where_clause, - STATE(1933), 1, + STATE(1813), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, sym_query_tuning, - STATE(2135), 1, + STATE(2183), 1, aux_sym_for_phrase_repeat2, - STATE(2779), 1, + STATE(2870), 1, sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2987), 1, + STATE(2956), 1, sym_on_quit_phrase, - STATE(3939), 1, + STATE(4069), 1, sym_on_stop_phrase, - ACTIONS(2309), 2, + ACTIONS(2331), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1619), 2, + STATE(1634), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [81401] = 6, + [82056] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2307), 1, + ACTIONS(2385), 1, aux_sym_variable_definition_token2, - STATE(1620), 2, + STATE(1635), 2, sym_comment, sym_include, - ACTIONS(2305), 22, + ACTIONS(2383), 22, sym__terminator, aux_sym__block_terminator_token1, anon_sym_LPAREN, @@ -114877,50 +115914,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [81442] = 6, - ACTIONS(59), 1, + [82097] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2353), 1, - aux_sym_variable_definition_token2, - STATE(1621), 2, + ACTIONS(2387), 1, + sym_identifier, + ACTIONS(2391), 1, + aux_sym_primitive_type_token19, + STATE(1635), 1, + sym_qualified_name, + STATE(3792), 1, + sym_primitive_type, + STATE(1636), 2, sym_comment, sym_include, - ACTIONS(2351), 22, - sym__terminator, - aux_sym__block_terminator_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - anon_sym_COMMA, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [81483] = 4, + ACTIONS(2389), 18, + aux_sym_primitive_type_token1, + aux_sym_primitive_type_token2, + aux_sym_primitive_type_token3, + aux_sym_primitive_type_token4, + aux_sym_primitive_type_token5, + aux_sym_primitive_type_token6, + aux_sym_primitive_type_token7, + aux_sym_primitive_type_token8, + aux_sym_primitive_type_token9, + aux_sym_primitive_type_token10, + aux_sym_primitive_type_token11, + aux_sym_primitive_type_token12, + aux_sym_primitive_type_token13, + aux_sym_primitive_type_token14, + aux_sym_primitive_type_token15, + aux_sym_primitive_type_token16, + aux_sym_primitive_type_token17, + aux_sym_primitive_type_token18, + [82143] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1622), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2387), 1, + sym_identifier, + ACTIONS(2391), 1, + aux_sym_primitive_type_token19, + STATE(1635), 1, + sym_qualified_name, + STATE(2304), 1, + sym_primitive_type, + STATE(1637), 2, + sym_comment, + sym_include, + ACTIONS(2389), 18, + aux_sym_primitive_type_token1, + aux_sym_primitive_type_token2, + aux_sym_primitive_type_token3, + aux_sym_primitive_type_token4, + aux_sym_primitive_type_token5, + aux_sym_primitive_type_token6, + aux_sym_primitive_type_token7, + aux_sym_primitive_type_token8, + aux_sym_primitive_type_token9, + aux_sym_primitive_type_token10, + aux_sym_primitive_type_token11, + aux_sym_primitive_type_token12, + aux_sym_primitive_type_token13, + aux_sym_primitive_type_token14, + aux_sym_primitive_type_token15, + aux_sym_primitive_type_token16, + aux_sym_primitive_type_token17, + aux_sym_primitive_type_token18, + [82189] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1638), 2, sym_comment, sym_include, - ACTIONS(2355), 23, + ACTIONS(2393), 23, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -114944,25 +116020,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [81519] = 9, + [82225] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2236), 1, + STATE(1721), 1, sym_primitive_type, - STATE(1623), 2, + STATE(1639), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -114981,25 +116057,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [81565] = 9, + [82271] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(1686), 1, + STATE(1702), 1, sym_primitive_type, - STATE(1624), 2, + STATE(1640), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115018,172 +116094,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [81611] = 19, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(2367), 1, - aux_sym_variable_definition_token2, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1692), 1, - aux_sym_property_definition_repeat2, - STATE(1879), 1, - sym_property_tuning, - STATE(1905), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - ACTIONS(2365), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1625), 2, - sym_comment, - sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2363), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [81677] = 22, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2373), 1, - anon_sym_COLON, - STATE(1664), 1, - sym__pre_tuning, - STATE(1737), 1, - aux_sym_for_phrase_repeat1, - STATE(1738), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2073), 1, - aux_sym_for_phrase_repeat2, - STATE(2552), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2806), 1, - sym_on_quit_phrase, - STATE(3265), 1, - sym_on_stop_phrase, - STATE(3268), 1, - aux_sym_for_statement_repeat1, - STATE(1626), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [81749] = 22, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2375), 1, - anon_sym_COLON, - STATE(1678), 1, - sym__pre_tuning, - STATE(1720), 1, - sym_where_clause, - STATE(1772), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2061), 1, - aux_sym_for_phrase_repeat2, - STATE(2574), 1, - sym_on_error_phrase, - STATE(2755), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3137), 1, - sym_on_stop_phrase, - STATE(3138), 1, - aux_sym_for_statement_repeat1, - STATE(1627), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [81821] = 9, + [82317] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2302), 1, + STATE(2261), 1, sym_primitive_type, - STATE(1628), 2, + STATE(1641), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115202,25 +116131,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [81867] = 9, + [82363] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(3790), 1, + STATE(2330), 1, sym_primitive_type, - STATE(1629), 2, + STATE(1642), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115239,75 +116168,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [81913] = 22, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2377), 1, - anon_sym_COLON, - STATE(1674), 1, - sym__pre_tuning, - STATE(1754), 1, - sym_where_clause, - STATE(1757), 1, - aux_sym_for_phrase_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2116), 1, - aux_sym_for_phrase_repeat2, - STATE(2546), 1, - sym_on_error_phrase, - STATE(2778), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3315), 1, - aux_sym_for_statement_repeat1, - STATE(3319), 1, - sym_on_stop_phrase, - STATE(1630), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [81985] = 9, + [82409] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2276), 1, + STATE(2262), 1, sym_primitive_type, - STATE(1631), 2, + STATE(1643), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115326,222 +116205,296 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82031] = 22, - ACTIONS(59), 1, + [82455] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2379), 1, - anon_sym_COLON, - STATE(1675), 1, - sym__pre_tuning, - STATE(1756), 1, - aux_sym_for_phrase_repeat1, - STATE(1785), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2031), 1, - aux_sym_for_phrase_repeat2, - STATE(2629), 1, + ACTIONS(2387), 1, + sym_identifier, + ACTIONS(2391), 1, + aux_sym_primitive_type_token19, + STATE(1635), 1, + sym_qualified_name, + STATE(1720), 1, + sym_primitive_type, + STATE(1644), 2, + sym_comment, + sym_include, + ACTIONS(2389), 18, + aux_sym_primitive_type_token1, + aux_sym_primitive_type_token2, + aux_sym_primitive_type_token3, + aux_sym_primitive_type_token4, + aux_sym_primitive_type_token5, + aux_sym_primitive_type_token6, + aux_sym_primitive_type_token7, + aux_sym_primitive_type_token8, + aux_sym_primitive_type_token9, + aux_sym_primitive_type_token10, + aux_sym_primitive_type_token11, + aux_sym_primitive_type_token12, + aux_sym_primitive_type_token13, + aux_sym_primitive_type_token14, + aux_sym_primitive_type_token15, + aux_sym_primitive_type_token16, + aux_sym_primitive_type_token17, + aux_sym_primitive_type_token18, + [82501] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2387), 1, + sym_identifier, + ACTIONS(2391), 1, + aux_sym_primitive_type_token19, + STATE(1635), 1, + sym_qualified_name, + STATE(2315), 1, + sym_primitive_type, + STATE(1645), 2, + sym_comment, + sym_include, + ACTIONS(2389), 18, + aux_sym_primitive_type_token1, + aux_sym_primitive_type_token2, + aux_sym_primitive_type_token3, + aux_sym_primitive_type_token4, + aux_sym_primitive_type_token5, + aux_sym_primitive_type_token6, + aux_sym_primitive_type_token7, + aux_sym_primitive_type_token8, + aux_sym_primitive_type_token9, + aux_sym_primitive_type_token10, + aux_sym_primitive_type_token11, + aux_sym_primitive_type_token12, + aux_sym_primitive_type_token13, + aux_sym_primitive_type_token14, + aux_sym_primitive_type_token15, + aux_sym_primitive_type_token16, + aux_sym_primitive_type_token17, + aux_sym_primitive_type_token18, + [82547] = 22, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2395), 1, + anon_sym_COLON, + STATE(1692), 1, + sym__pre_tuning, + STATE(1751), 1, + aux_sym_for_phrase_repeat1, + STATE(1754), 1, + sym_where_clause, + STATE(1942), 1, + sym_query_tuning, + STATE(2101), 1, + aux_sym_for_phrase_repeat2, + STATE(2713), 1, sym_on_error_phrase, - STATE(2715), 1, + STATE(2724), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3415), 1, + STATE(3146), 1, aux_sym_for_statement_repeat1, - STATE(3417), 1, + STATE(3148), 1, sym_on_stop_phrase, - STATE(1632), 2, + STATE(1646), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [82103] = 19, + [82619] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2401), 1, + aux_sym_variable_definition_token2, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2383), 1, - aux_sym_variable_definition_token2, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1707), 1, + STATE(1719), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1888), 1, + STATE(1925), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1633), 2, + STATE(1647), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2381), 4, + ACTIONS(2397), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [82169] = 22, + [82685] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2385), 1, + ACTIONS(2407), 1, anon_sym_COLON, - STATE(1666), 1, + STATE(1696), 1, sym__pre_tuning, - STATE(1748), 1, - sym_where_clause, - STATE(1755), 1, + STATE(1768), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1774), 1, + sym_where_clause, + STATE(1942), 1, sym_query_tuning, - STATE(2025), 1, + STATE(2067), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2662), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2869), 1, + STATE(2800), 1, sym_on_quit_phrase, - STATE(3115), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3135), 1, aux_sym_for_statement_repeat1, - STATE(3117), 1, + STATE(3136), 1, sym_on_stop_phrase, - STATE(1634), 2, + STATE(1648), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [82241] = 22, + [82757] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2387), 1, + ACTIONS(2409), 1, anon_sym_COLON, - STATE(1673), 1, + STATE(1677), 1, sym__pre_tuning, - STATE(1726), 1, + STATE(1796), 1, sym_where_clause, - STATE(1763), 1, + STATE(1801), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(2068), 1, + STATE(2054), 1, aux_sym_for_phrase_repeat2, - STATE(2685), 1, + STATE(2567), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2898), 1, + STATE(2805), 1, sym_on_quit_phrase, - STATE(3099), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3224), 1, aux_sym_for_statement_repeat1, - STATE(3101), 1, + STATE(3225), 1, sym_on_stop_phrase, - STATE(1635), 2, + STATE(1649), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [82313] = 9, + [82829] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2217), 1, + STATE(2269), 1, sym_primitive_type, - STATE(1636), 2, + STATE(1650), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115560,72 +116513,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82359] = 19, + [82875] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2391), 1, - aux_sym_variable_definition_token2, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1702), 1, - aux_sym_property_definition_repeat2, - STATE(1879), 1, - sym_property_tuning, - STATE(1921), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - ACTIONS(2365), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1637), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2411), 1, + anon_sym_COLON, + STATE(1693), 1, + sym__pre_tuning, + STATE(1750), 1, + sym_where_clause, + STATE(1756), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2100), 1, + aux_sym_for_phrase_repeat2, + STATE(2601), 1, + sym_on_error_phrase, + STATE(2852), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3233), 1, + sym_on_stop_phrase, + STATE(3236), 1, + aux_sym_for_statement_repeat1, + STATE(1651), 2, sym_comment, sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2389), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [82425] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [82947] = 22, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2413), 1, + anon_sym_COLON, + STATE(1694), 1, + sym__pre_tuning, + STATE(1737), 1, + aux_sym_for_phrase_repeat1, + STATE(1745), 1, + sym_where_clause, + STATE(1942), 1, + sym_query_tuning, + STATE(2089), 1, + aux_sym_for_phrase_repeat2, + STATE(2669), 1, + sym_on_error_phrase, + STATE(2796), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3407), 1, + aux_sym_for_statement_repeat1, + STATE(3416), 1, + sym_on_stop_phrase, + STATE(1652), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [83019] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(1706), 1, + STATE(3867), 1, sym_primitive_type, - STATE(1638), 2, + STATE(1653), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115644,25 +116650,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82471] = 9, + [83065] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(4634), 1, + STATE(3956), 1, sym_primitive_type, - STATE(1639), 2, + STATE(1654), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115681,75 +116687,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82517] = 22, + [83111] = 19, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2417), 1, + aux_sym_variable_definition_token2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1732), 1, + aux_sym_property_definition_repeat2, + STATE(1870), 1, + sym_property_tuning, + STATE(1938), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + ACTIONS(2399), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1655), 2, + sym_comment, + sym_include, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2415), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [83177] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, + ACTIONS(2419), 1, anon_sym_COLON, - STATE(1672), 1, + STATE(1682), 1, sym__pre_tuning, - STATE(1729), 1, + STATE(1748), 1, sym_where_clause, - STATE(1735), 1, + STATE(1771), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(2055), 1, + STATE(2120), 1, aux_sym_for_phrase_repeat2, - STATE(2674), 1, + STATE(2667), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2874), 1, + STATE(2734), 1, sym_on_quit_phrase, - STATE(3084), 1, - sym_on_stop_phrase, - STATE(3085), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(1640), 2, + STATE(3286), 1, + sym_on_stop_phrase, + STATE(1656), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [82589] = 9, + [83249] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2253), 1, + STATE(4654), 1, sym_primitive_type, - STATE(1641), 2, + STATE(1657), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115768,75 +116821,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82635] = 22, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, - aux_sym_where_clause_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2395), 1, - anon_sym_COLON, - STATE(1677), 1, - sym__pre_tuning, - STATE(1746), 1, - aux_sym_for_phrase_repeat1, - STATE(1749), 1, - sym_where_clause, - STATE(1933), 1, - sym_query_tuning, - STATE(2101), 1, - aux_sym_for_phrase_repeat2, - STATE(2528), 1, - sym_on_error_phrase, - STATE(2794), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3091), 1, - sym_on_stop_phrase, - STATE(3092), 1, - aux_sym_for_statement_repeat1, - STATE(1642), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [82707] = 9, + [83295] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2285), 1, + STATE(2232), 1, sym_primitive_type, - STATE(1643), 2, + STATE(1658), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115855,25 +116858,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82753] = 9, + [83341] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2233), 1, + STATE(2296), 1, sym_primitive_type, - STATE(1644), 2, + STATE(1659), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115892,25 +116895,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82799] = 9, + [83387] = 19, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2423), 1, + aux_sym_variable_definition_token2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1709), 1, + aux_sym_property_definition_repeat2, + STATE(1870), 1, + sym_property_tuning, + STATE(1934), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + ACTIONS(2399), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1660), 2, + sym_comment, + sym_include, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2421), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [83453] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(1713), 1, + STATE(1710), 1, sym_primitive_type, - STATE(1645), 2, + STATE(1661), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115929,25 +116979,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82845] = 9, + [83499] = 22, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2425), 1, + anon_sym_COLON, + STATE(1695), 1, + sym__pre_tuning, + STATE(1777), 1, + sym_where_clause, + STATE(1780), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(2046), 1, + aux_sym_for_phrase_repeat2, + STATE(2577), 1, + sym_on_error_phrase, + STATE(2759), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3301), 1, + aux_sym_for_statement_repeat1, + STATE(3303), 1, + sym_on_stop_phrase, + STATE(1662), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [83571] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2251), 1, + STATE(2264), 1, sym_primitive_type, - STATE(1646), 2, + STATE(1663), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -115966,52 +117066,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82891] = 9, + [83617] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2357), 1, - sym_identifier, - ACTIONS(2361), 1, - aux_sym_primitive_type_token19, - STATE(1621), 1, - sym_qualified_name, - STATE(3587), 1, - sym_primitive_type, - STATE(1647), 2, - sym_comment, - sym_include, - ACTIONS(2359), 18, - aux_sym_primitive_type_token1, - aux_sym_primitive_type_token2, - aux_sym_primitive_type_token3, - aux_sym_primitive_type_token4, - aux_sym_primitive_type_token5, - aux_sym_primitive_type_token6, - aux_sym_primitive_type_token7, - aux_sym_primitive_type_token8, - aux_sym_primitive_type_token9, - aux_sym_primitive_type_token10, - aux_sym_primitive_type_token11, - aux_sym_primitive_type_token12, - aux_sym_primitive_type_token13, - aux_sym_primitive_type_token14, - aux_sym_primitive_type_token15, - aux_sym_primitive_type_token16, - aux_sym_primitive_type_token17, - aux_sym_primitive_type_token18, - [82937] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1648), 2, - sym_comment, - sym_include, - ACTIONS(2397), 23, + STATE(1664), 2, + sym_comment, + sym_include, + ACTIONS(2427), 23, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -116035,62 +117098,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [82973] = 19, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2401), 1, - aux_sym_variable_definition_token2, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1697), 1, - aux_sym_property_definition_repeat2, - STATE(1879), 1, - sym_property_tuning, - STATE(1910), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - ACTIONS(2365), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1649), 2, - sym_comment, - sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2399), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [83039] = 4, + [83653] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1650), 2, + STATE(1665), 2, sym_comment, sym_include, - ACTIONS(2403), 23, + ACTIONS(2429), 23, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -116114,15 +117130,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [83075] = 4, + [83689] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(1666), 2, sym_comment, sym_include, - ACTIONS(2405), 23, + ACTIONS(2431), 23, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -116146,25 +117162,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [83111] = 9, + [83725] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(1696), 1, + STATE(2298), 1, sym_primitive_type, - STATE(1652), 2, + STATE(1667), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116183,15 +117199,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83157] = 4, + [83771] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, + STATE(1668), 2, sym_comment, sym_include, - ACTIONS(2407), 23, + ACTIONS(2433), 23, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -116215,25 +117231,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [83193] = 9, + [83807] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2237), 1, + STATE(2282), 1, sym_primitive_type, - STATE(1654), 2, + STATE(1669), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116252,186 +117268,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83239] = 22, + [83853] = 19, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2437), 1, + aux_sym_variable_definition_token2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1712), 1, + aux_sym_property_definition_repeat2, + STATE(1870), 1, + sym_property_tuning, + STATE(1903), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + ACTIONS(2399), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1670), 2, + sym_comment, + sym_include, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2435), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [83919] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2409), 1, + ACTIONS(2439), 1, anon_sym_COLON, STATE(1681), 1, sym__pre_tuning, - STATE(1742), 1, + STATE(1781), 1, sym_where_clause, - STATE(1743), 1, + STATE(1785), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(2090), 1, + STATE(2051), 1, aux_sym_for_phrase_repeat2, - STATE(2533), 1, + STATE(2619), 1, sym_on_error_phrase, - STATE(2790), 1, - sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3039), 1, - aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(2892), 1, + sym_on_quit_phrase, + STATE(3163), 1, sym_on_stop_phrase, - STATE(1655), 2, + STATE(3164), 1, + aux_sym_for_statement_repeat1, + STATE(1671), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [83311] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2357), 1, - sym_identifier, - ACTIONS(2361), 1, - aux_sym_primitive_type_token19, - STATE(1621), 1, - sym_qualified_name, - STATE(4307), 1, - sym_primitive_type, - STATE(1656), 2, - sym_comment, - sym_include, - ACTIONS(2359), 18, - aux_sym_primitive_type_token1, - aux_sym_primitive_type_token2, - aux_sym_primitive_type_token3, - aux_sym_primitive_type_token4, - aux_sym_primitive_type_token5, - aux_sym_primitive_type_token6, - aux_sym_primitive_type_token7, - aux_sym_primitive_type_token8, - aux_sym_primitive_type_token9, - aux_sym_primitive_type_token10, - aux_sym_primitive_type_token11, - aux_sym_primitive_type_token12, - aux_sym_primitive_type_token13, - aux_sym_primitive_type_token14, - aux_sym_primitive_type_token15, - aux_sym_primitive_type_token16, - aux_sym_primitive_type_token17, - aux_sym_primitive_type_token18, - [83357] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2357), 1, - sym_identifier, - ACTIONS(2361), 1, - aux_sym_primitive_type_token19, - STATE(1621), 1, - sym_qualified_name, - STATE(2319), 1, - sym_primitive_type, - STATE(1657), 2, - sym_comment, - sym_include, - ACTIONS(2359), 18, - aux_sym_primitive_type_token1, - aux_sym_primitive_type_token2, - aux_sym_primitive_type_token3, - aux_sym_primitive_type_token4, - aux_sym_primitive_type_token5, - aux_sym_primitive_type_token6, - aux_sym_primitive_type_token7, - aux_sym_primitive_type_token8, - aux_sym_primitive_type_token9, - aux_sym_primitive_type_token10, - aux_sym_primitive_type_token11, - aux_sym_primitive_type_token12, - aux_sym_primitive_type_token13, - aux_sym_primitive_type_token14, - aux_sym_primitive_type_token15, - aux_sym_primitive_type_token16, - aux_sym_primitive_type_token17, - aux_sym_primitive_type_token18, - [83403] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2357), 1, - sym_identifier, - ACTIONS(2361), 1, - aux_sym_primitive_type_token19, - STATE(1621), 1, - sym_qualified_name, - STATE(2079), 1, - sym_primitive_type, - STATE(1658), 2, - sym_comment, - sym_include, - ACTIONS(2359), 18, - aux_sym_primitive_type_token1, - aux_sym_primitive_type_token2, - aux_sym_primitive_type_token3, - aux_sym_primitive_type_token4, - aux_sym_primitive_type_token5, - aux_sym_primitive_type_token6, - aux_sym_primitive_type_token7, - aux_sym_primitive_type_token8, - aux_sym_primitive_type_token9, - aux_sym_primitive_type_token10, - aux_sym_primitive_type_token11, - aux_sym_primitive_type_token12, - aux_sym_primitive_type_token13, - aux_sym_primitive_type_token14, - aux_sym_primitive_type_token15, - aux_sym_primitive_type_token16, - aux_sym_primitive_type_token17, - aux_sym_primitive_type_token18, - [83449] = 9, + [83991] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(3686), 1, + STATE(2348), 1, sym_primitive_type, - STATE(1659), 2, + STATE(1672), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116450,75 +117402,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83495] = 22, + [84037] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2411), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(1669), 1, + STATE(1678), 1, sym__pre_tuning, - STATE(1762), 1, - aux_sym_for_phrase_repeat1, - STATE(1768), 1, + STATE(1797), 1, sym_where_clause, - STATE(1933), 1, + STATE(1799), 1, + aux_sym_for_phrase_repeat1, + STATE(1942), 1, sym_query_tuning, - STATE(2098), 1, + STATE(2023), 1, aux_sym_for_phrase_repeat2, - STATE(2658), 1, + STATE(2576), 1, sym_on_error_phrase, - STATE(2698), 1, + STATE(2820), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3442), 1, + STATE(3205), 1, aux_sym_for_statement_repeat1, - STATE(3444), 1, + STATE(3207), 1, sym_on_stop_phrase, - STATE(1660), 2, + STATE(1673), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [83567] = 9, + [84109] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2326), 1, + STATE(4381), 1, sym_primitive_type, - STATE(1661), 2, + STATE(1674), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116537,25 +117489,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83613] = 9, + [84155] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2357), 1, + ACTIONS(2387), 1, sym_identifier, - ACTIONS(2361), 1, + ACTIONS(2391), 1, aux_sym_primitive_type_token19, - STATE(1621), 1, + STATE(1635), 1, sym_qualified_name, - STATE(2267), 1, + STATE(2034), 1, sym_primitive_type, - STATE(1662), 2, + STATE(1675), 2, sym_comment, sym_include, - ACTIONS(2359), 18, + ACTIONS(2389), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116574,1037 +117526,1087 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83659] = 21, + [84201] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2387), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(1726), 1, + STATE(1685), 1, + sym__pre_tuning, + STATE(1772), 1, sym_where_clause, - STATE(1763), 1, + STATE(1773), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(1942), 1, sym_query_tuning, - STATE(2068), 1, + STATE(2024), 1, aux_sym_for_phrase_repeat2, - STATE(2685), 1, + STATE(2673), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2898), 1, + STATE(2788), 1, sym_on_quit_phrase, - STATE(3099), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3471), 1, aux_sym_for_statement_repeat1, - STATE(3101), 1, + STATE(3472), 1, sym_on_stop_phrase, - STATE(1663), 2, + STATE(1676), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [83728] = 21, + [84273] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2413), 1, + ACTIONS(2445), 1, anon_sym_COLON, - STATE(1766), 1, - aux_sym_for_phrase_repeat1, - STATE(1767), 1, + STATE(1800), 1, sym_where_clause, - STATE(1992), 1, + STATE(1802), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, sym_query_tuning, - STATE(2076), 1, + STATE(2064), 1, aux_sym_for_phrase_repeat2, - STATE(2543), 1, + STATE(2571), 1, sym_on_error_phrase, - STATE(2757), 1, + STATE(2783), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3351), 1, - aux_sym_for_statement_repeat1, - STATE(3353), 1, + STATE(3210), 1, sym_on_stop_phrase, - STATE(1664), 2, + STATE(3211), 1, + aux_sym_for_statement_repeat1, + STATE(1677), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [83797] = 21, + [84342] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2385), 1, + ACTIONS(2447), 1, anon_sym_COLON, - STATE(1748), 1, + STATE(1789), 1, sym_where_clause, - STATE(1755), 1, + STATE(1790), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2025), 1, + STATE(2111), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2584), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2869), 1, + STATE(2830), 1, sym_on_quit_phrase, - STATE(3115), 1, - aux_sym_for_statement_repeat1, - STATE(3117), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3200), 1, sym_on_stop_phrase, - STATE(1665), 2, + STATE(3201), 1, + aux_sym_for_statement_repeat1, + STATE(1678), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [83866] = 21, + [84411] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(1722), 1, + STATE(1797), 1, sym_where_clause, - STATE(1723), 1, + STATE(1799), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2081), 1, + STATE(2023), 1, aux_sym_for_phrase_repeat2, - STATE(2688), 1, + STATE(2576), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2813), 1, + STATE(2820), 1, sym_on_quit_phrase, - STATE(3102), 1, - sym_on_stop_phrase, - STATE(3103), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3205), 1, aux_sym_for_statement_repeat1, - STATE(1666), 2, + STATE(3207), 1, + sym_on_stop_phrase, + STATE(1679), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [83935] = 21, + [84480] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2409), 1, - anon_sym_COLON, - STATE(1742), 1, + STATE(1730), 1, + sym__pre_tuning, + STATE(1815), 1, sym_where_clause, - STATE(1743), 1, + STATE(1816), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(1942), 1, sym_query_tuning, - STATE(2090), 1, + STATE(2181), 1, aux_sym_for_phrase_repeat2, - STATE(2533), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(2901), 1, sym_on_error_phrase, - STATE(2790), 1, + STATE(3053), 1, sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3039), 1, - aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(3972), 1, sym_on_stop_phrase, - STATE(1667), 2, + ACTIONS(2449), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1680), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84004] = 21, + [84547] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2451), 1, anon_sym_COLON, - STATE(1746), 1, + STATE(1740), 1, aux_sym_for_phrase_repeat1, - STATE(1749), 1, + STATE(1741), 1, sym_where_clause, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2101), 1, + STATE(2092), 1, aux_sym_for_phrase_repeat2, - STATE(2528), 1, + STATE(2593), 1, sym_on_error_phrase, - STATE(2794), 1, + STATE(2732), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3091), 1, - sym_on_stop_phrase, - STATE(3092), 1, + STATE(3215), 1, aux_sym_for_statement_repeat1, - STATE(1668), 2, + STATE(3216), 1, + sym_on_stop_phrase, + STATE(1681), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84073] = 21, + [84616] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2417), 1, + ACTIONS(2453), 1, anon_sym_COLON, - STATE(1786), 1, - sym_where_clause, - STATE(1788), 1, + STATE(1735), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(1747), 1, + sym_where_clause, + STATE(2016), 1, sym_query_tuning, - STATE(2048), 1, + STATE(2108), 1, aux_sym_for_phrase_repeat2, - STATE(2637), 1, + STATE(2692), 1, sym_on_error_phrase, - STATE(2716), 1, + STATE(2753), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3421), 1, + STATE(3278), 1, sym_on_stop_phrase, - STATE(3422), 1, + STATE(3279), 1, aux_sym_for_statement_repeat1, - STATE(1669), 2, + STATE(1682), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84142] = 21, + [84685] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2379), 1, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(1756), 1, - aux_sym_for_phrase_repeat1, - STATE(1785), 1, + STATE(1777), 1, sym_where_clause, - STATE(1992), 1, + STATE(1780), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, sym_query_tuning, - STATE(2031), 1, + STATE(2046), 1, aux_sym_for_phrase_repeat2, - STATE(2629), 1, + STATE(2577), 1, sym_on_error_phrase, - STATE(2715), 1, + STATE(2759), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3415), 1, + STATE(3301), 1, aux_sym_for_statement_repeat1, - STATE(3417), 1, + STATE(3303), 1, sym_on_stop_phrase, - STATE(1670), 2, + STATE(1683), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84211] = 21, + [84754] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2411), 1, + ACTIONS(2395), 1, anon_sym_COLON, - STATE(1762), 1, + STATE(1751), 1, aux_sym_for_phrase_repeat1, - STATE(1768), 1, + STATE(1754), 1, sym_where_clause, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2098), 1, + STATE(2101), 1, aux_sym_for_phrase_repeat2, - STATE(2658), 1, + STATE(2713), 1, sym_on_error_phrase, - STATE(2698), 1, + STATE(2724), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3442), 1, + STATE(3146), 1, aux_sym_for_statement_repeat1, - STATE(3444), 1, + STATE(3148), 1, sym_on_stop_phrase, - STATE(1671), 2, + STATE(1684), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84280] = 21, + [84823] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2419), 1, + ACTIONS(2455), 1, anon_sym_COLON, - STATE(1724), 1, + STATE(1746), 1, aux_sym_for_phrase_repeat1, - STATE(1725), 1, + STATE(1793), 1, sym_where_clause, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2058), 1, + STATE(2098), 1, aux_sym_for_phrase_repeat2, - STATE(2597), 1, + STATE(2678), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2840), 1, + STATE(2721), 1, sym_on_quit_phrase, - STATE(3142), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3428), 1, sym_on_stop_phrase, - STATE(3299), 1, + STATE(3434), 1, aux_sym_for_statement_repeat1, - STATE(1672), 2, + STATE(1685), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84349] = 21, + [84892] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2421), 1, + ACTIONS(2407), 1, anon_sym_COLON, - STATE(1769), 1, + STATE(1768), 1, aux_sym_for_phrase_repeat1, - STATE(1770), 1, + STATE(1774), 1, sym_where_clause, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2032), 1, + STATE(2067), 1, aux_sym_for_phrase_repeat2, - STATE(2672), 1, + STATE(2662), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2883), 1, + STATE(2800), 1, sym_on_quit_phrase, - STATE(3087), 1, - sym_on_stop_phrase, - STATE(3088), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3135), 1, aux_sym_for_statement_repeat1, - STATE(1673), 2, + STATE(3136), 1, + sym_on_stop_phrase, + STATE(1686), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84418] = 21, + [84961] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(1744), 1, + STATE(1772), 1, sym_where_clause, - STATE(1745), 1, + STATE(1773), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2097), 1, + STATE(2024), 1, aux_sym_for_phrase_repeat2, - STATE(2582), 1, + STATE(2673), 1, sym_on_error_phrase, - STATE(2789), 1, + STATE(2788), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3289), 1, - sym_on_stop_phrase, - STATE(3291), 1, + STATE(3471), 1, aux_sym_for_statement_repeat1, - STATE(1674), 2, + STATE(3472), 1, + sym_on_stop_phrase, + STATE(1687), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84487] = 21, + [85030] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2419), 1, anon_sym_COLON, - STATE(1780), 1, + STATE(1748), 1, sym_where_clause, - STATE(1781), 1, + STATE(1771), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2017), 1, + STATE(2120), 1, aux_sym_for_phrase_repeat2, - STATE(2617), 1, + STATE(2667), 1, sym_on_error_phrase, - STATE(2728), 1, + STATE(2734), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3407), 1, - sym_on_stop_phrase, - STATE(3408), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(1675), 2, + STATE(3286), 1, + sym_on_stop_phrase, + STATE(1688), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84556] = 21, + [85099] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, + ACTIONS(2413), 1, anon_sym_COLON, - STATE(1729), 1, - sym_where_clause, - STATE(1735), 1, + STATE(1737), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(1745), 1, + sym_where_clause, + STATE(2016), 1, sym_query_tuning, - STATE(2055), 1, + STATE(2089), 1, aux_sym_for_phrase_repeat2, - STATE(2674), 1, + STATE(2669), 1, sym_on_error_phrase, STATE(2796), 1, - sym_sort_clause, - STATE(2874), 1, sym_on_quit_phrase, - STATE(3084), 1, - sym_on_stop_phrase, - STATE(3085), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3407), 1, aux_sym_for_statement_repeat1, - STATE(1676), 2, + STATE(3416), 1, + sym_on_stop_phrase, + STATE(1689), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84625] = 21, + [85168] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2427), 1, + ACTIONS(2411), 1, anon_sym_COLON, - STATE(1764), 1, - aux_sym_for_phrase_repeat1, - STATE(1765), 1, + STATE(1750), 1, sym_where_clause, - STATE(1992), 1, + STATE(1756), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, sym_query_tuning, - STATE(2094), 1, + STATE(2100), 1, aux_sym_for_phrase_repeat2, - STATE(2558), 1, + STATE(2601), 1, sym_on_error_phrase, - STATE(2772), 1, + STATE(2852), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3134), 1, - aux_sym_for_statement_repeat1, - STATE(3135), 1, + STATE(3233), 1, sym_on_stop_phrase, - STATE(1677), 2, + STATE(3236), 1, + aux_sym_for_statement_repeat1, + STATE(1690), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84694] = 21, + [85237] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2429), 1, + ACTIONS(2409), 1, anon_sym_COLON, - STATE(1719), 1, + STATE(1796), 1, sym_where_clause, - STATE(1783), 1, + STATE(1801), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2013), 1, + STATE(2054), 1, aux_sym_for_phrase_repeat2, - STATE(2601), 1, + STATE(2567), 1, sym_on_error_phrase, - STATE(2735), 1, + STATE(2805), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3178), 1, + STATE(3224), 1, aux_sym_for_statement_repeat1, - STATE(3184), 1, + STATE(3225), 1, sym_on_stop_phrase, - STATE(1678), 2, + STATE(1691), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84763] = 20, + [85306] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(1711), 1, - sym__pre_tuning, - STATE(1798), 1, - sym_where_clause, - STATE(1804), 1, + ACTIONS(2457), 1, + anon_sym_COLON, + STATE(1764), 1, aux_sym_for_phrase_repeat1, - STATE(1933), 1, + STATE(1766), 1, + sym_where_clause, + STATE(2016), 1, sym_query_tuning, - STATE(2193), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2732), 1, + STATE(2555), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2960), 1, + STATE(2779), 1, sym_on_quit_phrase, - STATE(3812), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3139), 1, sym_on_stop_phrase, - ACTIONS(2431), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1679), 2, + STATE(3140), 1, + aux_sym_for_statement_repeat1, + STATE(1692), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84830] = 21, + [85375] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2377), 1, + ACTIONS(2459), 1, anon_sym_COLON, - STATE(1754), 1, - sym_where_clause, - STATE(1757), 1, + STATE(1734), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(1758), 1, + sym_where_clause, + STATE(2016), 1, sym_query_tuning, - STATE(2116), 1, + STATE(2080), 1, aux_sym_for_phrase_repeat2, - STATE(2546), 1, + STATE(2690), 1, sym_on_error_phrase, - STATE(2778), 1, + STATE(2760), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3315), 1, + STATE(3275), 1, aux_sym_for_statement_repeat1, - STATE(3319), 1, + STATE(3277), 1, sym_on_stop_phrase, - STATE(1680), 2, + STATE(1693), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84899] = 21, + [85444] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2433), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(1733), 1, - sym_where_clause, - STATE(1734), 1, + STATE(1760), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(1763), 1, + sym_where_clause, + STATE(2016), 1, sym_query_tuning, - STATE(2060), 1, + STATE(2078), 1, aux_sym_for_phrase_repeat2, - STATE(2556), 1, + STATE(2632), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2799), 1, + STATE(2850), 1, sym_on_quit_phrase, - STATE(3271), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3379), 1, sym_on_stop_phrase, - STATE(3274), 1, + STATE(3381), 1, aux_sym_for_statement_repeat1, - STATE(1681), 2, + STATE(1694), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [84968] = 21, + [85513] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2375), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(1720), 1, + STATE(1738), 1, sym_where_clause, - STATE(1772), 1, + STATE(1739), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2061), 1, + STATE(2117), 1, aux_sym_for_phrase_repeat2, - STATE(2574), 1, + STATE(2704), 1, sym_on_error_phrase, - STATE(2755), 1, + STATE(2728), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3137), 1, + STATE(3289), 1, sym_on_stop_phrase, - STATE(3138), 1, + STATE(3290), 1, aux_sym_for_statement_repeat1, - STATE(1682), 2, + STATE(1695), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [85037] = 21, + [85582] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2373), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(1737), 1, + STATE(1782), 1, aux_sym_for_phrase_repeat1, - STATE(1738), 1, + STATE(1783), 1, sym_where_clause, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2073), 1, + STATE(2043), 1, aux_sym_for_phrase_repeat2, - STATE(2552), 1, + STATE(2583), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2806), 1, + STATE(2857), 1, sym_on_quit_phrase, - STATE(3265), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3128), 1, sym_on_stop_phrase, - STATE(3268), 1, + STATE(3129), 1, aux_sym_for_statement_repeat1, - STATE(1683), 2, + STATE(1696), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, + [85651] = 21, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - [85106] = 10, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2103), 1, + aux_sym_where_clause_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2439), 1, + anon_sym_COLON, + STATE(1781), 1, + sym_where_clause, + STATE(1785), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2051), 1, + aux_sym_for_phrase_repeat2, + STATE(2619), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2892), 1, + sym_on_quit_phrase, + STATE(3163), 1, + sym_on_stop_phrase, + STATE(3164), 1, + aux_sym_for_statement_repeat1, + STATE(1697), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [85720] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2435), 1, + ACTIONS(2467), 1, sym__terminator, - STATE(1695), 1, + STATE(1717), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - STATE(1684), 2, + STATE(1698), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -117617,116 +118619,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [85152] = 17, + [85766] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2337), 1, + ACTIONS(2365), 1, aux_sym_variable_definition_token3, - ACTIONS(2339), 1, + ACTIONS(2367), 1, aux_sym_variable_definition_token4, - ACTIONS(2341), 1, + ACTIONS(2369), 1, aux_sym_buffer_definition_token1, - ACTIONS(2343), 1, + ACTIONS(2371), 1, aux_sym_buffer_definition_token3, - ACTIONS(2345), 1, + ACTIONS(2373), 1, aux_sym_query_definition_token1, - ACTIONS(2349), 1, + ACTIONS(2377), 1, aux_sym_stream_definition_token1, - STATE(1835), 1, + STATE(1844), 1, aux_sym_variable_definition_repeat1, - STATE(1936), 1, - aux_sym_buffer_definition_repeat1, - STATE(1981), 1, + STATE(1973), 1, sym_serialization_tuning, - ACTIONS(1348), 2, + STATE(2011), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1360), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1685), 2, + STATE(1699), 2, sym_comment, sym_include, - STATE(1901), 2, + STATE(1932), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1344), 4, + ACTIONS(1356), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [85212] = 17, + [85826] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2439), 1, - aux_sym_variable_definition_token2, - STATE(1701), 1, - aux_sym_property_definition_repeat2, - STATE(1879), 1, - sym_property_tuning, - STATE(1917), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - ACTIONS(2365), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1686), 2, + ACTIONS(2347), 1, + aux_sym_variable_definition_token3, + ACTIONS(2349), 1, + aux_sym_variable_definition_token4, + ACTIONS(2351), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2353), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2355), 1, + aux_sym_query_definition_token1, + ACTIONS(2359), 1, + aux_sym_stream_definition_token1, + STATE(1858), 1, + aux_sym_variable_definition_repeat1, + STATE(1971), 1, + aux_sym_buffer_definition_repeat1, + STATE(1973), 1, + sym_serialization_tuning, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1700), 2, sym_comment, sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, + STATE(1932), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2437), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [85272] = 10, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [85886] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2441), 1, + ACTIONS(2469), 1, sym__terminator, - STATE(1695), 1, + STATE(1717), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - STATE(1687), 2, + STATE(1701), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -117739,73 +118741,159 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [85318] = 17, + [85932] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2391), 1, + ACTIONS(2473), 1, aux_sym_variable_definition_token2, - STATE(1702), 1, + STATE(1708), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1921), 1, + STATE(1905), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1688), 2, + STATE(1702), 2, + sym_comment, + sym_include, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2471), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [85992] = 17, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2423), 1, + aux_sym_variable_definition_token2, + STATE(1709), 1, + aux_sym_property_definition_repeat2, + STATE(1870), 1, + sym_property_tuning, + STATE(1934), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + ACTIONS(2399), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1703), 2, + sym_comment, + sym_include, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2421), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [86052] = 17, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2473), 1, + aux_sym_variable_definition_token2, + STATE(1857), 1, + aux_sym_property_definition_repeat2, + STATE(1870), 1, + sym_property_tuning, + STATE(1905), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + ACTIONS(2399), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1704), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2389), 4, + ACTIONS(2471), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [85378] = 10, + [86112] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2443), 1, + ACTIONS(2475), 1, sym__terminator, - STATE(1695), 1, + STATE(1717), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - STATE(1689), 2, + STATE(1705), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -117818,30 +118906,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [85424] = 10, + [86158] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2445), 1, + ACTIONS(2477), 1, sym__terminator, - STATE(1695), 1, + STATE(1717), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - STATE(1690), 2, + STATE(1706), 2, + sym_comment, + sym_include, + ACTIONS(1151), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token8, + ACTIONS(1153), 12, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_output_stream_tuning_token2, + aux_sym_output_stream_tuning_token3, + aux_sym_output_stream_tuning_token4, + aux_sym_output_stream_tuning_token5, + aux_sym_output_stream_tuning_token6, + aux_sym_output_stream_tuning_token7, + [86204] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1155), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2479), 1, + sym__terminator, + STATE(1717), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1812), 1, + sym_output_stream_tuning, + STATE(1707), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -117854,409 +118978,395 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [85470] = 17, + [86250] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2439), 1, + ACTIONS(2483), 1, aux_sym_variable_definition_token2, - STATE(1830), 1, + STATE(1857), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1917), 1, + STATE(1921), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1691), 2, + STATE(1708), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2437), 4, + ACTIONS(2481), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [85530] = 17, + [86310] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2449), 1, + ACTIONS(2487), 1, aux_sym_variable_definition_token2, - STATE(1830), 1, + STATE(1857), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1920), 1, + STATE(1922), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1692), 2, + STATE(1709), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2447), 4, + ACTIONS(2485), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [85590] = 17, + [86370] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2451), 1, - aux_sym_variable_definition_token3, - ACTIONS(2453), 1, - aux_sym_variable_definition_token4, - ACTIONS(2455), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2457), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2459), 1, - aux_sym_query_definition_token1, - ACTIONS(2461), 1, - aux_sym_stream_definition_token1, - STATE(1828), 1, - aux_sym_variable_definition_repeat1, - STATE(1958), 1, - aux_sym_buffer_definition_repeat1, - STATE(1981), 1, - sym_serialization_tuning, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1693), 2, - sym_comment, - sym_include, - STATE(1901), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [85650] = 17, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(2367), 1, - aux_sym_variable_definition_token2, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - STATE(1692), 1, - aux_sym_property_definition_repeat2, - STATE(1879), 1, - sym_property_tuning, - STATE(1905), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - ACTIONS(2365), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1694), 2, - sym_comment, - sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2363), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [85710] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - sym__terminator, - ACTIONS(2471), 1, - aux_sym_input_stream_tuning_token9, - STATE(1803), 1, - sym_output_stream_tuning, - STATE(1695), 3, - sym_comment, - sym_include, - aux_sym_output_stream_statement_repeat1, - ACTIONS(2465), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token8, - ACTIONS(2468), 12, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_output_stream_tuning_token2, - aux_sym_output_stream_tuning_token3, - aux_sym_output_stream_tuning_token4, - aux_sym_output_stream_tuning_token5, - aux_sym_output_stream_tuning_token6, - aux_sym_output_stream_tuning_token7, - [85754] = 17, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2476), 1, + ACTIONS(2483), 1, aux_sym_variable_definition_token2, - STATE(1691), 1, + STATE(1718), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1887), 1, + STATE(1921), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1696), 2, + STATE(1710), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2474), 4, + ACTIONS(2481), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [85814] = 17, + [86430] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2401), 1, + aux_sym_variable_definition_token2, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2480), 1, - aux_sym_variable_definition_token2, - STATE(1830), 1, + STATE(1719), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1898), 1, + STATE(1925), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1697), 2, + STATE(1711), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2478), 4, + ACTIONS(2397), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [85874] = 17, + [86490] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2476), 1, + ACTIONS(2491), 1, aux_sym_variable_definition_token2, - STATE(1830), 1, + STATE(1857), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1887), 1, + STATE(1930), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1698), 2, + STATE(1712), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2474), 4, + ACTIONS(2489), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [85934] = 17, + [86550] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2482), 1, + ACTIONS(1362), 1, aux_sym_variable_definition_token3, - ACTIONS(2484), 1, + ACTIONS(1364), 1, aux_sym_variable_definition_token4, - ACTIONS(2486), 1, + ACTIONS(1366), 1, aux_sym_buffer_definition_token1, - ACTIONS(2488), 1, + ACTIONS(1368), 1, aux_sym_buffer_definition_token3, - ACTIONS(2490), 1, + ACTIONS(1370), 1, aux_sym_query_definition_token1, - ACTIONS(2492), 1, + ACTIONS(2493), 1, aux_sym_stream_definition_token1, - STATE(1826), 1, + STATE(1849), 1, aux_sym_variable_definition_repeat1, - STATE(1981), 1, + STATE(1973), 1, sym_serialization_tuning, - STATE(1999), 1, + STATE(2014), 1, aux_sym_buffer_definition_repeat1, - ACTIONS(1348), 2, + ACTIONS(1360), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1699), 2, + STATE(1713), 2, sym_comment, sym_include, - STATE(1901), 2, + STATE(1932), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1344), 4, + ACTIONS(1356), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [85994] = 10, + [86610] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2494), 1, + ACTIONS(2495), 1, sym__terminator, - STATE(1695), 1, + STATE(1717), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - STATE(1700), 2, + STATE(1714), 2, + sym_comment, + sym_include, + ACTIONS(1151), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token8, + ACTIONS(1153), 12, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_output_stream_tuning_token2, + aux_sym_output_stream_tuning_token3, + aux_sym_output_stream_tuning_token4, + aux_sym_output_stream_tuning_token5, + aux_sym_output_stream_tuning_token6, + aux_sym_output_stream_tuning_token7, + [86656] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1155), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2497), 1, + sym__terminator, + STATE(1717), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1812), 1, + sym_output_stream_tuning, + STATE(1715), 2, + sym_comment, + sym_include, + ACTIONS(1151), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token8, + ACTIONS(1153), 12, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_output_stream_tuning_token2, + aux_sym_output_stream_tuning_token3, + aux_sym_output_stream_tuning_token4, + aux_sym_output_stream_tuning_token5, + aux_sym_output_stream_tuning_token6, + aux_sym_output_stream_tuning_token7, + [86702] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1155), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2499), 1, + sym__terminator, + STATE(1717), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1812), 1, + sym_output_stream_tuning, + STATE(1716), 2, + sym_comment, + sym_include, + ACTIONS(1151), 4, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token8, + ACTIONS(1153), 12, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_output_stream_tuning_token2, + aux_sym_output_stream_tuning_token3, + aux_sym_output_stream_tuning_token4, + aux_sym_output_stream_tuning_token5, + aux_sym_output_stream_tuning_token6, + aux_sym_output_stream_tuning_token7, + [86748] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2501), 1, + sym__terminator, + ACTIONS(2509), 1, + aux_sym_input_stream_tuning_token9, + STATE(1812), 1, + sym_output_stream_tuning, + STATE(1717), 3, sym_comment, sym_include, - ACTIONS(1143), 4, + aux_sym_output_stream_statement_repeat1, + ACTIONS(2503), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(2506), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -118269,410 +119379,374 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [86040] = 17, + [86792] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2498), 1, + ACTIONS(2514), 1, aux_sym_variable_definition_token2, - STATE(1830), 1, + STATE(1857), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1923), 1, + STATE(1902), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1701), 2, + STATE(1718), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2496), 4, + ACTIONS(2512), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86100] = 17, + [86852] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2502), 1, + ACTIONS(2518), 1, aux_sym_variable_definition_token2, - STATE(1830), 1, + STATE(1857), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, STATE(1926), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1702), 2, + STATE(1719), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2500), 4, + ACTIONS(2516), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86160] = 17, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2317), 1, - aux_sym_variable_definition_token3, - ACTIONS(2319), 1, - aux_sym_variable_definition_token4, - ACTIONS(2321), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2323), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2325), 1, - aux_sym_query_definition_token1, - ACTIONS(2329), 1, - aux_sym_stream_definition_token1, - STATE(1832), 1, - aux_sym_variable_definition_repeat1, - STATE(1941), 1, - aux_sym_buffer_definition_repeat1, - STATE(1981), 1, - sym_serialization_tuning, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1703), 2, - sym_comment, - sym_include, - STATE(1901), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [86220] = 17, + [86912] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2401), 1, + ACTIONS(2514), 1, aux_sym_variable_definition_token2, - STATE(1697), 1, + STATE(1728), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1910), 1, + STATE(1902), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1704), 2, + STATE(1720), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2399), 4, + ACTIONS(2512), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86280] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1147), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2504), 1, - sym__terminator, - STATE(1695), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, - sym_output_stream_tuning, - STATE(1705), 2, - sym_comment, - sym_include, - ACTIONS(1143), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_output_stream_tuning_token2, - aux_sym_output_stream_tuning_token3, - aux_sym_output_stream_tuning_token4, - aux_sym_output_stream_tuning_token5, - aux_sym_output_stream_tuning_token6, - aux_sym_output_stream_tuning_token7, - [86326] = 17, + [86972] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2508), 1, + ACTIONS(2522), 1, aux_sym_variable_definition_token2, - STATE(1698), 1, + STATE(1704), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1894), 1, + STATE(1935), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1706), 2, + STATE(1721), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2506), 4, + ACTIONS(2520), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86386] = 17, + [87032] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2512), 1, + ACTIONS(2437), 1, aux_sym_variable_definition_token2, - STATE(1830), 1, + STATE(1712), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1892), 1, + STATE(1903), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1707), 2, + STATE(1722), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2510), 4, + ACTIONS(2435), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86446] = 17, + [87092] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2508), 1, + ACTIONS(2417), 1, aux_sym_variable_definition_token2, - STATE(1830), 1, + STATE(1732), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1894), 1, + STATE(1938), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1708), 2, + STATE(1723), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2506), 4, + ACTIONS(2415), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86506] = 17, + [87152] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1350), 1, + ACTIONS(2524), 1, aux_sym_variable_definition_token3, - ACTIONS(1352), 1, + ACTIONS(2526), 1, aux_sym_variable_definition_token4, - ACTIONS(1354), 1, + ACTIONS(2528), 1, aux_sym_buffer_definition_token1, - ACTIONS(1356), 1, + ACTIONS(2530), 1, aux_sym_buffer_definition_token3, - ACTIONS(1358), 1, + ACTIONS(2532), 1, aux_sym_query_definition_token1, - ACTIONS(2514), 1, + ACTIONS(2534), 1, aux_sym_stream_definition_token1, - STATE(1854), 1, + STATE(1864), 1, aux_sym_variable_definition_repeat1, - STATE(1981), 1, + STATE(1973), 1, sym_serialization_tuning, - STATE(2006), 1, + STATE(1977), 1, aux_sym_buffer_definition_repeat1, - ACTIONS(1348), 2, + ACTIONS(1360), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1709), 2, + STATE(1724), 2, sym_comment, sym_include, - STATE(1901), 2, + STATE(1932), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [87212] = 17, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2536), 1, + aux_sym_variable_definition_token3, + ACTIONS(2538), 1, + aux_sym_variable_definition_token4, + ACTIONS(2540), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2542), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2544), 1, + aux_sym_query_definition_token1, + ACTIONS(2546), 1, + aux_sym_stream_definition_token1, + STATE(1848), 1, + aux_sym_variable_definition_repeat1, + STATE(1973), 1, + sym_serialization_tuning, + STATE(2020), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1725), 2, + sym_comment, + sym_include, + STATE(1932), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1344), 4, + ACTIONS(1356), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [86566] = 10, + [87272] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2516), 1, + ACTIONS(2548), 1, sym__terminator, - STATE(1695), 1, + STATE(1717), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - STATE(1710), 2, + STATE(1726), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, @@ -118685,3455 +119759,3424 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [86612] = 19, + [87318] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(1801), 1, - aux_sym_for_phrase_repeat1, - STATE(1802), 1, + STATE(1815), 1, sym_where_clause, - STATE(1992), 1, + STATE(1816), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, sym_query_tuning, - STATE(2166), 1, + STATE(2181), 1, aux_sym_for_phrase_repeat2, - STATE(2705), 1, - sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2926), 1, + STATE(2901), 1, + sym_on_error_phrase, + STATE(3053), 1, sym_on_quit_phrase, - STATE(3699), 1, + STATE(3972), 1, sym_on_stop_phrase, - ACTIONS(2518), 2, + ACTIONS(2449), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1711), 2, + STATE(1727), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [86676] = 17, + [87382] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, + ACTIONS(1354), 1, aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, + ACTIONS(1376), 1, aux_sym_property_tuning_token1, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2383), 1, + ACTIONS(2552), 1, aux_sym_variable_definition_token2, - STATE(1707), 1, + STATE(1857), 1, aux_sym_property_definition_repeat2, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - STATE(1888), 1, + STATE(1911), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - ACTIONS(2365), 2, + ACTIONS(2399), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1712), 2, + STATE(1728), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2381), 4, + ACTIONS(2550), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86736] = 17, + [87442] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2522), 1, - aux_sym_variable_definition_token2, - STATE(1708), 1, - aux_sym_property_definition_repeat2, - STATE(1879), 1, - sym_property_tuning, - STATE(1904), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - ACTIONS(2365), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1713), 2, + ACTIONS(2556), 1, + aux_sym_input_stream_tuning_token10, + ACTIONS(2558), 1, + aux_sym_input_stream_tuning_token11, + STATE(1729), 2, sym_comment, sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2520), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [86796] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1147), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2524), 1, + ACTIONS(2554), 18, sym__terminator, - STATE(1695), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, - sym_output_stream_tuning, - STATE(1714), 2, - sym_comment, - sym_include, - ACTIONS(1143), 4, aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - [86842] = 19, + aux_sym_output_stream_tuning_token8, + [87482] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2096), 1, + ACTIONS(2103), 1, aux_sym_where_clause_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(1798), 1, - sym_where_clause, STATE(1804), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(1810), 1, + sym_where_clause, + STATE(2016), 1, sym_query_tuning, - STATE(2193), 1, + STATE(2156), 1, aux_sym_for_phrase_repeat2, - STATE(2732), 1, + STATE(2862), 1, sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2960), 1, + STATE(2975), 1, sym_on_quit_phrase, - STATE(3812), 1, + STATE(3875), 1, sym_on_stop_phrase, - ACTIONS(2431), 2, + ACTIONS(2560), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1715), 2, + STATE(1730), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [86906] = 10, + [87546] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1147), 1, + ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2526), 1, + ACTIONS(2562), 1, sym__terminator, - STATE(1695), 1, + STATE(1717), 1, aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, + STATE(1812), 1, sym_output_stream_tuning, - STATE(1716), 2, + STATE(1731), 2, sym_comment, sym_include, - ACTIONS(1143), 4, + ACTIONS(1151), 4, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_output_stream_tuning_token2, - aux_sym_output_stream_tuning_token3, - aux_sym_output_stream_tuning_token4, - aux_sym_output_stream_tuning_token5, - aux_sym_output_stream_tuning_token6, - aux_sym_output_stream_tuning_token7, - [86952] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2530), 1, - aux_sym_input_stream_tuning_token10, - ACTIONS(2532), 1, - aux_sym_input_stream_tuning_token11, - STATE(1717), 2, - sym_comment, - sym_include, - ACTIONS(2528), 18, - sym__terminator, - aux_sym_input_stream_tuning_token1, + ACTIONS(1153), 12, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - aux_sym_output_stream_tuning_token1, aux_sym_output_stream_tuning_token2, aux_sym_output_stream_tuning_token3, aux_sym_output_stream_tuning_token4, aux_sym_output_stream_tuning_token5, aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, - aux_sym_output_stream_tuning_token8, - [86992] = 10, + [87592] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1147), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2534), 1, - sym__terminator, - STATE(1695), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1803), 1, - sym_output_stream_tuning, - STATE(1718), 2, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2566), 1, + aux_sym_variable_definition_token2, + STATE(1857), 1, + aux_sym_property_definition_repeat2, + STATE(1870), 1, + sym_property_tuning, + STATE(1909), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + ACTIONS(2399), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1732), 2, sym_comment, sym_include, - ACTIONS(1143), 4, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token8, - ACTIONS(1145), 12, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_output_stream_tuning_token2, - aux_sym_output_stream_tuning_token3, - aux_sym_output_stream_tuning_token4, - aux_sym_output_stream_tuning_token5, - aux_sym_output_stream_tuning_token6, - aux_sym_output_stream_tuning_token7, - [87038] = 19, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2564), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [87652] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2536), 1, + ACTIONS(2413), 1, anon_sym_COLON, - STATE(1771), 1, + STATE(1737), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2083), 1, + STATE(2089), 1, aux_sym_for_phrase_repeat2, - STATE(2538), 1, + STATE(2669), 1, sym_on_error_phrase, - STATE(2720), 1, - sym_on_quit_phrase, STATE(2796), 1, + sym_on_quit_phrase, + STATE(2879), 1, sym_sort_clause, - STATE(3302), 1, + STATE(3407), 1, aux_sym_for_statement_repeat1, - STATE(3303), 1, + STATE(3416), 1, sym_on_stop_phrase, - STATE(1719), 2, + STATE(1733), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87101] = 19, + [87715] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2429), 1, + ACTIONS(2568), 1, anon_sym_COLON, - STATE(1783), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2013), 1, + STATE(2053), 1, aux_sym_for_phrase_repeat2, - STATE(2601), 1, + STATE(2639), 1, sym_on_error_phrase, - STATE(2735), 1, + STATE(2807), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3178), 1, + STATE(3308), 1, aux_sym_for_statement_repeat1, - STATE(3184), 1, + STATE(3310), 1, sym_on_stop_phrase, - STATE(1720), 2, + STATE(1734), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87164] = 19, + [87778] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2538), 1, + ACTIONS(2570), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2057), 1, + STATE(2095), 1, aux_sym_for_phrase_repeat2, - STATE(2662), 1, + STATE(2675), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2870), 1, + STATE(2775), 1, sym_on_quit_phrase, - STATE(3082), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3271), 1, sym_on_stop_phrase, - STATE(3083), 1, + STATE(3272), 1, aux_sym_for_statement_repeat1, - STATE(1721), 2, + STATE(1735), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87227] = 19, + [87841] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2540), 1, + ACTIONS(2572), 1, anon_sym_COLON, - STATE(1721), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2103), 1, + STATE(2081), 1, aux_sym_for_phrase_repeat2, - STATE(2680), 1, + STATE(2689), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2891), 1, + STATE(2799), 1, sym_on_quit_phrase, - STATE(3093), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3266), 1, sym_on_stop_phrase, - STATE(3094), 1, + STATE(3267), 1, aux_sym_for_statement_repeat1, - STATE(1722), 2, + STATE(1736), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87290] = 19, + [87904] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2540), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2103), 1, + STATE(2078), 1, aux_sym_for_phrase_repeat2, - STATE(2680), 1, + STATE(2632), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2891), 1, + STATE(2850), 1, sym_on_quit_phrase, - STATE(3093), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3379), 1, sym_on_stop_phrase, - STATE(3094), 1, + STATE(3381), 1, aux_sym_for_statement_repeat1, - STATE(1723), 2, + STATE(1737), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87353] = 19, + [87967] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2542), 1, + ACTIONS(2574), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1757), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2107), 1, + STATE(2128), 1, aux_sym_for_phrase_repeat2, - STATE(2549), 1, + STATE(2698), 1, sym_on_error_phrase, - STATE(2776), 1, + STATE(2744), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3313), 1, - aux_sym_for_statement_repeat1, - STATE(3314), 1, + STATE(3281), 1, sym_on_stop_phrase, - STATE(1724), 2, + STATE(3282), 1, + aux_sym_for_statement_repeat1, + STATE(1738), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87416] = 19, + [88030] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2542), 1, + ACTIONS(2574), 1, anon_sym_COLON, - STATE(1758), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2107), 1, + STATE(2128), 1, aux_sym_for_phrase_repeat2, - STATE(2549), 1, + STATE(2698), 1, sym_on_error_phrase, - STATE(2776), 1, + STATE(2744), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3313), 1, - aux_sym_for_statement_repeat1, - STATE(3314), 1, + STATE(3281), 1, sym_on_stop_phrase, - STATE(1725), 2, + STATE(3282), 1, + aux_sym_for_statement_repeat1, + STATE(1739), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87479] = 19, + [88093] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2421), 1, + ACTIONS(2576), 1, anon_sym_COLON, - STATE(1769), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2032), 1, + STATE(2060), 1, aux_sym_for_phrase_repeat2, - STATE(2672), 1, + STATE(2629), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2883), 1, + STATE(2864), 1, sym_on_quit_phrase, - STATE(3087), 1, - sym_on_stop_phrase, - STATE(3088), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3244), 1, aux_sym_for_statement_repeat1, - STATE(1726), 2, + STATE(3245), 1, + sym_on_stop_phrase, + STATE(1740), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87542] = 19, + [88156] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2387), 1, + ACTIONS(2576), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1798), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2068), 1, + STATE(2060), 1, aux_sym_for_phrase_repeat2, - STATE(2685), 1, + STATE(2629), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2898), 1, + STATE(2864), 1, sym_on_quit_phrase, - STATE(3099), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3244), 1, aux_sym_for_statement_repeat1, - STATE(3101), 1, + STATE(3245), 1, sym_on_stop_phrase, - STATE(1727), 2, + STATE(1741), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87605] = 19, + [88219] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2387), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(1763), 1, + STATE(1799), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2068), 1, + STATE(2023), 1, aux_sym_for_phrase_repeat2, - STATE(2685), 1, + STATE(2576), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2898), 1, + STATE(2820), 1, sym_on_quit_phrase, - STATE(3099), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3205), 1, aux_sym_for_statement_repeat1, - STATE(3101), 1, + STATE(3207), 1, sym_on_stop_phrase, - STATE(1728), 2, + STATE(1742), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87668] = 19, + [88282] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2419), 1, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(1724), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2058), 1, + STATE(2046), 1, aux_sym_for_phrase_repeat2, - STATE(2597), 1, + STATE(2577), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2840), 1, + STATE(2759), 1, sym_on_quit_phrase, - STATE(3142), 1, - sym_on_stop_phrase, - STATE(3299), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3301), 1, aux_sym_for_statement_repeat1, - STATE(1729), 2, + STATE(3303), 1, + sym_on_stop_phrase, + STATE(1743), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87731] = 19, + [88345] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, ACTIONS(2395), 1, anon_sym_COLON, - STATE(1746), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, STATE(2101), 1, aux_sym_for_phrase_repeat2, - STATE(2528), 1, + STATE(2713), 1, sym_on_error_phrase, - STATE(2794), 1, + STATE(2724), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3091), 1, - sym_on_stop_phrase, - STATE(3092), 1, + STATE(3146), 1, aux_sym_for_statement_repeat1, - STATE(1730), 2, + STATE(3148), 1, + sym_on_stop_phrase, + STATE(1744), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87794] = 19, + [88408] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1760), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2101), 1, + STATE(2078), 1, aux_sym_for_phrase_repeat2, - STATE(2528), 1, + STATE(2632), 1, sym_on_error_phrase, - STATE(2794), 1, + STATE(2850), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3091), 1, + STATE(3379), 1, sym_on_stop_phrase, - STATE(3092), 1, + STATE(3381), 1, aux_sym_for_statement_repeat1, - STATE(1731), 2, + STATE(1745), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87857] = 19, + [88471] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2544), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2019), 1, + STATE(2047), 1, aux_sym_for_phrase_repeat2, - STATE(2577), 1, + STATE(2641), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2819), 1, + STATE(2824), 1, sym_on_quit_phrase, - STATE(3236), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3384), 1, sym_on_stop_phrase, - STATE(3238), 1, + STATE(3385), 1, aux_sym_for_statement_repeat1, - STATE(1732), 2, + STATE(1746), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87920] = 19, + [88534] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2546), 1, + ACTIONS(2570), 1, anon_sym_COLON, - STATE(1732), 1, + STATE(1736), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2043), 1, + STATE(2095), 1, aux_sym_for_phrase_repeat2, - STATE(2566), 1, + STATE(2675), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2811), 1, + STATE(2775), 1, sym_on_quit_phrase, - STATE(3253), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3271), 1, sym_on_stop_phrase, - STATE(3255), 1, + STATE(3272), 1, aux_sym_for_statement_repeat1, - STATE(1733), 2, + STATE(1747), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [87983] = 19, + [88597] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2546), 1, + ACTIONS(2453), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1735), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2043), 1, + STATE(2108), 1, aux_sym_for_phrase_repeat2, - STATE(2566), 1, + STATE(2692), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2811), 1, + STATE(2753), 1, sym_on_quit_phrase, - STATE(3253), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3278), 1, sym_on_stop_phrase, - STATE(3255), 1, + STATE(3279), 1, aux_sym_for_statement_repeat1, - STATE(1734), 2, + STATE(1748), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88046] = 19, + [88660] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, ACTIONS(2419), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2058), 1, + STATE(2120), 1, aux_sym_for_phrase_repeat2, - STATE(2597), 1, + STATE(2667), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2840), 1, + STATE(2734), 1, sym_on_quit_phrase, - STATE(3142), 1, - sym_on_stop_phrase, - STATE(3299), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(1735), 2, + STATE(3286), 1, + sym_on_stop_phrase, + STATE(1749), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88109] = 19, + [88723] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2411), 1, + ACTIONS(2459), 1, anon_sym_COLON, - STATE(1762), 1, + STATE(1734), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2098), 1, + STATE(2080), 1, aux_sym_for_phrase_repeat2, - STATE(2658), 1, + STATE(2690), 1, sym_on_error_phrase, - STATE(2698), 1, + STATE(2760), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3442), 1, + STATE(3275), 1, aux_sym_for_statement_repeat1, - STATE(3444), 1, + STATE(3277), 1, sym_on_stop_phrase, - STATE(1736), 2, + STATE(1750), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88172] = 19, + [88786] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2413), 1, + ACTIONS(2457), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2076), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2543), 1, + STATE(2555), 1, sym_on_error_phrase, - STATE(2757), 1, + STATE(2779), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3351), 1, - aux_sym_for_statement_repeat1, - STATE(3353), 1, + STATE(3139), 1, sym_on_stop_phrase, - STATE(1737), 2, + STATE(3140), 1, + aux_sym_for_statement_repeat1, + STATE(1751), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88235] = 19, + [88849] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2413), 1, + ACTIONS(2419), 1, anon_sym_COLON, - STATE(1766), 1, + STATE(1771), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2076), 1, + STATE(2120), 1, aux_sym_for_phrase_repeat2, - STATE(2543), 1, + STATE(2667), 1, sym_on_error_phrase, - STATE(2757), 1, + STATE(2734), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3351), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(3353), 1, + STATE(3286), 1, sym_on_stop_phrase, - STATE(1738), 2, + STATE(1752), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88298] = 19, + [88912] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, + ACTIONS(2413), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2055), 1, + STATE(2089), 1, aux_sym_for_phrase_repeat2, - STATE(2674), 1, + STATE(2669), 1, sym_on_error_phrase, STATE(2796), 1, - sym_sort_clause, - STATE(2874), 1, sym_on_quit_phrase, - STATE(3084), 1, - sym_on_stop_phrase, - STATE(3085), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3407), 1, aux_sym_for_statement_repeat1, - STATE(1739), 2, + STATE(3416), 1, + sym_on_stop_phrase, + STATE(1753), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88361] = 19, + [88975] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2548), 1, + ACTIONS(2457), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1764), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2049), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2563), 1, + STATE(2555), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2807), 1, + STATE(2779), 1, sym_on_quit_phrase, - STATE(3259), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3139), 1, sym_on_stop_phrase, - STATE(3263), 1, + STATE(3140), 1, aux_sym_for_statement_repeat1, - STATE(1740), 2, + STATE(1754), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88424] = 19, + [89038] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, + ACTIONS(2580), 1, anon_sym_COLON, - STATE(1735), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2055), 1, + STATE(2044), 1, aux_sym_for_phrase_repeat2, - STATE(2674), 1, + STATE(2628), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2874), 1, + STATE(2856), 1, sym_on_quit_phrase, - STATE(3084), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3370), 1, sym_on_stop_phrase, - STATE(3085), 1, + STATE(3371), 1, aux_sym_for_statement_repeat1, - STATE(1741), 2, + STATE(1755), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88487] = 19, + [89101] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2433), 1, + ACTIONS(2459), 1, anon_sym_COLON, - STATE(1734), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2060), 1, + STATE(2080), 1, aux_sym_for_phrase_repeat2, - STATE(2556), 1, + STATE(2690), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2799), 1, + STATE(2760), 1, sym_on_quit_phrase, - STATE(3271), 1, - sym_on_stop_phrase, - STATE(3274), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3275), 1, aux_sym_for_statement_repeat1, - STATE(1742), 2, + STATE(3277), 1, + sym_on_stop_phrase, + STATE(1756), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88550] = 19, + [89164] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2433), 1, + ACTIONS(2582), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2060), 1, + STATE(2102), 1, aux_sym_for_phrase_repeat2, - STATE(2556), 1, + STATE(2684), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2799), 1, + STATE(2767), 1, sym_on_quit_phrase, - STATE(3271), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3273), 1, sym_on_stop_phrase, STATE(3274), 1, aux_sym_for_statement_repeat1, - STATE(1743), 2, + STATE(1757), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88613] = 19, + [89227] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2550), 1, + ACTIONS(2568), 1, anon_sym_COLON, - STATE(1740), 1, + STATE(1769), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2078), 1, + STATE(2053), 1, aux_sym_for_phrase_repeat2, - STATE(2587), 1, + STATE(2639), 1, sym_on_error_phrase, - STATE(2795), 1, + STATE(2807), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3276), 1, - sym_on_stop_phrase, - STATE(3279), 1, + STATE(3308), 1, aux_sym_for_statement_repeat1, - STATE(1744), 2, + STATE(3310), 1, + sym_on_stop_phrase, + STATE(1758), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88676] = 19, + [89290] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2550), 1, + ACTIONS(2407), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1768), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2078), 1, + STATE(2067), 1, aux_sym_for_phrase_repeat2, - STATE(2587), 1, + STATE(2662), 1, sym_on_error_phrase, - STATE(2795), 1, + STATE(2800), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3276), 1, - sym_on_stop_phrase, - STATE(3279), 1, + STATE(3135), 1, aux_sym_for_statement_repeat1, - STATE(1745), 2, + STATE(3136), 1, + sym_on_stop_phrase, + STATE(1759), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88739] = 19, + [89353] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2427), 1, + ACTIONS(2584), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2094), 1, + STATE(2073), 1, aux_sym_for_phrase_repeat2, - STATE(2558), 1, + STATE(2627), 1, sym_on_error_phrase, - STATE(2772), 1, + STATE(2868), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3134), 1, - aux_sym_for_statement_repeat1, - STATE(3135), 1, + STATE(3364), 1, sym_on_stop_phrase, - STATE(1746), 2, + STATE(3369), 1, + aux_sym_for_statement_repeat1, + STATE(1760), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88802] = 19, + [89416] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2409), 1, + ACTIONS(2586), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2090), 1, + STATE(2097), 1, aux_sym_for_phrase_repeat2, - STATE(2533), 1, + STATE(2594), 1, sym_on_error_phrase, - STATE(2790), 1, + STATE(2860), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3039), 1, - aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(3189), 1, sym_on_stop_phrase, - STATE(1747), 2, + STATE(3190), 1, + aux_sym_for_statement_repeat1, + STATE(1761), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88865] = 19, + [89479] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2407), 1, anon_sym_COLON, - STATE(1723), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2081), 1, + STATE(2067), 1, aux_sym_for_phrase_repeat2, - STATE(2688), 1, + STATE(2662), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2813), 1, + STATE(2800), 1, sym_on_quit_phrase, - STATE(3102), 1, - sym_on_stop_phrase, - STATE(3103), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3135), 1, aux_sym_for_statement_repeat1, - STATE(1748), 2, + STATE(3136), 1, + sym_on_stop_phrase, + STATE(1762), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88928] = 19, + [89542] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2427), 1, + ACTIONS(2584), 1, anon_sym_COLON, - STATE(1764), 1, + STATE(1784), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2094), 1, + STATE(2073), 1, aux_sym_for_phrase_repeat2, - STATE(2558), 1, + STATE(2627), 1, sym_on_error_phrase, - STATE(2772), 1, + STATE(2868), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3134), 1, - aux_sym_for_statement_repeat1, - STATE(3135), 1, + STATE(3364), 1, sym_on_stop_phrase, - STATE(1749), 2, + STATE(3369), 1, + aux_sym_for_statement_repeat1, + STATE(1763), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [88991] = 19, + [89605] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2409), 1, + ACTIONS(2588), 1, anon_sym_COLON, - STATE(1743), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2090), 1, + STATE(2050), 1, aux_sym_for_phrase_repeat2, - STATE(2533), 1, + STATE(2602), 1, sym_on_error_phrase, - STATE(2790), 1, - sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3039), 1, - aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(2914), 1, + sym_on_quit_phrase, + STATE(3130), 1, sym_on_stop_phrase, - STATE(1750), 2, + STATE(3131), 1, + aux_sym_for_statement_repeat1, + STATE(1764), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89054] = 19, + [89668] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2375), 1, + ACTIONS(2411), 1, anon_sym_COLON, - STATE(1772), 1, + STATE(1756), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2061), 1, + STATE(2100), 1, aux_sym_for_phrase_repeat2, - STATE(2574), 1, + STATE(2601), 1, sym_on_error_phrase, - STATE(2755), 1, + STATE(2852), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3137), 1, + STATE(3233), 1, sym_on_stop_phrase, - STATE(3138), 1, + STATE(3236), 1, aux_sym_for_statement_repeat1, - STATE(1751), 2, + STATE(1765), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89117] = 19, + [89731] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2375), 1, + ACTIONS(2588), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1779), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2061), 1, + STATE(2050), 1, aux_sym_for_phrase_repeat2, - STATE(2574), 1, + STATE(2602), 1, sym_on_error_phrase, - STATE(2755), 1, - sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3137), 1, + STATE(2914), 1, + sym_on_quit_phrase, + STATE(3130), 1, sym_on_stop_phrase, - STATE(3138), 1, + STATE(3131), 1, aux_sym_for_statement_repeat1, - STATE(1752), 2, + STATE(1766), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89180] = 19, + [89794] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2411), 1, + ACTIONS(2409), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1801), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2098), 1, + STATE(2054), 1, aux_sym_for_phrase_repeat2, - STATE(2658), 1, + STATE(2567), 1, sym_on_error_phrase, - STATE(2698), 1, + STATE(2805), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3442), 1, + STATE(3224), 1, aux_sym_for_statement_repeat1, - STATE(3444), 1, + STATE(3225), 1, sym_on_stop_phrase, - STATE(1753), 2, + STATE(1767), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89243] = 19, + [89857] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(1745), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2097), 1, + STATE(2043), 1, aux_sym_for_phrase_repeat2, - STATE(2582), 1, + STATE(2583), 1, sym_on_error_phrase, - STATE(2789), 1, + STATE(2857), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3289), 1, + STATE(3128), 1, sym_on_stop_phrase, - STATE(3291), 1, + STATE(3129), 1, aux_sym_for_statement_repeat1, - STATE(1754), 2, + STATE(1768), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89306] = 19, + [89920] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2590), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2081), 1, + STATE(2048), 1, aux_sym_for_phrase_repeat2, - STATE(2688), 1, + STATE(2600), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2813), 1, + STATE(2849), 1, sym_on_quit_phrase, - STATE(3102), 1, - sym_on_stop_phrase, - STATE(3103), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3331), 1, aux_sym_for_statement_repeat1, - STATE(1755), 2, + STATE(3332), 1, + sym_on_stop_phrase, + STATE(1769), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89369] = 19, + [89983] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1773), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2017), 1, + STATE(2024), 1, aux_sym_for_phrase_repeat2, - STATE(2617), 1, + STATE(2673), 1, sym_on_error_phrase, - STATE(2728), 1, + STATE(2788), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3407), 1, - sym_on_stop_phrase, - STATE(3408), 1, + STATE(3471), 1, aux_sym_for_statement_repeat1, - STATE(1756), 2, + STATE(3472), 1, + sym_on_stop_phrase, + STATE(1770), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89432] = 19, + [90046] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2453), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2097), 1, + STATE(2108), 1, aux_sym_for_phrase_repeat2, - STATE(2582), 1, + STATE(2692), 1, sym_on_error_phrase, - STATE(2789), 1, + STATE(2753), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3289), 1, + STATE(3278), 1, sym_on_stop_phrase, - STATE(3291), 1, + STATE(3279), 1, aux_sym_for_statement_repeat1, - STATE(1757), 2, + STATE(1771), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89495] = 19, + [90109] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2552), 1, + ACTIONS(2455), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1746), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2023), 1, + STATE(2098), 1, aux_sym_for_phrase_repeat2, - STATE(2613), 1, + STATE(2678), 1, sym_on_error_phrase, - STATE(2730), 1, + STATE(2721), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3395), 1, - aux_sym_for_statement_repeat1, - STATE(3396), 1, + STATE(3428), 1, sym_on_stop_phrase, - STATE(1758), 2, + STATE(3434), 1, + aux_sym_for_statement_repeat1, + STATE(1772), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89558] = 16, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1350), 1, - aux_sym_variable_definition_token3, - ACTIONS(1352), 1, - aux_sym_variable_definition_token4, - ACTIONS(1354), 1, - aux_sym_buffer_definition_token1, - ACTIONS(1356), 1, - aux_sym_buffer_definition_token3, - ACTIONS(1358), 1, - aux_sym_query_definition_token1, - STATE(1854), 1, - aux_sym_variable_definition_repeat1, - STATE(1981), 1, - sym_serialization_tuning, - STATE(2006), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1759), 2, - sym_comment, - sym_include, - STATE(1901), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [89615] = 19, + [90172] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2377), 1, + ACTIONS(2455), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2116), 1, + STATE(2098), 1, aux_sym_for_phrase_repeat2, - STATE(2546), 1, + STATE(2678), 1, sym_on_error_phrase, - STATE(2778), 1, + STATE(2721), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3315), 1, - aux_sym_for_statement_repeat1, - STATE(3319), 1, + STATE(3428), 1, sym_on_stop_phrase, - STATE(1760), 2, + STATE(3434), 1, + aux_sym_for_statement_repeat1, + STATE(1773), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89678] = 19, + [90235] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2377), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(1757), 1, + STATE(1782), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2116), 1, + STATE(2043), 1, aux_sym_for_phrase_repeat2, - STATE(2546), 1, + STATE(2583), 1, sym_on_error_phrase, - STATE(2778), 1, + STATE(2857), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3315), 1, - aux_sym_for_statement_repeat1, - STATE(3319), 1, + STATE(3128), 1, sym_on_stop_phrase, - STATE(1761), 2, + STATE(3129), 1, + aux_sym_for_statement_repeat1, + STATE(1774), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89741] = 19, + [90298] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2417), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2048), 1, + STATE(2051), 1, aux_sym_for_phrase_repeat2, - STATE(2637), 1, + STATE(2619), 1, sym_on_error_phrase, - STATE(2716), 1, - sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3421), 1, + STATE(2892), 1, + sym_on_quit_phrase, + STATE(3163), 1, sym_on_stop_phrase, - STATE(3422), 1, + STATE(3164), 1, aux_sym_for_statement_repeat1, - STATE(1762), 2, + STATE(1775), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89804] = 19, + [90361] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2421), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1785), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2032), 1, + STATE(2051), 1, aux_sym_for_phrase_repeat2, - STATE(2672), 1, + STATE(2619), 1, sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2883), 1, + STATE(2892), 1, sym_on_quit_phrase, - STATE(3087), 1, + STATE(3163), 1, sym_on_stop_phrase, - STATE(3088), 1, + STATE(3164), 1, aux_sym_for_statement_repeat1, - STATE(1763), 2, + STATE(1776), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89867] = 19, + [90424] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2554), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1739), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2039), 1, + STATE(2117), 1, aux_sym_for_phrase_repeat2, - STATE(2594), 1, + STATE(2704), 1, sym_on_error_phrase, - STATE(2743), 1, + STATE(2728), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3174), 1, - aux_sym_for_statement_repeat1, - STATE(3175), 1, + STATE(3289), 1, sym_on_stop_phrase, - STATE(1764), 2, + STATE(3290), 1, + aux_sym_for_statement_repeat1, + STATE(1777), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89930] = 19, + [90487] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2554), 1, + ACTIONS(2395), 1, anon_sym_COLON, - STATE(1775), 1, + STATE(1751), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2039), 1, + STATE(2101), 1, aux_sym_for_phrase_repeat2, - STATE(2594), 1, + STATE(2713), 1, sym_on_error_phrase, - STATE(2743), 1, + STATE(2724), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3174), 1, + STATE(3146), 1, aux_sym_for_statement_repeat1, - STATE(3175), 1, + STATE(3148), 1, sym_on_stop_phrase, - STATE(1765), 2, + STATE(1778), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [89993] = 19, + [90550] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2556), 1, + ACTIONS(2592), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, STATE(2038), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2572), 1, sym_on_error_phrase, - STATE(2723), 1, + STATE(2822), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3416), 1, - aux_sym_for_statement_repeat1, - STATE(3418), 1, + STATE(3125), 1, sym_on_stop_phrase, - STATE(1766), 2, + STATE(3126), 1, + aux_sym_for_statement_repeat1, + STATE(1779), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90056] = 19, + [90613] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2556), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(1787), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2038), 1, + STATE(2117), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2704), 1, sym_on_error_phrase, - STATE(2723), 1, + STATE(2728), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3416), 1, - aux_sym_for_statement_repeat1, - STATE(3418), 1, + STATE(3289), 1, sym_on_stop_phrase, - STATE(1767), 2, + STATE(3290), 1, + aux_sym_for_statement_repeat1, + STATE(1780), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90119] = 19, + [90676] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2417), 1, + ACTIONS(2451), 1, anon_sym_COLON, - STATE(1788), 1, + STATE(1740), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2048), 1, + STATE(2092), 1, aux_sym_for_phrase_repeat2, - STATE(2637), 1, + STATE(2593), 1, sym_on_error_phrase, - STATE(2716), 1, + STATE(2732), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3421), 1, - sym_on_stop_phrase, - STATE(3422), 1, + STATE(3215), 1, aux_sym_for_statement_repeat1, - STATE(1768), 2, + STATE(3216), 1, + sym_on_stop_phrase, + STATE(1781), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90182] = 19, + [90739] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2558), 1, + ACTIONS(2594), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2087), 1, + STATE(2025), 1, aux_sym_for_phrase_repeat2, - STATE(2655), 1, + STATE(2552), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2866), 1, + STATE(2773), 1, sym_on_quit_phrase, - STATE(3079), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3122), 1, sym_on_stop_phrase, - STATE(3080), 1, + STATE(3123), 1, aux_sym_for_statement_repeat1, - STATE(1769), 2, + STATE(1782), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90245] = 19, + [90802] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2558), 1, + ACTIONS(2594), 1, anon_sym_COLON, - STATE(1789), 1, + STATE(1792), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2087), 1, + STATE(2025), 1, aux_sym_for_phrase_repeat2, - STATE(2655), 1, + STATE(2552), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2866), 1, + STATE(2773), 1, sym_on_quit_phrase, - STATE(3079), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3122), 1, sym_on_stop_phrase, - STATE(3080), 1, + STATE(3123), 1, aux_sym_for_statement_repeat1, - STATE(1770), 2, + STATE(1783), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, + [90865] = 19, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - [90308] = 19, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2596), 1, + anon_sym_COLON, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2074), 1, + aux_sym_for_phrase_repeat2, + STATE(2614), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2900), 1, + sym_on_quit_phrase, + STATE(3349), 1, + sym_on_stop_phrase, + STATE(3350), 1, + aux_sym_for_statement_repeat1, + STATE(1784), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [90928] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2560), 1, + ACTIONS(2451), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2091), 1, + STATE(2092), 1, aux_sym_for_phrase_repeat2, - STATE(2650), 1, + STATE(2593), 1, sym_on_error_phrase, - STATE(2718), 1, + STATE(2732), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3317), 1, + STATE(3215), 1, aux_sym_for_statement_repeat1, - STATE(3318), 1, + STATE(3216), 1, sym_on_stop_phrase, - STATE(1771), 2, + STATE(1785), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90371] = 19, + [90991] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2429), 1, + ACTIONS(2411), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2013), 1, + STATE(2100), 1, aux_sym_for_phrase_repeat2, STATE(2601), 1, sym_on_error_phrase, - STATE(2735), 1, + STATE(2852), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3178), 1, - aux_sym_for_statement_repeat1, - STATE(3184), 1, + STATE(3233), 1, sym_on_stop_phrase, - STATE(1772), 2, + STATE(3236), 1, + aux_sym_for_statement_repeat1, + STATE(1786), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90434] = 19, + [91054] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2379), 1, + ACTIONS(2409), 1, anon_sym_COLON, - STATE(1756), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2031), 1, + STATE(2054), 1, aux_sym_for_phrase_repeat2, - STATE(2629), 1, + STATE(2567), 1, sym_on_error_phrase, - STATE(2715), 1, + STATE(2805), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3415), 1, + STATE(3224), 1, aux_sym_for_statement_repeat1, - STATE(3417), 1, + STATE(3225), 1, sym_on_stop_phrase, - STATE(1773), 2, + STATE(1787), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90497] = 19, + [91117] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2373), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(1737), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2073), 1, + STATE(2024), 1, aux_sym_for_phrase_repeat2, - STATE(2552), 1, + STATE(2673), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2806), 1, + STATE(2788), 1, sym_on_quit_phrase, - STATE(3265), 1, - sym_on_stop_phrase, - STATE(3268), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3471), 1, aux_sym_for_statement_repeat1, - STATE(1774), 2, + STATE(3472), 1, + sym_on_stop_phrase, + STATE(1788), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90560] = 19, + [91180] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2562), 1, + ACTIONS(2598), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1761), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2052), 1, + STATE(2135), 1, aux_sym_for_phrase_repeat2, - STATE(2636), 1, + STATE(2590), 1, sym_on_error_phrase, - STATE(2722), 1, + STATE(2840), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3152), 1, - aux_sym_for_statement_repeat1, - STATE(3292), 1, + STATE(3196), 1, sym_on_stop_phrase, - STATE(1775), 2, + STATE(3197), 1, + aux_sym_for_statement_repeat1, + STATE(1789), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90623] = 19, + [91243] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2564), 1, + ACTIONS(2598), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2044), 1, + STATE(2135), 1, aux_sym_for_phrase_repeat2, - STATE(2596), 1, + STATE(2590), 1, sym_on_error_phrase, - STATE(2734), 1, + STATE(2840), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3389), 1, + STATE(3196), 1, sym_on_stop_phrase, - STATE(3390), 1, + STATE(3197), 1, aux_sym_for_statement_repeat1, - STATE(1776), 2, + STATE(1790), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90686] = 19, + [91306] = 16, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1362), 1, + aux_sym_variable_definition_token3, + ACTIONS(1364), 1, + aux_sym_variable_definition_token4, + ACTIONS(1366), 1, + aux_sym_buffer_definition_token1, + ACTIONS(1368), 1, + aux_sym_buffer_definition_token3, + ACTIONS(1370), 1, + aux_sym_query_definition_token1, + STATE(1849), 1, + aux_sym_variable_definition_repeat1, + STATE(1973), 1, + sym_serialization_tuning, + STATE(2014), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1791), 2, + sym_comment, + sym_include, + STATE(1932), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [91363] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2373), 1, + ACTIONS(2600), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2073), 1, + STATE(2036), 1, aux_sym_for_phrase_repeat2, - STATE(2552), 1, + STATE(2559), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2806), 1, + STATE(2756), 1, sym_on_quit_phrase, - STATE(3265), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3118), 1, sym_on_stop_phrase, - STATE(3268), 1, + STATE(3119), 1, aux_sym_for_statement_repeat1, - STATE(1777), 2, + STATE(1792), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90749] = 19, + [91426] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2379), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1755), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2031), 1, + STATE(2047), 1, aux_sym_for_phrase_repeat2, - STATE(2629), 1, + STATE(2641), 1, sym_on_error_phrase, - STATE(2715), 1, + STATE(2824), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3415), 1, - aux_sym_for_statement_repeat1, - STATE(3417), 1, + STATE(3384), 1, sym_on_stop_phrase, - STATE(1778), 2, + STATE(3385), 1, + aux_sym_for_statement_repeat1, + STATE(1793), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90812] = 19, + [91489] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2385), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(1755), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2025), 1, + STATE(2023), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2576), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2869), 1, + STATE(2820), 1, sym_on_quit_phrase, - STATE(3115), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3205), 1, aux_sym_for_statement_repeat1, - STATE(3117), 1, + STATE(3207), 1, sym_on_stop_phrase, - STATE(1779), 2, + STATE(1794), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90875] = 19, + [91552] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2566), 1, + ACTIONS(2602), 1, anon_sym_COLON, - STATE(1776), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2026), 1, + STATE(2125), 1, aux_sym_for_phrase_repeat2, - STATE(2526), 1, + STATE(2585), 1, sym_on_error_phrase, - STATE(2731), 1, + STATE(2832), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3399), 1, + STATE(3198), 1, sym_on_stop_phrase, - STATE(3401), 1, + STATE(3199), 1, aux_sym_for_statement_repeat1, - STATE(1780), 2, + STATE(1795), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [90938] = 19, + [91615] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2566), 1, + ACTIONS(2445), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1802), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2026), 1, + STATE(2064), 1, aux_sym_for_phrase_repeat2, - STATE(2526), 1, + STATE(2571), 1, sym_on_error_phrase, - STATE(2731), 1, + STATE(2783), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3399), 1, + STATE(3210), 1, sym_on_stop_phrase, - STATE(3401), 1, + STATE(3211), 1, aux_sym_for_statement_repeat1, - STATE(1781), 2, + STATE(1796), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91001] = 19, + [91678] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2568), 1, + ACTIONS(2447), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1790), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2022), 1, + STATE(2111), 1, aux_sym_for_phrase_repeat2, - STATE(2614), 1, + STATE(2584), 1, sym_on_error_phrase, - STATE(2729), 1, + STATE(2830), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3403), 1, + STATE(3200), 1, sym_on_stop_phrase, - STATE(3404), 1, + STATE(3201), 1, aux_sym_for_statement_repeat1, - STATE(1782), 2, + STATE(1797), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91064] = 19, + [91741] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2536), 1, + ACTIONS(2604), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2083), 1, + STATE(2068), 1, aux_sym_for_phrase_repeat2, - STATE(2538), 1, + STATE(2645), 1, sym_on_error_phrase, - STATE(2720), 1, + STATE(2816), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3302), 1, + STATE(3295), 1, aux_sym_for_statement_repeat1, - STATE(3303), 1, + STATE(3317), 1, sym_on_stop_phrase, - STATE(1783), 2, + STATE(1798), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91127] = 19, + [91804] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2385), 1, + ACTIONS(2447), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2025), 1, + STATE(2111), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2584), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2869), 1, + STATE(2830), 1, sym_on_quit_phrase, - STATE(3115), 1, - aux_sym_for_statement_repeat1, - STATE(3117), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3200), 1, sym_on_stop_phrase, - STATE(1784), 2, + STATE(3201), 1, + aux_sym_for_statement_repeat1, + STATE(1799), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91190] = 19, + [91867] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2606), 1, anon_sym_COLON, - STATE(1781), 1, + STATE(1795), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2017), 1, + STATE(2104), 1, aux_sym_for_phrase_repeat2, - STATE(2617), 1, + STATE(2578), 1, sym_on_error_phrase, - STATE(2728), 1, + STATE(2829), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3407), 1, + STATE(3202), 1, sym_on_stop_phrase, - STATE(3408), 1, + STATE(3203), 1, aux_sym_for_statement_repeat1, - STATE(1785), 2, + STATE(1800), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91253] = 19, + [91930] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2570), 1, + ACTIONS(2445), 1, anon_sym_COLON, - STATE(1782), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2015), 1, + STATE(2064), 1, aux_sym_for_phrase_repeat2, - STATE(2619), 1, + STATE(2571), 1, sym_on_error_phrase, - STATE(2727), 1, + STATE(2783), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3412), 1, + STATE(3210), 1, sym_on_stop_phrase, - STATE(3413), 1, + STATE(3211), 1, aux_sym_for_statement_repeat1, - STATE(1786), 2, + STATE(1801), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91316] = 19, + [91993] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2572), 1, + ACTIONS(2606), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2089), 1, + STATE(2104), 1, aux_sym_for_phrase_repeat2, - STATE(2635), 1, + STATE(2578), 1, sym_on_error_phrase, - STATE(2717), 1, + STATE(2829), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3461), 1, - aux_sym_for_statement_repeat1, - STATE(3464), 1, + STATE(3202), 1, sym_on_stop_phrase, - STATE(1787), 2, + STATE(3203), 1, + aux_sym_for_statement_repeat1, + STATE(1802), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91379] = 19, + [92056] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2570), 1, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1780), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2015), 1, + STATE(2046), 1, aux_sym_for_phrase_repeat2, - STATE(2619), 1, + STATE(2577), 1, sym_on_error_phrase, - STATE(2727), 1, + STATE(2759), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3412), 1, - sym_on_stop_phrase, - STATE(3413), 1, + STATE(3301), 1, aux_sym_for_statement_repeat1, - STATE(1788), 2, + STATE(3303), 1, + sym_on_stop_phrase, + STATE(1803), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91442] = 19, + [92119] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2574), 1, - anon_sym_COLON, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2115), 1, + STATE(2174), 1, aux_sym_for_phrase_repeat2, - STATE(2639), 1, + STATE(2818), 1, sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2863), 1, + STATE(2994), 1, sym_on_quit_phrase, - STATE(3070), 1, + STATE(3801), 1, sym_on_stop_phrase, - STATE(3071), 1, - aux_sym_for_statement_repeat1, - STATE(1789), 2, + ACTIONS(2608), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1804), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91505] = 5, + [92177] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1790), 2, + STATE(1805), 2, sym_comment, sym_include, - ACTIONS(177), 18, + ACTIONS(125), 18, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, @@ -122152,17 +123195,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_on_error_phrase_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [91539] = 5, + [92211] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1791), 2, + STATE(1806), 2, + sym_comment, + sym_include, + ACTIONS(143), 18, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_serialization_tuning_token1, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_property_tuning_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_on_error_phrase_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [92245] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1807), 2, sym_comment, sym_include, - ACTIONS(173), 18, + ACTIONS(147), 18, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, @@ -122181,58 +123253,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_on_error_phrase_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [91573] = 17, + [92279] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(1903), 1, + STATE(1816), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2201), 1, + STATE(2181), 1, aux_sym_for_phrase_repeat2, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2808), 1, + STATE(2901), 1, sym_on_error_phrase, - STATE(2994), 1, + STATE(3053), 1, sym_on_quit_phrase, - STATE(3536), 1, + STATE(3972), 1, sym_on_stop_phrase, - ACTIONS(2576), 2, + ACTIONS(2449), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1792), 2, + STATE(1808), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91631] = 5, + [92337] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1793), 2, + STATE(1809), 2, sym_comment, sym_include, - ACTIONS(2528), 18, + ACTIONS(2554), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -122251,24 +123323,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_output_stream_tuning_token6, aux_sym_output_stream_tuning_token7, aux_sym_output_stream_tuning_token8, - [91665] = 7, + [92371] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + STATE(1817), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2174), 1, + aux_sym_for_phrase_repeat2, + STATE(2818), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2994), 1, + sym_on_quit_phrase, + STATE(3801), 1, + sym_on_stop_phrase, + ACTIONS(2608), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1810), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [92429] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, sym__namedot, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1794), 2, + STATE(1811), 2, sym_comment, sym_include, - ACTIONS(2578), 16, + ACTIONS(2610), 16, sym__terminator, anon_sym_RPAREN, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, @@ -122278,79 +123392,90 @@ static const uint16_t ts_small_parse_table[] = { 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, - [91703] = 5, + [92467] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1795), 2, + STATE(1812), 2, sym_comment, sym_include, - ACTIONS(157), 18, + ACTIONS(2612), 18, sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_serialization_tuning_token1, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_property_tuning_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_on_error_phrase_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [91737] = 5, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + aux_sym_output_stream_tuning_token1, + aux_sym_output_stream_tuning_token2, + aux_sym_output_stream_tuning_token3, + aux_sym_output_stream_tuning_token4, + aux_sym_output_stream_tuning_token5, + aux_sym_output_stream_tuning_token6, + aux_sym_output_stream_tuning_token7, + aux_sym_output_stream_tuning_token8, + [92501] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1796), 2, - sym_comment, - sym_include, - ACTIONS(149), 18, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_serialization_tuning_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2181), 1, + aux_sym_for_phrase_repeat2, + STATE(2879), 1, + sym_sort_clause, + STATE(2901), 1, + sym_on_error_phrase, + STATE(3053), 1, + sym_on_quit_phrase, + STATE(3972), 1, + sym_on_stop_phrase, + ACTIONS(2449), 2, anon_sym_COMMA, anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_property_tuning_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - aux_sym_on_error_phrase_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [91771] = 5, + STATE(1813), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [92559] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1797), 2, + STATE(1814), 2, sym_comment, sym_include, - ACTIONS(129), 18, + ACTIONS(225), 18, sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, @@ -122369,306 +123494,288 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_on_error_phrase_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [91805] = 17, + [92593] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(1801), 1, + STATE(1804), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2166), 1, + STATE(2156), 1, aux_sym_for_phrase_repeat2, - STATE(2705), 1, + STATE(2862), 1, sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2926), 1, + STATE(2975), 1, sym_on_quit_phrase, - STATE(3699), 1, + STATE(3875), 1, sym_on_stop_phrase, - ACTIONS(2518), 2, + ACTIONS(2560), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1798), 2, + STATE(1815), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91863] = 17, + [92651] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2193), 1, + STATE(2156), 1, aux_sym_for_phrase_repeat2, - STATE(2732), 1, + STATE(2862), 1, sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2960), 1, + STATE(2975), 1, sym_on_quit_phrase, - STATE(3812), 1, + STATE(3875), 1, sym_on_stop_phrase, - ACTIONS(2431), 2, + ACTIONS(2560), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1799), 2, + STATE(1816), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91921] = 17, + [92709] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(1804), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2193), 1, + STATE(2185), 1, aux_sym_for_phrase_repeat2, - STATE(2732), 1, + STATE(2791), 1, sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2960), 1, + STATE(2955), 1, sym_on_quit_phrase, - STATE(3812), 1, + STATE(3742), 1, sym_on_stop_phrase, - ACTIONS(2431), 2, + ACTIONS(2614), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1800), 2, + STATE(1817), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [91979] = 17, + [92767] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2126), 1, - aux_sym_for_phrase_repeat2, - STATE(2777), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2928), 1, - sym_on_quit_phrase, - STATE(3610), 1, - sym_on_stop_phrase, - ACTIONS(2580), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1801), 2, + STATE(1818), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [92037] = 17, + ACTIONS(151), 18, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_serialization_tuning_token1, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_property_tuning_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + aux_sym_on_error_phrase_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [92801] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - STATE(1792), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2126), 1, - aux_sym_for_phrase_repeat2, - STATE(2777), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2928), 1, - sym_on_quit_phrase, - STATE(3610), 1, - sym_on_stop_phrase, - ACTIONS(2580), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1802), 2, + ACTIONS(2616), 1, + aux_sym__block_terminator_token1, + ACTIONS(2618), 1, + aux_sym_variable_definition_token1, + ACTIONS(2620), 1, + aux_sym_variable_definition_token2, + ACTIONS(2622), 1, + aux_sym_method_definition_token1, + ACTIONS(2624), 1, + aux_sym_constructor_definition_token1, + STATE(1840), 1, + aux_sym_class_body_repeat1, + STATE(4465), 1, + sym_class_body, + STATE(1819), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [92095] = 5, + STATE(2723), 10, + sym_variable_definition, + sym_buffer_definition, + sym_query_definition, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_constructor_definition, + sym_temp_table_definition, + sym_data_source_definition, + [92848] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1803), 2, + ACTIONS(2618), 1, + aux_sym_variable_definition_token1, + ACTIONS(2620), 1, + aux_sym_variable_definition_token2, + ACTIONS(2622), 1, + aux_sym_method_definition_token1, + ACTIONS(2624), 1, + aux_sym_constructor_definition_token1, + ACTIONS(2626), 1, + aux_sym__block_terminator_token1, + STATE(1840), 1, + aux_sym_class_body_repeat1, + STATE(4148), 1, + sym_class_body, + STATE(1820), 2, sym_comment, sym_include, - ACTIONS(2582), 18, - sym__terminator, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - aux_sym_output_stream_tuning_token1, - aux_sym_output_stream_tuning_token2, - aux_sym_output_stream_tuning_token3, - aux_sym_output_stream_tuning_token4, - aux_sym_output_stream_tuning_token5, - aux_sym_output_stream_tuning_token6, - aux_sym_output_stream_tuning_token7, - aux_sym_output_stream_tuning_token8, - [92129] = 17, + STATE(2723), 10, + sym_variable_definition, + sym_buffer_definition, + sym_query_definition, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_constructor_definition, + sym_temp_table_definition, + sym_data_source_definition, + [92895] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2166), 1, - aux_sym_for_phrase_repeat2, - STATE(2705), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2926), 1, - sym_on_quit_phrase, - STATE(3699), 1, - sym_on_stop_phrase, - ACTIONS(2518), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1804), 2, + ACTIONS(2618), 1, + aux_sym_variable_definition_token1, + ACTIONS(2620), 1, + aux_sym_variable_definition_token2, + ACTIONS(2622), 1, + aux_sym_method_definition_token1, + ACTIONS(2624), 1, + aux_sym_constructor_definition_token1, + ACTIONS(2628), 1, + aux_sym__block_terminator_token1, + STATE(1840), 1, + aux_sym_class_body_repeat1, + STATE(4190), 1, + sym_class_body, + STATE(1821), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [92187] = 12, + STATE(2723), 10, + sym_variable_definition, + sym_buffer_definition, + sym_query_definition, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_constructor_definition, + sym_temp_table_definition, + sym_data_source_definition, + [92942] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2584), 1, - aux_sym__block_terminator_token1, - ACTIONS(2586), 1, + ACTIONS(2618), 1, aux_sym_variable_definition_token1, - ACTIONS(2588), 1, + ACTIONS(2620), 1, aux_sym_variable_definition_token2, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(2592), 1, + ACTIONS(2624), 1, aux_sym_constructor_definition_token1, - STATE(1837), 1, + ACTIONS(2630), 1, + aux_sym__block_terminator_token1, + STATE(1840), 1, aux_sym_class_body_repeat1, - STATE(4371), 1, + STATE(4228), 1, sym_class_body, - STATE(1805), 2, + STATE(1822), 2, sym_comment, sym_include, - STATE(2775), 10, + STATE(2723), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -122679,113 +123786,154 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [92234] = 18, + [92989] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2596), 1, + ACTIONS(2634), 1, anon_sym_COLON, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2600), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - STATE(1961), 1, + STATE(1985), 1, sym_to_phrase, - STATE(2157), 1, - aux_sym_do_block_repeat1, - STATE(2180), 1, + STATE(2177), 1, sym_while_phrase, - STATE(2828), 1, + STATE(2178), 1, + aux_sym_do_block_repeat1, + STATE(2885), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1806), 2, + STATE(1823), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - STATE(4626), 3, + STATE(4106), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [92293] = 18, + [93048] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2600), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2606), 1, + ACTIONS(2644), 1, anon_sym_COLON, - STATE(2001), 1, + STATE(1995), 1, sym_to_phrase, - STATE(2194), 1, + STATE(2192), 1, + aux_sym_do_block_repeat1, + STATE(2193), 1, sym_while_phrase, + STATE(2908), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(4670), 1, + sym_assignment, + STATE(1824), 2, + sym_comment, + sym_include, + STATE(4721), 2, + sym_qualified_name, + sym_object_access, + STATE(4498), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [93107] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2632), 1, + sym_identifier, + ACTIONS(2636), 1, + aux_sym_while_phrase_token1, + ACTIONS(2638), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2640), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2642), 1, + aux_sym_do_tuning_token1, + ACTIONS(2646), 1, + anon_sym_COLON, + STATE(1987), 1, + sym_to_phrase, STATE(2196), 1, aux_sym_do_block_repeat1, - STATE(2823), 1, + STATE(2216), 1, + sym_while_phrase, + STATE(2878), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1807), 2, + STATE(1825), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - STATE(4289), 3, + STATE(4662), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [92352] = 12, + [93166] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2618), 1, aux_sym_variable_definition_token1, - ACTIONS(2588), 1, + ACTIONS(2620), 1, aux_sym_variable_definition_token2, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(2592), 1, + ACTIONS(2624), 1, aux_sym_constructor_definition_token1, - ACTIONS(2608), 1, + ACTIONS(2648), 1, aux_sym__block_terminator_token1, - STATE(1837), 1, + STATE(1840), 1, aux_sym_class_body_repeat1, - STATE(4221), 1, + STATE(4115), 1, sym_class_body, - STATE(1808), 2, + STATE(1826), 2, sym_comment, sym_include, - STATE(2775), 10, + STATE(2723), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -122796,31 +123944,31 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [92399] = 12, + [93213] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2618), 1, aux_sym_variable_definition_token1, - ACTIONS(2588), 1, + ACTIONS(2620), 1, aux_sym_variable_definition_token2, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(2592), 1, + ACTIONS(2624), 1, aux_sym_constructor_definition_token1, - ACTIONS(2610), 1, + ACTIONS(2650), 1, aux_sym__block_terminator_token1, - STATE(1837), 1, + STATE(1840), 1, aux_sym_class_body_repeat1, - STATE(4438), 1, + STATE(4435), 1, sym_class_body, - STATE(1809), 2, + STATE(1827), 2, sym_comment, sym_include, - STATE(2775), 10, + STATE(2723), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -122831,183 +123979,236 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [92446] = 18, + [93260] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2600), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2612), 1, + ACTIONS(2652), 1, anon_sym_COLON, - STATE(1978), 1, + STATE(1996), 1, sym_to_phrase, - STATE(2173), 1, + STATE(2137), 1, aux_sym_do_block_repeat1, - STATE(2175), 1, + STATE(2157), 1, sym_while_phrase, - STATE(2751), 1, + STATE(2838), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1810), 2, + STATE(1828), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - STATE(4283), 3, + STATE(4260), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [92505] = 12, - ACTIONS(59), 1, + [93319] = 18, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, - aux_sym_variable_definition_token1, - ACTIONS(2588), 1, - aux_sym_variable_definition_token2, - ACTIONS(2590), 1, - aux_sym_method_definition_token1, - ACTIONS(2592), 1, - aux_sym_constructor_definition_token1, - ACTIONS(2614), 1, - aux_sym__block_terminator_token1, - STATE(1837), 1, - aux_sym_class_body_repeat1, - STATE(4484), 1, - sym_class_body, - STATE(1811), 2, + ACTIONS(2632), 1, + sym_identifier, + ACTIONS(2636), 1, + aux_sym_while_phrase_token1, + ACTIONS(2638), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2640), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2642), 1, + aux_sym_do_tuning_token1, + ACTIONS(2654), 1, + anon_sym_COLON, + STATE(1989), 1, + sym_to_phrase, + STATE(2202), 1, + aux_sym_do_block_repeat1, + STATE(2214), 1, + sym_while_phrase, + STATE(2903), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(4670), 1, + sym_assignment, + STATE(1829), 2, sym_comment, sym_include, - STATE(2775), 10, - sym_variable_definition, - sym_buffer_definition, - sym_query_definition, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_constructor_definition, - sym_temp_table_definition, - sym_data_source_definition, - [92552] = 18, + STATE(4721), 2, + sym_qualified_name, + sym_object_access, + STATE(4086), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [93378] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2600), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2616), 1, + ACTIONS(2656), 1, anon_sym_COLON, - STATE(1963), 1, + STATE(1972), 1, sym_to_phrase, - STATE(2150), 1, - aux_sym_do_block_repeat1, - STATE(2156), 1, + STATE(2198), 1, sym_while_phrase, - STATE(2741), 1, + STATE(2200), 1, + aux_sym_do_block_repeat1, + STATE(2881), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1812), 2, + STATE(1830), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - STATE(4500), 3, + STATE(4482), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [92611] = 12, - ACTIONS(59), 1, + [93437] = 18, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, - aux_sym_variable_definition_token1, - ACTIONS(2588), 1, - aux_sym_variable_definition_token2, - ACTIONS(2590), 1, - aux_sym_method_definition_token1, - ACTIONS(2592), 1, - aux_sym_constructor_definition_token1, - ACTIONS(2618), 1, - aux_sym__block_terminator_token1, - STATE(1837), 1, - aux_sym_class_body_repeat1, - STATE(4223), 1, - sym_class_body, - STATE(1813), 2, - sym_comment, - sym_include, - STATE(2775), 10, - sym_variable_definition, - sym_buffer_definition, - sym_query_definition, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_constructor_definition, - sym_temp_table_definition, - sym_data_source_definition, - [92658] = 12, + ACTIONS(2632), 1, + sym_identifier, + ACTIONS(2636), 1, + aux_sym_while_phrase_token1, + ACTIONS(2638), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2640), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2642), 1, + aux_sym_do_tuning_token1, + ACTIONS(2658), 1, + anon_sym_COLON, + STATE(2019), 1, + sym_to_phrase, + STATE(2203), 1, + aux_sym_do_block_repeat1, + STATE(2212), 1, + sym_while_phrase, + STATE(2771), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(4670), 1, + sym_assignment, + STATE(1831), 2, + sym_comment, + sym_include, + STATE(4721), 2, + sym_qualified_name, + sym_object_access, + STATE(4235), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [93496] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2632), 1, + sym_identifier, + ACTIONS(2636), 1, + aux_sym_while_phrase_token1, + ACTIONS(2638), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2640), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(2642), 1, + aux_sym_do_tuning_token1, + ACTIONS(2660), 1, + anon_sym_COLON, + STATE(2002), 1, + sym_to_phrase, + STATE(2195), 1, + sym_while_phrase, + STATE(2206), 1, + aux_sym_do_block_repeat1, + STATE(2899), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(4670), 1, + sym_assignment, + STATE(1832), 2, + sym_comment, + sym_include, + STATE(4721), 2, + sym_qualified_name, + sym_object_access, + STATE(4279), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [93555] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2618), 1, aux_sym_variable_definition_token1, - ACTIONS(2588), 1, + ACTIONS(2620), 1, aux_sym_variable_definition_token2, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(2592), 1, + ACTIONS(2624), 1, aux_sym_constructor_definition_token1, - ACTIONS(2620), 1, + ACTIONS(2662), 1, aux_sym__block_terminator_token1, - STATE(1837), 1, + STATE(1840), 1, aux_sym_class_body_repeat1, - STATE(4252), 1, + STATE(4504), 1, sym_class_body, - STATE(1814), 2, + STATE(1833), 2, sym_comment, sym_include, - STATE(2775), 10, + STATE(2723), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -123018,31 +124219,31 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [92705] = 12, + [93602] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2618), 1, aux_sym_variable_definition_token1, - ACTIONS(2588), 1, + ACTIONS(2620), 1, aux_sym_variable_definition_token2, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(2592), 1, + ACTIONS(2624), 1, aux_sym_constructor_definition_token1, - ACTIONS(2622), 1, + ACTIONS(2664), 1, aux_sym__block_terminator_token1, - STATE(1837), 1, + STATE(1840), 1, aux_sym_class_body_repeat1, - STATE(4331), 1, + STATE(4315), 1, sym_class_body, - STATE(1815), 2, + STATE(1834), 2, sym_comment, sym_include, - STATE(2775), 10, + STATE(2723), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -123053,31 +124254,66 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [92752] = 12, + [93649] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(1449), 1, + aux_sym_variable_definition_token4, + ACTIONS(1453), 1, + aux_sym_function_parameter_token1, + ACTIONS(1459), 1, + aux_sym_data_source_definition_token1, + STATE(4212), 1, + sym_access_tuning, + ACTIONS(1451), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(1835), 2, + sym_comment, + sym_include, + ACTIONS(2666), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1441), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(1447), 4, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + [93696] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2618), 1, aux_sym_variable_definition_token1, - ACTIONS(2588), 1, + ACTIONS(2620), 1, aux_sym_variable_definition_token2, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(2592), 1, - aux_sym_constructor_definition_token1, ACTIONS(2624), 1, + aux_sym_constructor_definition_token1, + ACTIONS(2670), 1, aux_sym__block_terminator_token1, - STATE(1837), 1, + STATE(1840), 1, aux_sym_class_body_repeat1, - STATE(4298), 1, + STATE(4351), 1, sym_class_body, - STATE(1816), 2, + STATE(1836), 2, sym_comment, sym_include, - STATE(2775), 10, + STATE(2723), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -123088,236 +124324,113 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [92799] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2598), 1, - aux_sym_while_phrase_token1, - ACTIONS(2600), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, - aux_sym_do_tuning_token1, - ACTIONS(2626), 1, - anon_sym_COLON, - STATE(1991), 1, - sym_to_phrase, - STATE(2133), 1, - sym_while_phrase, - STATE(2134), 1, - aux_sym_do_block_repeat1, - STATE(2783), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(4645), 1, - sym_assignment, - STATE(1817), 2, - sym_comment, - sym_include, - STATE(4699), 2, - sym_qualified_name, - sym_object_access, - STATE(4537), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [92858] = 18, + [93743] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2600), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2628), 1, + ACTIONS(2672), 1, anon_sym_COLON, - STATE(1989), 1, + STATE(2015), 1, sym_to_phrase, - STATE(2184), 1, + STATE(2167), 1, sym_while_phrase, - STATE(2187), 1, - aux_sym_do_block_repeat1, - STATE(2696), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(4645), 1, - sym_assignment, - STATE(1818), 2, - sym_comment, - sym_include, - STATE(4699), 2, - sym_qualified_name, - sym_object_access, - STATE(4408), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [92917] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2598), 1, - aux_sym_while_phrase_token1, - ACTIONS(2600), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, - aux_sym_do_tuning_token1, - ACTIONS(2630), 1, - anon_sym_COLON, - STATE(1990), 1, - sym_to_phrase, - STATE(2181), 1, + STATE(2168), 1, aux_sym_do_block_repeat1, - STATE(2188), 1, - sym_while_phrase, - STATE(2837), 1, + STATE(2817), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1819), 2, + STATE(1837), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - STATE(4061), 3, + STATE(4309), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [92976] = 18, + [93802] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2598), 1, - aux_sym_while_phrase_token1, - ACTIONS(2600), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, - aux_sym_do_tuning_token1, ACTIONS(2632), 1, - anon_sym_COLON, - STATE(1966), 1, - sym_to_phrase, - STATE(2159), 1, - sym_while_phrase, - STATE(2160), 1, - aux_sym_do_block_repeat1, - STATE(2761), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(4645), 1, - sym_assignment, - STATE(1820), 2, - sym_comment, - sym_include, - STATE(4699), 2, - sym_qualified_name, - sym_object_access, - STATE(4260), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [93035] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2594), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2600), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2634), 1, + ACTIONS(2674), 1, anon_sym_COLON, - STATE(1955), 1, + STATE(1998), 1, sym_to_phrase, - STATE(2178), 1, + STATE(2182), 1, sym_while_phrase, - STATE(2189), 1, + STATE(2208), 1, aux_sym_do_block_repeat1, - STATE(2847), 1, + STATE(2750), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1821), 2, + STATE(1838), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - STATE(4259), 3, + STATE(4567), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [93094] = 12, + [93861] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2618), 1, aux_sym_variable_definition_token1, - ACTIONS(2588), 1, + ACTIONS(2620), 1, aux_sym_variable_definition_token2, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(2592), 1, + ACTIONS(2624), 1, aux_sym_constructor_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2676), 1, aux_sym__block_terminator_token1, - STATE(1837), 1, + STATE(1840), 1, aux_sym_class_body_repeat1, - STATE(4389), 1, + STATE(4318), 1, sym_class_body, - STATE(1822), 2, + STATE(1839), 2, sym_comment, sym_include, - STATE(2775), 10, + STATE(2723), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -123328,107 +124441,29 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [93141] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1411), 1, - aux_sym_variable_definition_token4, - ACTIONS(1415), 1, - aux_sym_function_parameter_token1, - ACTIONS(1421), 1, - aux_sym_data_source_definition_token1, - STATE(4111), 1, - sym_access_tuning, - ACTIONS(1413), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(1823), 2, - sym_comment, - sym_include, - ACTIONS(2638), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1403), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(1409), 4, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - [93188] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2598), 1, - aux_sym_while_phrase_token1, - ACTIONS(2600), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2602), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2604), 1, - aux_sym_do_tuning_token1, - ACTIONS(2642), 1, - anon_sym_COLON, - STATE(1952), 1, - sym_to_phrase, - STATE(2120), 1, - aux_sym_do_block_repeat1, - STATE(2200), 1, - sym_while_phrase, - STATE(2846), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(4645), 1, - sym_assignment, - STATE(1824), 2, - sym_comment, - sym_include, - STATE(4699), 2, - sym_qualified_name, - sym_object_access, - STATE(4086), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [93247] = 12, + [93908] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, + ACTIONS(2618), 1, aux_sym_variable_definition_token1, - ACTIONS(2588), 1, + ACTIONS(2620), 1, aux_sym_variable_definition_token2, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(2592), 1, + ACTIONS(2624), 1, aux_sym_constructor_definition_token1, - ACTIONS(2644), 1, + ACTIONS(2678), 1, aux_sym__block_terminator_token1, - STATE(1837), 1, + STATE(1868), 1, aux_sym_class_body_repeat1, - STATE(4095), 1, - sym_class_body, - STATE(1825), 2, + STATE(1840), 2, sym_comment, sym_include, - STATE(2775), 10, + STATE(2723), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -123439,318 +124474,298 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [93294] = 12, + [93952] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2646), 1, - aux_sym_variable_definition_token3, - ACTIONS(2648), 1, - aux_sym_variable_definition_token4, - ACTIONS(2650), 1, - aux_sym_buffer_definition_token3, - STATE(1829), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1348), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2680), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(1953), 1, + sym_of, + STATE(2076), 1, + sym__pre_tuning, + STATE(2259), 1, + sym_where_clause, + STATE(2260), 1, + aux_sym_for_phrase_repeat1, + STATE(1841), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [94006] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1826), 2, + ACTIONS(2684), 1, + anon_sym_COLON, + ACTIONS(2686), 1, + aux_sym_property_type_token1, + ACTIONS(2688), 1, + aux_sym_method_tuning_token1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(2692), 1, + aux_sym_implements_token1, + ACTIONS(2694), 1, + aux_sym_use_widget_pool_token1, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1920), 1, + aux_sym_class_statement_repeat1, + STATE(1842), 2, sym_comment, sym_include, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1981), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [93340] = 16, + STATE(2414), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [94058] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2652), 1, + ACTIONS(2696), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1994), 1, + STATE(1984), 1, sym_of, - STATE(2036), 1, + STATE(2118), 1, sym__pre_tuning, - STATE(2209), 1, + STATE(2300), 1, sym_where_clause, - STATE(2211), 1, + STATE(2306), 1, aux_sym_for_phrase_repeat1, - STATE(1827), 2, + STATE(1843), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [93394] = 12, + [94112] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2654), 1, + ACTIONS(2698), 1, aux_sym_variable_definition_token3, - ACTIONS(2656), 1, + ACTIONS(2700), 1, aux_sym_variable_definition_token4, - ACTIONS(2658), 1, + ACTIONS(2702), 1, aux_sym_buffer_definition_token3, - STATE(1829), 1, + STATE(1859), 1, aux_sym_variable_definition_repeat1, - ACTIONS(1348), 2, + ACTIONS(1360), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1828), 2, + STATE(1844), 2, sym_comment, sym_include, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1981), 3, + STATE(1973), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(1344), 4, + ACTIONS(1356), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [93440] = 10, - ACTIONS(59), 1, + [94158] = 12, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2671), 1, - aux_sym_variable_definition_token4, - ACTIONS(2666), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(2669), 2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - ACTIONS(2663), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1829), 3, + ACTIONS(681), 1, + sym__namecolon, + ACTIONS(2706), 1, + anon_sym_LPAREN, + ACTIONS(2710), 1, + sym__namedot, + STATE(2007), 1, + aux_sym_qualified_name_repeat1, + STATE(2560), 1, + sym_sort_order, + STATE(2967), 1, + aux_sym_object_access_repeat1, + STATE(1845), 2, sym_comment, sym_include, - aux_sym_variable_definition_repeat1, - STATE(1981), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(2660), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [93482] = 10, + ACTIONS(2708), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + ACTIONS(2704), 6, + sym_identifier, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [94204] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2678), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2681), 1, - aux_sym_variable_definition_token2, - ACTIONS(2683), 1, - aux_sym_property_tuning_token1, - STATE(1879), 1, - sym_property_tuning, - ACTIONS(2675), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1830), 3, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2712), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(1981), 1, + sym_of, + STATE(2052), 1, + sym__pre_tuning, + STATE(2236), 1, + aux_sym_for_phrase_repeat1, + STATE(2240), 1, + sym_where_clause, + STATE(1846), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat2, - ACTIONS(2673), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [93524] = 10, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [94258] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2686), 1, - aux_sym__block_terminator_token1, - ACTIONS(2688), 1, - aux_sym_variable_definition_token1, - ACTIONS(2691), 1, - aux_sym_variable_definition_token2, - ACTIONS(2694), 1, - aux_sym_method_definition_token1, - ACTIONS(2697), 1, - aux_sym_constructor_definition_token1, - STATE(1831), 3, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2714), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(1968), 1, + sym_of, + STATE(2061), 1, + sym__pre_tuning, + STATE(2245), 1, + sym_where_clause, + STATE(2247), 1, + aux_sym_for_phrase_repeat1, + STATE(1847), 2, sym_comment, sym_include, - aux_sym_class_body_repeat1, - STATE(2775), 10, - sym_variable_definition, - sym_buffer_definition, - sym_query_definition, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_constructor_definition, - sym_temp_table_definition, - sym_data_source_definition, - [93566] = 12, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [94312] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2700), 1, + ACTIONS(2716), 1, aux_sym_variable_definition_token3, - ACTIONS(2702), 1, + ACTIONS(2718), 1, aux_sym_variable_definition_token4, - ACTIONS(2704), 1, + ACTIONS(2720), 1, aux_sym_buffer_definition_token3, - STATE(1829), 1, + STATE(1859), 1, aux_sym_variable_definition_repeat1, - ACTIONS(1348), 2, + ACTIONS(1360), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1832), 2, + STATE(1848), 2, sym_comment, sym_include, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1981), 3, + STATE(1973), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(1344), 4, + ACTIONS(1356), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [93612] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2706), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2708), 1, - anon_sym_COLON, - ACTIONS(2710), 1, - aux_sym_property_type_token1, - ACTIONS(2712), 1, - aux_sym_method_tuning_token1, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(2716), 1, - aux_sym_implements_token1, - ACTIONS(2718), 1, - aux_sym_use_widget_pool_token1, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1895), 1, - aux_sym_class_statement_repeat1, - STATE(1833), 2, - sym_comment, - sym_include, - STATE(2382), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [93664] = 16, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2720), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(2002), 1, - sym_of, - STATE(2020), 1, - sym__pre_tuning, - STATE(2213), 1, - aux_sym_for_phrase_repeat1, - STATE(2218), 1, - sym_where_clause, - STATE(1834), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [93718] = 12, + [94358] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -123763,138 +124778,155 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_definition_token4, ACTIONS(2726), 1, aux_sym_buffer_definition_token3, - STATE(1829), 1, + STATE(1859), 1, aux_sym_variable_definition_repeat1, - ACTIONS(1348), 2, + ACTIONS(1360), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1835), 2, + STATE(1849), 2, sym_comment, sym_include, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1981), 3, + STATE(1973), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(1344), 4, + ACTIONS(1356), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [93764] = 15, + [94404] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2706), 1, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, ACTIONS(2728), 1, anon_sym_COLON, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1909), 1, + STATE(1933), 1, aux_sym_class_statement_repeat1, - STATE(1836), 2, + STATE(1850), 2, sym_comment, sym_include, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [93816] = 11, + [94456] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2586), 1, - aux_sym_variable_definition_token1, - ACTIONS(2588), 1, - aux_sym_variable_definition_token2, - ACTIONS(2590), 1, - aux_sym_method_definition_token1, - ACTIONS(2592), 1, - aux_sym_constructor_definition_token1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, ACTIONS(2730), 1, - aux_sym__block_terminator_token1, - STATE(1831), 1, - aux_sym_class_body_repeat1, - STATE(1837), 2, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(1960), 1, + sym_of, + STATE(2059), 1, + sym__pre_tuning, + STATE(2244), 1, + aux_sym_for_phrase_repeat1, + STATE(2246), 1, + sym_where_clause, + STATE(1851), 2, sym_comment, sym_include, - STATE(2775), 10, - sym_variable_definition, - sym_buffer_definition, - sym_query_definition, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_constructor_definition, - sym_temp_table_definition, - sym_data_source_definition, - [93860] = 5, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [94510] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1838), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2732), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(1961), 1, + sym_of, + STATE(2127), 1, + sym__pre_tuning, + STATE(2308), 1, + sym_where_clause, + STATE(2311), 1, + aux_sym_for_phrase_repeat1, + STATE(1852), 2, sym_comment, sym_include, - ACTIONS(2578), 16, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_using_statement_token1, - aux_sym_on_error_phrase_token1, - aux_sym_where_clause_token1, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [93892] = 5, + [94564] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1839), 2, + STATE(1853), 2, sym_comment, sym_include, - ACTIONS(2732), 16, + ACTIONS(2610), 16, sym__terminator, anon_sym_RPAREN, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, @@ -123904,58 +124936,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [93924] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(673), 1, - sym__namecolon, - ACTIONS(2736), 1, - anon_sym_LPAREN, - ACTIONS(2740), 1, - sym__namedot, - STATE(1967), 1, - aux_sym_qualified_name_repeat1, - STATE(2599), 1, - sym_sort_order, - STATE(2905), 1, - aux_sym_object_access_repeat1, - STATE(1840), 2, - sym_comment, - sym_include, - ACTIONS(2738), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - ACTIONS(2734), 6, - sym_identifier, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [93970] = 5, + [94596] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1841), 2, + STATE(1854), 2, sym_comment, sym_include, - ACTIONS(2742), 16, + ACTIONS(2734), 16, sym__terminator, anon_sym_RPAREN, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_using_statement_token1, aux_sym_on_error_phrase_token1, @@ -123965,568 +124963,538 @@ static const uint16_t ts_small_parse_table[] = { 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, - [94002] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2746), 1, - aux_sym_variable_definition_token4, - STATE(1842), 2, - sym_comment, - sym_include, - ACTIONS(2744), 15, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token1, - aux_sym_buffer_definition_token3, - aux_sym_query_definition_token1, - aux_sym_function_parameter_token1, - aux_sym_data_source_definition_token1, - [94036] = 16, + [94628] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2748), 1, + ACTIONS(2736), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1985), 1, + STATE(1957), 1, sym_of, - STATE(2050), 1, + STATE(2026), 1, sym__pre_tuning, - STATE(2206), 1, + STATE(2253), 1, sym_where_clause, - STATE(2249), 1, + STATE(2255), 1, aux_sym_for_phrase_repeat1, - STATE(1843), 2, + STATE(1855), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [94090] = 16, + [94682] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2750), 1, + ACTIONS(2738), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1969), 1, + STATE(1979), 1, sym_of, - STATE(2082), 1, + STATE(2066), 1, sym__pre_tuning, + STATE(2222), 1, + aux_sym_for_phrase_repeat1, STATE(2226), 1, sym_where_clause, - STATE(2234), 1, - aux_sym_for_phrase_repeat1, - STATE(1844), 2, + STATE(1856), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [94144] = 15, + [94736] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2706), 1, + ACTIONS(2745), 1, + aux_sym_variable_tuning_token6, + ACTIONS(2748), 1, + aux_sym_variable_definition_token2, + ACTIONS(2750), 1, + aux_sym_property_tuning_token1, + STATE(1870), 1, + sym_property_tuning, + ACTIONS(2742), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1857), 3, + sym_comment, + sym_include, + aux_sym_property_definition_repeat2, + ACTIONS(2740), 9, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [94778] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2753), 1, + aux_sym_variable_definition_token3, + ACTIONS(2755), 1, + aux_sym_variable_definition_token4, + ACTIONS(2757), 1, + aux_sym_buffer_definition_token3, + STATE(1859), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1360), 2, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, - aux_sym_property_type_token1, - ACTIONS(2712), 1, - aux_sym_method_tuning_token1, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(2716), 1, - aux_sym_implements_token1, - ACTIONS(2718), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2752), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1911), 1, - aux_sym_class_statement_repeat1, - STATE(1845), 2, + aux_sym_serialization_tuning_token2, + STATE(1858), 2, sym_comment, sym_include, - STATE(2382), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [94196] = 15, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1973), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [94824] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(2770), 1, + aux_sym_variable_definition_token4, + ACTIONS(2765), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(2768), 2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + ACTIONS(2762), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1859), 3, + sym_comment, + sym_include, + aux_sym_variable_definition_repeat1, + STATE(1973), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(2759), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [94866] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1860), 2, + sym_comment, + sym_include, + ACTIONS(2772), 16, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_using_statement_token1, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + aux_sym_of_token1, + [94898] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2706), 1, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2754), 1, + ACTIONS(2774), 1, anon_sym_COLON, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1908), 1, + STATE(1915), 1, aux_sym_class_statement_repeat1, - STATE(1846), 2, + STATE(1861), 2, sym_comment, sym_include, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [94248] = 16, + [94950] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2756), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1998), 1, - sym_of, - STATE(2014), 1, - sym__pre_tuning, - STATE(2305), 1, - aux_sym_for_phrase_repeat1, - STATE(2314), 1, - sym_where_clause, - STATE(1847), 2, + ACTIONS(2778), 1, + aux_sym_variable_definition_token4, + STATE(1862), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [94302] = 16, + ACTIONS(2776), 15, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token1, + aux_sym_buffer_definition_token3, + aux_sym_query_definition_token1, + aux_sym_function_parameter_token1, + aux_sym_data_source_definition_token1, + [94984] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2758), 1, - sym__terminator, - STATE(332), 1, + ACTIONS(2682), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2686), 1, + aux_sym_property_type_token1, + ACTIONS(2688), 1, + aux_sym_method_tuning_token1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(2692), 1, + aux_sym_implements_token1, + ACTIONS(2694), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2780), 1, + anon_sym_COLON, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1943), 1, - sym_of, - STATE(2071), 1, - sym__pre_tuning, - STATE(2255), 1, - sym_where_clause, - STATE(2282), 1, - aux_sym_for_phrase_repeat1, - STATE(1848), 2, + STATE(1910), 1, + aux_sym_class_statement_repeat1, + STATE(1863), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [94356] = 16, + STATE(2414), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [95036] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2760), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1983), 1, - sym_of, - STATE(2106), 1, - sym__pre_tuning, - STATE(2239), 1, - sym_where_clause, - STATE(2306), 1, - aux_sym_for_phrase_repeat1, - STATE(1849), 2, + ACTIONS(2782), 1, + aux_sym_variable_definition_token3, + ACTIONS(2784), 1, + aux_sym_variable_definition_token4, + ACTIONS(2786), 1, + aux_sym_buffer_definition_token3, + STATE(1859), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1864), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [94410] = 16, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1973), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [95082] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2762), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1972), 1, - sym_of, - STATE(2075), 1, - sym__pre_tuning, - STATE(2230), 1, - sym_where_clause, - STATE(2231), 1, - aux_sym_for_phrase_repeat1, - STATE(1850), 2, - sym_comment, - sym_include, - ACTIONS(1193), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - [94464] = 16, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2764), 1, + ACTIONS(2788), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1996), 1, + STATE(1970), 1, sym_of, - STATE(2059), 1, + STATE(2116), 1, sym__pre_tuning, - STATE(2220), 1, - aux_sym_for_phrase_repeat1, - STATE(2224), 1, + STATE(2335), 1, sym_where_clause, - STATE(1851), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [94518] = 16, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2766), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(1933), 1, - sym_query_tuning, - STATE(1964), 1, - sym_of, - STATE(2095), 1, - sym__pre_tuning, - STATE(2284), 1, + STATE(2337), 1, aux_sym_for_phrase_repeat1, - STATE(2313), 1, - sym_where_clause, - STATE(1852), 2, + STATE(1865), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [94572] = 15, + [95136] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2706), 1, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2768), 1, + ACTIONS(2790), 1, anon_sym_COLON, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(1897), 1, + STATE(1916), 1, aux_sym_class_statement_repeat1, - STATE(1853), 2, + STATE(1866), 2, sym_comment, sym_include, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [94624] = 12, + [95188] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2770), 1, - aux_sym_variable_definition_token3, - ACTIONS(2772), 1, - aux_sym_variable_definition_token4, - ACTIONS(2774), 1, - aux_sym_buffer_definition_token3, - STATE(1829), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1854), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2792), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(1942), 1, + sym_query_tuning, + STATE(1980), 1, + sym_of, + STATE(2087), 1, + sym__pre_tuning, + STATE(2229), 1, + aux_sym_for_phrase_repeat1, + STATE(2303), 1, + sym_where_clause, + STATE(1867), 2, sym_comment, sym_include, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1981), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [94670] = 13, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [95242] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, - aux_sym_using_statement_token1, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2776), 1, - anon_sym_RPAREN, - STATE(1877), 1, - aux_sym_can_find_expression_repeat2, - STATE(1929), 1, - sym__using_first, - STATE(1855), 2, + ACTIONS(2794), 1, + aux_sym__block_terminator_token1, + ACTIONS(2796), 1, + aux_sym_variable_definition_token1, + ACTIONS(2799), 1, + aux_sym_variable_definition_token2, + ACTIONS(2802), 1, + aux_sym_method_definition_token1, + ACTIONS(2805), 1, + aux_sym_constructor_definition_token1, + STATE(1868), 3, sym_comment, sym_include, - STATE(2172), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1193), 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, - [94717] = 13, + aux_sym_class_body_repeat1, + STATE(2723), 10, + sym_variable_definition, + sym_buffer_definition, + sym_query_definition, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_constructor_definition, + sym_temp_table_definition, + sym_data_source_definition, + [95284] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2778), 1, + ACTIONS(2808), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1856), 2, + STATE(1869), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [94764] = 6, + [95331] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2782), 1, + ACTIONS(2812), 1, aux_sym_variable_definition_token2, - STATE(1857), 2, + STATE(1870), 2, sym_comment, sym_include, - ACTIONS(2780), 14, + ACTIONS(2810), 14, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -124541,529 +125509,495 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_event_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [94797] = 13, + [95364] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2784), 1, + ACTIONS(2814), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1858), 2, + STATE(1871), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [94844] = 13, + [95411] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2786), 1, + ACTIONS(2816), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1859), 2, + STATE(1872), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [94891] = 13, + [95458] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2788), 1, + ACTIONS(2818), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1860), 2, + STATE(1873), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [94938] = 13, + [95505] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2790), 1, + ACTIONS(2820), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1861), 2, + STATE(1874), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [94985] = 13, + [95552] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2792), 1, + ACTIONS(2822), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1862), 2, + STATE(1875), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95032] = 13, + [95599] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2794), 1, + ACTIONS(2824), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1863), 2, + STATE(1876), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95079] = 13, + [95646] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2796), 1, + ACTIONS(2826), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1864), 2, + STATE(1877), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95126] = 13, + [95693] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2798), 1, + ACTIONS(2828), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1865), 2, + STATE(1878), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95173] = 13, + [95740] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2800), 1, + ACTIONS(2830), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1866), 2, + STATE(1879), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95220] = 13, + [95787] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2802), 1, + ACTIONS(2832), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1867), 2, + STATE(1880), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95267] = 13, + [95834] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2804), 1, + ACTIONS(2834), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1868), 2, + STATE(1881), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95314] = 13, + [95881] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2806), 1, + ACTIONS(2836), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1869), 2, + STATE(1882), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95361] = 13, + [95928] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2808), 1, + ACTIONS(2838), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1870), 2, + STATE(1883), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95408] = 13, + [95975] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2810), 1, + ACTIONS(2840), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1871), 2, + STATE(1884), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95455] = 13, + [96022] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, - aux_sym_using_statement_token1, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2812), 1, - anon_sym_RPAREN, - STATE(1877), 1, - aux_sym_can_find_expression_repeat2, - STATE(1929), 1, - sym__using_first, - STATE(1872), 2, - sym_comment, - sym_include, - STATE(2172), 3, - sym_where_clause, - sym_query_tuning, - sym_of, - ACTIONS(1193), 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, - [95502] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1227), 1, + ACTIONS(1239), 1, aux_sym_variable_definition_token2, - STATE(1873), 2, + STATE(1885), 2, sym_comment, sym_include, - ACTIONS(1225), 14, + ACTIONS(1237), 14, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -125078,1807 +126012,1824 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_event_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [95535] = 13, + [96055] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2814), 1, + ACTIONS(2842), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1874), 2, + STATE(1886), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95582] = 13, + [96102] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2816), 1, + ACTIONS(2844), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1875), 2, + STATE(1887), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95629] = 13, + [96149] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2818), 1, + ACTIONS(2846), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1876), 2, + STATE(1888), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95676] = 12, + [96196] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2820), 1, - anon_sym_RPAREN, - ACTIONS(2822), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(2825), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(2831), 1, - aux_sym_query_tuning_token6, - ACTIONS(2834), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - STATE(1929), 1, + ACTIONS(2848), 1, + anon_sym_RPAREN, + STATE(1898), 1, + aux_sym_can_find_expression_repeat2, + STATE(1949), 1, sym__using_first, - STATE(1877), 3, + STATE(1889), 2, sym_comment, sym_include, - aux_sym_can_find_expression_repeat2, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2828), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95721] = 13, + [96243] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2837), 1, + ACTIONS(2850), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1878), 2, + STATE(1890), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95768] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2841), 1, - aux_sym_variable_definition_token2, - STATE(1879), 2, - sym_comment, - sym_include, - ACTIONS(2839), 14, - aux_sym__block_terminator_token1, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_property_tuning_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_event_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [95801] = 13, + [96290] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2843), 1, + ACTIONS(2852), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1880), 2, + STATE(1891), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95848] = 13, + [96337] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2845), 1, + ACTIONS(2854), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1881), 2, + STATE(1892), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95895] = 13, + [96384] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2847), 1, + ACTIONS(2856), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1882), 2, + STATE(1893), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95942] = 13, + [96431] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2849), 1, + ACTIONS(2858), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1883), 2, + STATE(1894), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [95989] = 13, + [96478] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2851), 1, + ACTIONS(2860), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1884), 2, + STATE(1895), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [96036] = 13, + [96525] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2853), 1, + ACTIONS(2862), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1885), 2, + STATE(1896), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [96083] = 13, + [96572] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1189), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2855), 1, + ACTIONS(2864), 1, anon_sym_RPAREN, - STATE(1877), 1, + STATE(1898), 1, aux_sym_can_find_expression_repeat2, - STATE(1929), 1, + STATE(1949), 1, sym__using_first, - STATE(1886), 2, + STATE(1897), 2, sym_comment, sym_include, - STATE(2172), 3, + STATE(2139), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [96130] = 12, + [96619] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2439), 1, - aux_sym_variable_definition_token2, - STATE(1893), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - STATE(1887), 2, + ACTIONS(2866), 1, + anon_sym_RPAREN, + ACTIONS(2871), 1, + aux_sym_using_statement_token1, + ACTIONS(2874), 1, + aux_sym_where_clause_token1, + ACTIONS(2877), 1, + aux_sym_query_tuning_token5, + ACTIONS(2880), 1, + aux_sym_of_token1, + STATE(1949), 1, + sym__using_first, + STATE(1898), 3, sym_comment, sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2437), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [96174] = 12, + aux_sym_can_find_expression_repeat2, + STATE(2139), 3, + sym_where_clause, + sym_query_tuning, + sym_of, + ACTIONS(2868), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [96664] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2512), 1, + ACTIONS(2885), 1, aux_sym_variable_definition_token2, - STATE(1893), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - STATE(1888), 2, + STATE(1899), 2, sym_comment, sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, + ACTIONS(2883), 14, + aux_sym__block_terminator_token1, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2510), 4, - aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, + aux_sym_property_tuning_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_event_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [96218] = 14, + [96697] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, ACTIONS(1197), 1, + aux_sym_using_statement_token1, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2720), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2002), 1, - sym_of, - STATE(2020), 1, - sym__pre_tuning, - STATE(2213), 1, - aux_sym_for_phrase_repeat1, - STATE(2218), 1, - sym_where_clause, - STATE(1889), 2, + ACTIONS(2887), 1, + anon_sym_RPAREN, + STATE(1898), 1, + aux_sym_can_find_expression_repeat2, + STATE(1949), 1, + sym__using_first, + STATE(1900), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [96266] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2758), 1, - sym__terminator, - STATE(1933), 1, + STATE(2139), 3, + sym_where_clause, sym_query_tuning, - STATE(1943), 1, sym_of, - STATE(2071), 1, - sym__pre_tuning, - STATE(2255), 1, - sym_where_clause, - STATE(2282), 1, - aux_sym_for_phrase_repeat1, - STATE(1890), 2, - sym_comment, - sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [96314] = 14, + [96744] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2748), 1, + ACTIONS(2736), 1, sym__terminator, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1985), 1, + STATE(1957), 1, sym_of, - STATE(2050), 1, + STATE(2026), 1, sym__pre_tuning, - STATE(2206), 1, + STATE(2253), 1, sym_where_clause, - STATE(2249), 1, + STATE(2255), 1, aux_sym_for_phrase_repeat1, - STATE(1891), 2, + STATE(1901), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [96362] = 12, + [96792] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2859), 1, + ACTIONS(2552), 1, aux_sym_variable_definition_token2, - STATE(1893), 1, + STATE(1908), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - STATE(1892), 2, + STATE(1902), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2857), 4, + ACTIONS(2550), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [96406] = 11, + [96836] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2866), 1, - aux_sym_variable_definition_token2, - ACTIONS(2868), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2871), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - STATE(3745), 1, + ACTIONS(2491), 1, + aux_sym_variable_definition_token2, + STATE(1908), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, sym_access_tuning, - STATE(2179), 2, + STATE(1903), 2, + sym_comment, + sym_include, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(2863), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1893), 3, - sym_comment, - sym_include, - aux_sym_property_definition_repeat3, - ACTIONS(2861), 4, + ACTIONS(2489), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [96448] = 12, + [96880] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, + ACTIONS(2894), 1, + aux_sym_query_tuning_token5, + STATE(2016), 1, + sym_query_tuning, + STATE(1904), 3, + sym_comment, + sym_include, + aux_sym_for_phrase_repeat1, + ACTIONS(2891), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + ACTIONS(2889), 6, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [96916] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2476), 1, + ACTIONS(2483), 1, aux_sym_variable_definition_token2, - STATE(1893), 1, + STATE(1908), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - STATE(1894), 2, + STATE(1905), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2474), 4, + ACTIONS(2481), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [96492] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2706), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, - aux_sym_property_type_token1, - ACTIONS(2712), 1, - aux_sym_method_tuning_token1, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(2716), 1, - aux_sym_implements_token1, - ACTIONS(2718), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2874), 1, - anon_sym_COLON, - STATE(1902), 1, - aux_sym_class_statement_repeat1, - STATE(1895), 2, - sym_comment, - sym_include, - STATE(2382), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [96538] = 10, + [96960] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2774), 1, + ACTIONS(1368), 1, aux_sym_buffer_definition_token3, - STATE(1829), 1, + STATE(1919), 1, aux_sym_variable_definition_repeat1, - ACTIONS(1348), 2, + ACTIONS(1360), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1896), 2, + STATE(1906), 2, sym_comment, sym_include, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1981), 3, + STATE(1973), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(1344), 4, + ACTIONS(1356), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [96578] = 13, + [97000] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, + ACTIONS(2897), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + ACTIONS(2900), 1, + anon_sym_COLON, + ACTIONS(2902), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2905), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2908), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2911), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2914), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2876), 1, - anon_sym_COLON, - STATE(1902), 1, - aux_sym_class_statement_repeat1, - STATE(1897), 2, + STATE(1907), 3, sym_comment, sym_include, - STATE(2382), 6, + aux_sym_class_statement_repeat1, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [96624] = 12, + [97044] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, + ACTIONS(2922), 1, + aux_sym_variable_definition_token2, + ACTIONS(2924), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2927), 1, aux_sym_setter_token1, - ACTIONS(2880), 1, - aux_sym_variable_definition_token2, - STATE(1893), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - STATE(1898), 2, - sym_comment, - sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(2919), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2878), 4, + STATE(1908), 3, + sym_comment, + sym_include, + aux_sym_property_definition_repeat3, + ACTIONS(2917), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [96668] = 14, + [97086] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2750), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(1969), 1, - sym_of, - STATE(2082), 1, - sym__pre_tuning, - STATE(2226), 1, - sym_where_clause, - STATE(2234), 1, - aux_sym_for_phrase_repeat1, - STATE(1899), 2, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2932), 1, + aux_sym_variable_definition_token2, + STATE(1908), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + STATE(1909), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [96716] = 13, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2930), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [97130] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2754), 1, + ACTIONS(2934), 1, anon_sym_COLON, - STATE(1908), 1, + STATE(1907), 1, aux_sym_class_statement_repeat1, - STATE(1900), 2, + STATE(1910), 2, sym_comment, sym_include, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [96762] = 8, + [97176] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1411), 1, - aux_sym_variable_definition_token4, - ACTIONS(1413), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(1901), 2, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2938), 1, + aux_sym_variable_definition_token2, + STATE(1908), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + STATE(1911), 2, sym_comment, sym_include, - ACTIONS(1409), 4, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - ACTIONS(1403), 7, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - [96798] = 12, + ACTIONS(2936), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [97220] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2882), 1, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2885), 1, - anon_sym_COLON, - ACTIONS(2887), 1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2890), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2893), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2896), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2899), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, - STATE(1902), 3, + ACTIONS(2780), 1, + anon_sym_COLON, + STATE(1910), 1, + aux_sym_class_statement_repeat1, + STATE(1912), 2, sym_comment, sym_include, - aux_sym_class_statement_repeat1, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [96842] = 8, + [97266] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2907), 1, - aux_sym_query_tuning_token6, - STATE(1992), 1, - sym_query_tuning, - STATE(1903), 3, - sym_comment, - sym_include, - aux_sym_for_phrase_repeat1, - ACTIONS(2904), 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(2902), 6, - sym__terminator, - anon_sym_COMMA, + ACTIONS(2682), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2686), 1, + aux_sym_property_type_token1, + ACTIONS(2688), 1, + aux_sym_method_tuning_token1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(2692), 1, + aux_sym_implements_token1, + ACTIONS(2694), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2774), 1, anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [96878] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2508), 1, - aux_sym_variable_definition_token2, - STATE(1893), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - STATE(1904), 2, + STATE(1915), 1, + aux_sym_class_statement_repeat1, + STATE(1913), 2, sym_comment, sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2506), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [96922] = 12, + STATE(2414), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [97312] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2449), 1, - aux_sym_variable_definition_token2, - STATE(1893), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - STATE(1905), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2792), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(1980), 1, + sym_of, + STATE(2087), 1, + sym__pre_tuning, + STATE(2229), 1, + aux_sym_for_phrase_repeat1, + STATE(2303), 1, + sym_where_clause, + STATE(1914), 2, sym_comment, sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2447), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [96966] = 13, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [97360] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2768), 1, + ACTIONS(2940), 1, anon_sym_COLON, - STATE(1897), 1, + STATE(1907), 1, aux_sym_class_statement_repeat1, - STATE(1906), 2, + STATE(1915), 2, sym_comment, sym_include, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [97012] = 13, + [97406] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2752), 1, + ACTIONS(2942), 1, anon_sym_COLON, - STATE(1911), 1, + STATE(1907), 1, aux_sym_class_statement_repeat1, - STATE(1907), 2, + STATE(1916), 2, sym_comment, sym_include, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [97058] = 13, + [97452] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2696), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(1984), 1, + sym_of, + STATE(2118), 1, + sym__pre_tuning, + STATE(2300), 1, + sym_where_clause, + STATE(2306), 1, + aux_sym_for_phrase_repeat1, + STATE(1917), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [97500] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2910), 1, + ACTIONS(2790), 1, anon_sym_COLON, - STATE(1902), 1, + STATE(1916), 1, aux_sym_class_statement_repeat1, - STATE(1908), 2, + STATE(1918), 2, sym_comment, sym_include, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [97104] = 13, + [97546] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, + ACTIONS(2726), 1, + aux_sym_buffer_definition_token3, + STATE(1859), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1360), 2, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + aux_sym_serialization_tuning_token2, + STATE(1919), 2, + sym_comment, + sym_include, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1973), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [97586] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2682), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2912), 1, + ACTIONS(2944), 1, anon_sym_COLON, - STATE(1902), 1, + STATE(1907), 1, aux_sym_class_statement_repeat1, - STATE(1909), 2, + STATE(1920), 2, sym_comment, sym_include, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [97150] = 12, + [97632] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2480), 1, + ACTIONS(2514), 1, aux_sym_variable_definition_token2, - STATE(1893), 1, + STATE(1908), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - STATE(1910), 2, + STATE(1921), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2478), 4, + ACTIONS(2512), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97194] = 13, + [97676] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, - aux_sym_property_type_token1, - ACTIONS(2712), 1, - aux_sym_method_tuning_token1, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(2716), 1, - aux_sym_implements_token1, - ACTIONS(2718), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2914), 1, - anon_sym_COLON, - STATE(1902), 1, - aux_sym_class_statement_repeat1, - STATE(1911), 2, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2948), 1, + aux_sym_variable_definition_token2, + STATE(1908), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + STATE(1922), 2, sym_comment, sym_include, - STATE(2382), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [97240] = 14, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2946), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [97720] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2756), 1, + ACTIONS(2730), 1, sym__terminator, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1998), 1, + STATE(1960), 1, sym_of, - STATE(2014), 1, + STATE(2059), 1, sym__pre_tuning, - STATE(2305), 1, + STATE(2244), 1, aux_sym_for_phrase_repeat1, - STATE(2314), 1, + STATE(2246), 1, sym_where_clause, - STATE(1912), 2, + STATE(1923), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [97288] = 14, + [97768] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2762), 1, + ACTIONS(2732), 1, sym__terminator, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1972), 1, + STATE(1961), 1, sym_of, - STATE(2075), 1, + STATE(2127), 1, sym__pre_tuning, - STATE(2230), 1, + STATE(2308), 1, sym_where_clause, - STATE(2231), 1, + STATE(2311), 1, aux_sym_for_phrase_repeat1, - STATE(1913), 2, + STATE(1924), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [97336] = 10, + [97816] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1356), 1, - aux_sym_buffer_definition_token3, - STATE(1896), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1914), 2, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2518), 1, + aux_sym_variable_definition_token2, + STATE(1908), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + STATE(1925), 2, sym_comment, sym_include, - ACTIONS(1346), 3, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1981), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [97376] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, - aux_sym_of_token1, - ACTIONS(2766), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(1964), 1, - sym_of, - STATE(2095), 1, - sym__pre_tuning, - STATE(2284), 1, - aux_sym_for_phrase_repeat1, - STATE(2313), 1, - sym_where_clause, - STATE(1915), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [97424] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2706), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2708), 1, - anon_sym_COLON, - ACTIONS(2710), 1, - aux_sym_property_type_token1, - ACTIONS(2712), 1, - aux_sym_method_tuning_token1, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(2716), 1, - aux_sym_implements_token1, - ACTIONS(2718), 1, - aux_sym_use_widget_pool_token1, - STATE(1895), 1, - aux_sym_class_statement_repeat1, - STATE(1916), 2, - sym_comment, - sym_include, - STATE(2382), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [97470] = 12, + ACTIONS(2516), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [97860] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2498), 1, + ACTIONS(2952), 1, aux_sym_variable_definition_token2, - STATE(1893), 1, + STATE(1908), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - STATE(1917), 2, + STATE(1926), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2496), 4, + ACTIONS(2950), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97514] = 14, + [97904] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2760), 1, + ACTIONS(2714), 1, sym__terminator, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1983), 1, + STATE(1968), 1, sym_of, - STATE(2106), 1, + STATE(2061), 1, sym__pre_tuning, - STATE(2239), 1, + STATE(2245), 1, sym_where_clause, - STATE(2306), 1, + STATE(2247), 1, aux_sym_for_phrase_repeat1, - STATE(1918), 2, + STATE(1927), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [97562] = 14, + [97952] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2764), 1, + ACTIONS(2788), 1, sym__terminator, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1996), 1, + STATE(1970), 1, sym_of, - STATE(2059), 1, + STATE(2116), 1, sym__pre_tuning, - STATE(2220), 1, - aux_sym_for_phrase_repeat1, - STATE(2224), 1, + STATE(2335), 1, sym_where_clause, - STATE(1919), 2, + STATE(2337), 1, + aux_sym_for_phrase_repeat1, + STATE(1928), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [97610] = 12, + [98000] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2918), 1, - aux_sym_variable_definition_token2, - STATE(1893), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - STATE(1920), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2712), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(1981), 1, + sym_of, + STATE(2052), 1, + sym__pre_tuning, + STATE(2236), 1, + aux_sym_for_phrase_repeat1, + STATE(2240), 1, + sym_where_clause, + STATE(1929), 2, sym_comment, sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2916), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [97654] = 12, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [98048] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2502), 1, + ACTIONS(2956), 1, aux_sym_variable_definition_token2, - STATE(1893), 1, + STATE(1908), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - STATE(1921), 2, + STATE(1930), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2500), 4, + ACTIONS(2954), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97698] = 12, + [98092] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(673), 1, + ACTIONS(681), 1, sym__namecolon, - ACTIONS(2920), 1, + ACTIONS(2958), 1, anon_sym_LPAREN, - ACTIONS(2924), 1, + ACTIONS(2962), 1, sym__namedot, - STATE(2183), 1, + STATE(2215), 1, aux_sym_qualified_name_repeat1, - STATE(2905), 1, + STATE(2967), 1, aux_sym_object_access_repeat1, - STATE(2971), 1, + STATE(3021), 1, sym_sort_order, - STATE(1922), 2, + STATE(1931), 2, sym_comment, sym_include, - ACTIONS(2734), 4, + ACTIONS(2704), 4, sym_identifier, sym__terminator, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - ACTIONS(2922), 4, + ACTIONS(2960), 4, aux_sym_sort_order_token1, aux_sym_sort_order_token2, aux_sym_sort_order_token3, aux_sym_sort_order_token4, - [97742] = 12, + [98136] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, - aux_sym_getter_token1, - ACTIONS(2371), 1, - aux_sym_setter_token1, - ACTIONS(2928), 1, - aux_sym_variable_definition_token2, - STATE(1893), 1, - aux_sym_property_definition_repeat3, - STATE(3745), 1, - sym_access_tuning, - STATE(1923), 2, + ACTIONS(1449), 1, + aux_sym_variable_definition_token4, + ACTIONS(1451), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(1932), 2, sym_comment, sym_include, - STATE(2179), 2, - sym_getter, - sym_setter, - ACTIONS(1346), 3, + ACTIONS(1447), 4, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + ACTIONS(1441), 7, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2926), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [97786] = 13, + [98172] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2706), 1, + ACTIONS(2682), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2710), 1, + ACTIONS(2686), 1, aux_sym_property_type_token1, - ACTIONS(2712), 1, + ACTIONS(2688), 1, aux_sym_method_tuning_token1, - ACTIONS(2714), 1, + ACTIONS(2690), 1, aux_sym_inherits_token1, - ACTIONS(2716), 1, + ACTIONS(2692), 1, aux_sym_implements_token1, - ACTIONS(2718), 1, + ACTIONS(2694), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2728), 1, + ACTIONS(2964), 1, anon_sym_COLON, - STATE(1909), 1, + STATE(1907), 1, aux_sym_class_statement_repeat1, - STATE(1924), 2, + STATE(1933), 2, sym_comment, sym_include, - STATE(2382), 6, + STATE(2414), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [97832] = 14, + [98218] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2487), 1, + aux_sym_variable_definition_token2, + STATE(1908), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + STATE(1934), 2, + sym_comment, + sym_include, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2485), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [98262] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2403), 1, + aux_sym_getter_token1, + ACTIONS(2405), 1, + aux_sym_setter_token1, + ACTIONS(2473), 1, + aux_sym_variable_definition_token2, + STATE(1908), 1, + aux_sym_property_definition_repeat3, + STATE(3919), 1, + sym_access_tuning, + STATE(1935), 2, + sym_comment, + sym_include, + STATE(2152), 2, + sym_getter, + sym_setter, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2471), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [98306] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(1197), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2652), 1, + ACTIONS(2680), 1, sym__terminator, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(1994), 1, + STATE(1953), 1, sym_of, - STATE(2036), 1, + STATE(2076), 1, sym__pre_tuning, - STATE(2209), 1, + STATE(2259), 1, sym_where_clause, - STATE(2211), 1, + STATE(2260), 1, aux_sym_for_phrase_repeat1, - STATE(1925), 2, + STATE(1936), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [97880] = 12, + [98354] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2369), 1, + ACTIONS(2682), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2684), 1, + anon_sym_COLON, + ACTIONS(2686), 1, + aux_sym_property_type_token1, + ACTIONS(2688), 1, + aux_sym_method_tuning_token1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(2692), 1, + aux_sym_implements_token1, + ACTIONS(2694), 1, + aux_sym_use_widget_pool_token1, + STATE(1920), 1, + aux_sym_class_statement_repeat1, + STATE(1937), 2, + sym_comment, + sym_include, + STATE(2414), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [98400] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2403), 1, aux_sym_getter_token1, - ACTIONS(2371), 1, + ACTIONS(2405), 1, aux_sym_setter_token1, - ACTIONS(2932), 1, + ACTIONS(2566), 1, aux_sym_variable_definition_token2, - STATE(1893), 1, + STATE(1908), 1, aux_sym_property_definition_repeat3, - STATE(3745), 1, + STATE(3919), 1, sym_access_tuning, - STATE(1926), 2, + STATE(1938), 2, sym_comment, sym_include, - STATE(2179), 2, + STATE(2152), 2, sym_getter, sym_setter, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2930), 4, + ACTIONS(2564), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97924] = 7, + [98444] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2936), 1, - aux_sym__using_and_token1, - STATE(2065), 1, - sym__using_and, - STATE(1927), 3, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2738), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(1979), 1, + sym_of, + STATE(2066), 1, + sym__pre_tuning, + STATE(2222), 1, + aux_sym_for_phrase_repeat1, + STATE(2226), 1, + sym_where_clause, + STATE(1939), 2, sym_comment, sym_include, - aux_sym_can_find_expression_repeat1, - ACTIONS(2934), 10, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [97957] = 7, + [98492] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1411), 1, - aux_sym_variable_definition_token4, - ACTIONS(1417), 1, - aux_sym_property_definition_token1, - STATE(1928), 2, + ACTIONS(2682), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2686), 1, + aux_sym_property_type_token1, + ACTIONS(2688), 1, + aux_sym_method_tuning_token1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(2692), 1, + aux_sym_implements_token1, + ACTIONS(2694), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2728), 1, + anon_sym_COLON, + STATE(1933), 1, + aux_sym_class_statement_repeat1, + STATE(1940), 2, sym_comment, sym_include, - ACTIONS(1409), 11, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - [97990] = 8, + STATE(2414), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [98538] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2941), 1, + ACTIONS(2968), 1, aux_sym__using_and_token1, - STATE(1934), 1, + STATE(1947), 1, aux_sym_can_find_expression_repeat1, - STATE(2065), 1, + STATE(2122), 1, sym__using_and, - STATE(1929), 2, + STATE(1941), 2, sym_comment, sym_include, - ACTIONS(2939), 10, + ACTIONS(2966), 10, anon_sym_RPAREN, + aux_sym_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -126886,145 +127837,169 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, aux_sym_of_token1, - [98025] = 13, + [98573] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1942), 2, + sym_comment, + sym_include, + ACTIONS(2970), 13, + sym__terminator, + anon_sym_COMMA, + aux_sym_function_call_token1, + anon_sym_COLON, + aux_sym_on_error_phrase_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_sort_clause_token1, + aux_sym_sort_clause_token2, + [98602] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2974), 1, + aux_sym_variable_tuning_token1, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2109), 1, + aux_sym_field_definition_repeat1, + STATE(2283), 1, + sym_field_option, + ACTIONS(2978), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(1943), 2, + sym_comment, + sym_include, + ACTIONS(2972), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(2976), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + [98645] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2982), 1, + aux_sym_variable_definition_token4, + STATE(1944), 2, + sym_comment, + sym_include, + ACTIONS(2980), 12, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + aux_sym_property_definition_token1, + [98676] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2943), 1, + ACTIONS(2984), 1, sym_identifier, - STATE(2312), 1, + STATE(2237), 1, aux_sym_sort_clause_repeat1, - STATE(2336), 1, + STATE(2362), 1, aux_sym_index_definition_repeat1, - STATE(2609), 1, + STATE(2570), 1, sym_index_tuning, - STATE(2966), 1, + STATE(3035), 1, sym_sort_column, - STATE(4431), 1, + STATE(4446), 1, sym_object_access, - ACTIONS(2947), 2, + ACTIONS(2988), 2, aux_sym_variable_definition_token5, aux_sym_index_tuning_token1, - STATE(1930), 2, + STATE(1945), 2, sym_comment, sym_include, - STATE(2260), 2, + STATE(2340), 2, sym_qualified_name, sym_function_call, - ACTIONS(2945), 3, + ACTIONS(2986), 3, sym__terminator, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [98070] = 13, + [98721] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2943), 1, + ACTIONS(2984), 1, sym_identifier, - STATE(1930), 1, + STATE(1945), 1, aux_sym_index_definition_repeat1, - STATE(2242), 1, + STATE(2243), 1, aux_sym_sort_clause_repeat1, - STATE(2609), 1, + STATE(2570), 1, sym_index_tuning, - STATE(2966), 1, + STATE(3035), 1, sym_sort_column, - STATE(4431), 1, + STATE(4446), 1, sym_object_access, - ACTIONS(2947), 2, + ACTIONS(2988), 2, aux_sym_variable_definition_token5, aux_sym_index_tuning_token1, - STATE(1931), 2, + STATE(1946), 2, sym_comment, sym_include, - STATE(2260), 2, + STATE(2340), 2, sym_qualified_name, sym_function_call, - ACTIONS(2949), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [98115] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2953), 1, - aux_sym_variable_tuning_token1, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2041), 1, - aux_sym_field_definition_repeat1, - STATE(2208), 1, - sym_field_option, - ACTIONS(2957), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(1932), 2, - sym_comment, - sym_include, - ACTIONS(2951), 3, + ACTIONS(2990), 3, sym__terminator, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - ACTIONS(2955), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - [98158] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(1933), 2, - sym_comment, - sym_include, - ACTIONS(2959), 13, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_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, - [98187] = 8, + [98766] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2941), 1, + ACTIONS(2994), 1, aux_sym__using_and_token1, - STATE(1927), 1, - aux_sym_can_find_expression_repeat1, - STATE(2065), 1, + STATE(2122), 1, sym__using_and, - STATE(1934), 2, + STATE(1947), 3, sym_comment, sym_include, - ACTIONS(2961), 10, + aux_sym_can_find_expression_repeat1, + ACTIONS(2992), 10, anon_sym_RPAREN, + aux_sym_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -127032,21 +128007,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, - aux_sym_query_tuning_token6, aux_sym_of_token1, - [98222] = 6, + [98799] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2965), 1, + ACTIONS(1449), 1, aux_sym_variable_definition_token4, - STATE(1935), 2, + ACTIONS(1455), 1, + aux_sym_property_definition_token1, + STATE(1948), 2, sym_comment, sym_include, - ACTIONS(2963), 12, + ACTIONS(1447), 11, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, @@ -127058,1716 +128034,2047 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_serialization_tuning_token2, aux_sym_variable_definition_token3, aux_sym_buffer_definition_token3, - aux_sym_property_definition_token1, - [98253] = 10, + [98832] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2967), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2969), 1, - aux_sym_query_definition_token1, - STATE(1953), 1, - aux_sym_buffer_definition_repeat1, - STATE(1936), 2, + ACTIONS(2968), 1, + aux_sym__using_and_token1, + STATE(1941), 1, + aux_sym_can_find_expression_repeat1, + STATE(2122), 1, + sym__using_and, + STATE(1949), 2, sym_comment, sym_include, - STATE(2250), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [98291] = 14, + ACTIONS(2997), 10, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + [98867] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(2999), 1, sym__terminator, - ACTIONS(2975), 1, + ACTIONS(3003), 1, aux_sym_variable_definition_token6, - ACTIONS(2977), 1, - anon_sym_LIKE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - STATE(2292), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, - sym_temp_table_tuning, - STATE(2550), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1937), 2, - sym_comment, - sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [98337] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1238), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2983), 1, - sym__terminator, - STATE(1951), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1234), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1938), 2, - sym_comment, - sym_include, - ACTIONS(1236), 6, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - [98375] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(2985), 1, - sym__terminator, - ACTIONS(2987), 1, - aux_sym_variable_definition_token6, - STATE(1993), 1, + STATE(2001), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2681), 1, + STATE(2637), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1939), 2, + STATE(1950), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [98421] = 14, + [98913] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(2989), 1, + ACTIONS(3011), 1, sym__terminator, - ACTIONS(2991), 1, + ACTIONS(3013), 1, aux_sym_variable_definition_token6, - STATE(1937), 1, + STATE(2281), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2632), 1, + STATE(2582), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1940), 2, + STATE(1951), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [98467] = 10, + [98959] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2993), 1, + ACTIONS(3021), 2, aux_sym_buffer_definition_token1, - ACTIONS(2995), 1, aux_sym_query_definition_token1, - STATE(1953), 1, - aux_sym_buffer_definition_repeat1, - STATE(1941), 2, - sym_comment, - sym_include, - STATE(2250), 2, + STATE(2266), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1346), 3, + ACTIONS(3018), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1344), 4, + STATE(1952), 3, + sym_comment, + sym_include, + aux_sym_buffer_definition_repeat1, + ACTIONS(3015), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [98505] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2977), 1, - anon_sym_LIKE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(2989), 1, - sym__terminator, - ACTIONS(2991), 1, - aux_sym_variable_definition_token6, - STATE(2292), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, - sym_temp_table_tuning, - STATE(2632), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1942), 2, - sym_comment, - sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [98551] = 12, + [98993] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2997), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3023), 1, sym__terminator, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(2056), 1, + STATE(2106), 1, sym__pre_tuning, - STATE(2265), 1, + STATE(2274), 1, aux_sym_for_phrase_repeat1, - STATE(2303), 1, + STATE(2275), 1, sym_where_clause, - STATE(1943), 2, + STATE(1953), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [98593] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1238), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(2999), 1, - sym__terminator, - STATE(1951), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1234), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1944), 2, - sym_comment, - sym_include, - ACTIONS(1236), 6, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - [98631] = 14, + [99035] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3001), 1, + ACTIONS(3025), 1, sym__terminator, - ACTIONS(3003), 1, + ACTIONS(3027), 1, aux_sym_variable_definition_token6, - STATE(2292), 1, + STATE(1966), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2652), 1, + STATE(2686), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1945), 2, + STATE(1954), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [98677] = 14, + [99081] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3001), 1, + ACTIONS(3025), 1, sym__terminator, - ACTIONS(3003), 1, + ACTIONS(3027), 1, aux_sym_variable_definition_token6, - STATE(1980), 1, + STATE(2281), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2652), 1, + STATE(2686), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1946), 2, + STATE(1955), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [98723] = 15, - ACTIONS(3), 1, + [99127] = 10, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2598), 1, - aux_sym_while_phrase_token1, - ACTIONS(3005), 1, - anon_sym_COLON, - ACTIONS(3007), 1, - aux_sym_on_error_phrase_token1, - STATE(2457), 1, - sym_to_phrase, - STATE(2850), 1, - sym_while_phrase, - STATE(3032), 1, - sym_on_error_phrase, - STATE(3050), 1, - sym_on_quit_phrase, - STATE(4254), 1, - sym_on_stop_phrase, - STATE(4645), 1, - sym_assignment, - STATE(1947), 2, + ACTIONS(1256), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3029), 1, + sym__terminator, + STATE(1978), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2144), 1, + sym_input_stream_tuning, + ACTIONS(1252), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1956), 2, sym_comment, sym_include, - STATE(4699), 2, - sym_qualified_name, - sym_object_access, - [98771] = 14, + ACTIONS(1254), 6, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + [99165] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3031), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(2084), 1, + sym__pre_tuning, + STATE(2286), 1, + aux_sym_for_phrase_repeat1, + STATE(2289), 1, + sym_where_clause, + STATE(1957), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [99207] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(1256), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3033), 1, + sym__terminator, + STATE(1978), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2144), 1, + sym_input_stream_tuning, + ACTIONS(1252), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1958), 2, + sym_comment, + sym_include, + ACTIONS(1254), 6, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + [99245] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3035), 1, sym__terminator, - ACTIONS(3011), 1, + ACTIONS(3037), 1, aux_sym_variable_definition_token6, - STATE(1945), 1, + STATE(1963), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2530), 1, + STATE(2607), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1948), 2, + STATE(1959), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [98817] = 14, + [99291] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3039), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(2056), 1, + sym__pre_tuning, + STATE(2227), 1, + sym_where_clause, + STATE(2228), 1, + aux_sym_for_phrase_repeat1, + STATE(1960), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [99333] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3041), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(2133), 1, + sym__pre_tuning, + STATE(2327), 1, + aux_sym_for_phrase_repeat1, + STATE(2328), 1, + sym_where_clause, + STATE(1961), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [99375] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1256), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3043), 1, + sym__terminator, + STATE(1978), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2144), 1, + sym_input_stream_tuning, + ACTIONS(1252), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1962), 2, + sym_comment, + sym_include, + ACTIONS(1254), 6, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + [99413] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(2985), 1, + ACTIONS(3045), 1, sym__terminator, - ACTIONS(2987), 1, + ACTIONS(3047), 1, aux_sym_variable_definition_token6, - STATE(2292), 1, + STATE(2281), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2681), 1, + STATE(2597), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1949), 2, + STATE(1963), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [98863] = 15, - ACTIONS(3), 1, + [99459] = 14, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2598), 1, - aux_sym_while_phrase_token1, + ACTIONS(3005), 1, + anon_sym_LIKE, ACTIONS(3007), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3013), 1, - anon_sym_COLON, - STATE(2463), 1, - sym_to_phrase, - STATE(2842), 1, - sym_while_phrase, - STATE(3006), 1, - sym_on_error_phrase, - STATE(3136), 1, - sym_on_quit_phrase, - STATE(4078), 1, - sym_on_stop_phrase, - STATE(4645), 1, - sym_assignment, - STATE(1950), 2, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3045), 1, + sym__terminator, + ACTIONS(3047), 1, + aux_sym_variable_definition_token6, + STATE(1951), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2517), 1, + sym_temp_table_tuning, + STATE(2597), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3001), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1964), 2, sym_comment, sym_include, - STATE(4699), 2, - sym_qualified_name, - sym_object_access, - [98911] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [99505] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3015), 1, - sym__terminator, - ACTIONS(3023), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - STATE(2155), 1, + ACTIONS(3049), 1, + sym__terminator, + STATE(1978), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(3017), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1951), 3, + STATE(1965), 2, sym_comment, sym_include, - aux_sym_input_stream_statement_repeat1, - ACTIONS(3020), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - [98947] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - STATE(2151), 1, - sym_while_phrase, - STATE(2164), 1, - aux_sym_do_block_repeat1, - STATE(2862), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(1952), 2, - sym_comment, - sym_include, - STATE(4120), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [98993] = 8, + [99543] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3042), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(2250), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(3039), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1953), 3, + ACTIONS(3005), 1, + anon_sym_LIKE, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3051), 1, + sym__terminator, + ACTIONS(3053), 1, + aux_sym_variable_definition_token6, + STATE(2281), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2517), 1, + sym_temp_table_tuning, + STATE(2706), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3001), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1966), 2, sym_comment, sym_include, - aux_sym_buffer_definition_repeat1, - ACTIONS(3036), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [99027] = 14, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [99589] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(2999), 1, + sym__terminator, + ACTIONS(3003), 1, + aux_sym_variable_definition_token6, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3044), 1, - sym__terminator, - ACTIONS(3046), 1, - aux_sym_variable_definition_token6, - STATE(2292), 1, + STATE(2281), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2692), 1, + STATE(2637), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1954), 2, + STATE(1967), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [99073] = 14, + [99635] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3048), 1, - anon_sym_COLON, - STATE(2194), 1, - sym_while_phrase, - STATE(2196), 1, - aux_sym_do_block_repeat1, - STATE(2823), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(1955), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3055), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(2075), 1, + sym__pre_tuning, + STATE(2256), 1, + aux_sym_for_phrase_repeat1, + STATE(2257), 1, + sym_where_clause, + STATE(1968), 2, sym_comment, sym_include, - STATE(4289), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [99119] = 10, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [99677] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3050), 1, + ACTIONS(3057), 1, sym__terminator, - STATE(1951), 1, + STATE(1978), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1956), 2, + STATE(1969), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - [99157] = 14, + [99715] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, - anon_sym_LIKE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3052), 1, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3059), 1, sym__terminator, - ACTIONS(3054), 1, - aux_sym_variable_definition_token6, STATE(1942), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, - sym_temp_table_tuning, - STATE(2686), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1957), 2, + sym_query_tuning, + STATE(2094), 1, + sym__pre_tuning, + STATE(2320), 1, + sym_where_clause, + STATE(2321), 1, + aux_sym_for_phrase_repeat1, + STATE(1970), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [99203] = 10, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [99757] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3056), 1, + ACTIONS(3061), 1, aux_sym_buffer_definition_token1, - ACTIONS(3058), 1, + ACTIONS(3063), 1, aux_sym_query_definition_token1, - STATE(1953), 1, + STATE(1952), 1, aux_sym_buffer_definition_repeat1, - STATE(1958), 2, + STATE(1971), 2, sym_comment, sym_include, - STATE(2250), 2, + STATE(2266), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1344), 4, + ACTIONS(1356), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [99241] = 6, - ACTIONS(3), 1, + [99795] = 14, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3060), 1, - sym__namedot, - STATE(1959), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(79), 10, - sym_identifier, - anon_sym_COMMA, + ACTIONS(3065), 1, anon_sym_COLON, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [99271] = 15, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + STATE(2136), 1, + aux_sym_do_block_repeat1, + STATE(2189), 1, + sym_while_phrase, + STATE(2833), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(1972), 2, + sym_comment, + sym_include, + STATE(4478), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [99841] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1449), 1, + aux_sym_variable_definition_token4, + STATE(1973), 2, + sym_comment, + sym_include, + ACTIONS(1447), 11, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + [99871] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, + anon_sym_LIKE, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3075), 1, + sym__terminator, + ACTIONS(3077), 1, + aux_sym_variable_definition_token6, + STATE(1955), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2517), 1, + sym_temp_table_tuning, + STATE(2640), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3001), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1974), 2, + sym_comment, + sym_include, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [99917] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, + anon_sym_LIKE, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3079), 1, + sym__terminator, + ACTIONS(3081), 1, + aux_sym_variable_definition_token6, + STATE(2281), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2517), 1, + sym_temp_table_tuning, + STATE(2573), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3001), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1975), 2, + sym_comment, + sym_include, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [99963] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(3007), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3063), 1, + ACTIONS(3083), 1, anon_sym_COLON, - STATE(2492), 1, + ACTIONS(3085), 1, + aux_sym_on_error_phrase_token1, + STATE(2446), 1, sym_to_phrase, - STATE(2827), 1, + STATE(2889), 1, sym_while_phrase, - STATE(3037), 1, + STATE(2941), 1, sym_on_error_phrase, - STATE(3285), 1, + STATE(3328), 1, sym_on_quit_phrase, - STATE(4281), 1, + STATE(4284), 1, sym_on_stop_phrase, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1960), 2, + STATE(1976), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - [99319] = 14, + [100011] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3065), 1, - anon_sym_COLON, - STATE(2184), 1, - sym_while_phrase, - STATE(2187), 1, - aux_sym_do_block_repeat1, - STATE(2696), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(1961), 2, + ACTIONS(3087), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3089), 1, + aux_sym_query_definition_token1, + STATE(1952), 1, + aux_sym_buffer_definition_repeat1, + STATE(1977), 2, sym_comment, sym_include, - STATE(4408), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [99365] = 10, + STATE(2266), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [100049] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1238), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(3067), 1, + ACTIONS(3091), 1, sym__terminator, - STATE(1951), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + ACTIONS(3099), 1, + aux_sym_input_stream_tuning_token9, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(1234), 2, + ACTIONS(3093), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1962), 2, + STATE(1978), 3, sym_comment, sym_include, - ACTIONS(1236), 6, + aux_sym_input_stream_statement_repeat1, + ACTIONS(3096), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - [99403] = 14, + [100085] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3069), 1, - anon_sym_COLON, - STATE(2168), 1, - aux_sym_do_block_repeat1, - STATE(2169), 1, - sym_while_phrase, - STATE(2704), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(1963), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3102), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(2131), 1, + sym__pre_tuning, + STATE(2316), 1, + sym_where_clause, + STATE(2319), 1, + aux_sym_for_phrase_repeat1, + STATE(1979), 2, sym_comment, sym_include, - STATE(4445), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [99449] = 12, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [100127] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3071), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3104), 1, sym__terminator, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(2053), 1, + STATE(2039), 1, sym__pre_tuning, - STATE(2207), 1, + STATE(2250), 1, aux_sym_for_phrase_repeat1, - STATE(2215), 1, + STATE(2252), 1, sym_where_clause, - STATE(1964), 2, + STATE(1980), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [99491] = 7, + [100169] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3075), 1, - aux_sym_input_stream_tuning_token10, - ACTIONS(3077), 1, - aux_sym_input_stream_tuning_token11, - STATE(1965), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3106), 1, + sym__terminator, + STATE(1942), 1, + sym_query_tuning, + STATE(2103), 1, + sym__pre_tuning, + STATE(2288), 1, + aux_sym_for_phrase_repeat1, + STATE(2291), 1, + sym_where_clause, + STATE(1981), 2, sym_comment, sym_include, - ACTIONS(3073), 10, - sym__terminator, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - [99523] = 14, - ACTIONS(59), 1, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [100211] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(2632), 1, + sym_identifier, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(3030), 1, + ACTIONS(3085), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3079), 1, + ACTIONS(3108), 1, anon_sym_COLON, - STATE(2142), 1, + STATE(2480), 1, + sym_to_phrase, + STATE(2867), 1, sym_while_phrase, - STATE(2146), 1, - aux_sym_do_block_repeat1, - STATE(2724), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(1966), 2, - sym_comment, - sym_include, - STATE(4226), 3, + STATE(2953), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(3243), 1, sym_on_quit_phrase, - [99569] = 7, + STATE(4089), 1, + sym_on_stop_phrase, + STATE(4670), 1, + sym_assignment, + STATE(1982), 2, + sym_comment, + sym_include, + STATE(4721), 2, + sym_qualified_name, + sym_object_access, + [100259] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2740), 1, - sym__namedot, - STATE(1959), 1, - aux_sym_qualified_name_repeat1, - STATE(1967), 2, - sym_comment, - sym_include, - ACTIONS(105), 10, + ACTIONS(2632), 1, sym_identifier, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2636), 1, + aux_sym_while_phrase_token1, + ACTIONS(3085), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [99601] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1238), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(3081), 1, - sym__terminator, - STATE(1951), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1234), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1968), 2, + ACTIONS(3110), 1, + anon_sym_COLON, + STATE(2396), 1, + sym_to_phrase, + STATE(2859), 1, + sym_while_phrase, + STATE(2960), 1, + sym_on_error_phrase, + STATE(3162), 1, + sym_on_quit_phrase, + STATE(4301), 1, + sym_on_stop_phrase, + STATE(4670), 1, + sym_assignment, + STATE(1983), 2, sym_comment, sym_include, - ACTIONS(1236), 6, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - [99639] = 12, + STATE(4721), 2, + sym_qualified_name, + sym_object_access, + [100307] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3083), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3112), 1, sym__terminator, - STATE(1933), 1, + STATE(1942), 1, sym_query_tuning, - STATE(2027), 1, + STATE(2115), 1, sym__pre_tuning, - STATE(2324), 1, + STATE(2336), 1, sym_where_clause, - STATE(2327), 1, + STATE(2339), 1, aux_sym_for_phrase_repeat1, - STATE(1969), 2, + STATE(1984), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [99681] = 14, + [100349] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3114), 1, + anon_sym_COLON, + STATE(2187), 1, + aux_sym_do_block_repeat1, + STATE(2190), 1, + sym_while_phrase, + STATE(2813), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(1985), 2, + sym_comment, + sym_include, + STATE(4140), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [100395] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3085), 1, + ACTIONS(3116), 1, sym__terminator, - ACTIONS(3087), 1, + ACTIONS(3118), 1, aux_sym_variable_definition_token6, - STATE(1977), 1, + STATE(2281), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2684), 1, + STATE(2679), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1970), 2, + STATE(1986), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [99727] = 14, + [100441] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3120), 1, + anon_sym_COLON, + STATE(2192), 1, + aux_sym_do_block_repeat1, + STATE(2193), 1, + sym_while_phrase, + STATE(2908), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(1987), 2, + sym_comment, + sym_include, + STATE(4498), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [100487] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3085), 1, + ACTIONS(3122), 1, sym__terminator, - ACTIONS(3087), 1, + ACTIONS(3124), 1, aux_sym_variable_definition_token6, - STATE(2292), 1, + STATE(2010), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2684), 1, + STATE(2588), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1971), 2, + STATE(1988), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [99773] = 12, + [100533] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3089), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2114), 1, - sym__pre_tuning, - STATE(2264), 1, - aux_sym_for_phrase_repeat1, - STATE(2266), 1, - sym_where_clause, - STATE(1972), 2, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3126), 1, + anon_sym_COLON, + STATE(2177), 1, + sym_while_phrase, + STATE(2178), 1, + aux_sym_do_block_repeat1, + STATE(2885), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(1989), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [99815] = 8, - ACTIONS(59), 1, + STATE(4106), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [100579] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1415), 1, - aux_sym_function_parameter_token1, - STATE(4111), 1, - sym_access_tuning, - STATE(1973), 2, + ACTIONS(2632), 1, + sym_identifier, + ACTIONS(2636), 1, + aux_sym_while_phrase_token1, + ACTIONS(3085), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3128), 1, + anon_sym_COLON, + STATE(2422), 1, + sym_to_phrase, + STATE(2893), 1, + sym_while_phrase, + STATE(2935), 1, + sym_on_error_phrase, + STATE(3239), 1, + sym_on_quit_phrase, + STATE(4098), 1, + sym_on_stop_phrase, + STATE(4670), 1, + sym_assignment, + STATE(1990), 2, sym_comment, sym_include, - ACTIONS(3091), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1409), 7, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_buffer_definition_token3, - [99849] = 10, + STATE(4721), 2, + sym_qualified_name, + sym_object_access, + [100627] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3094), 1, + ACTIONS(3130), 1, sym__terminator, - STATE(1951), 1, + STATE(1978), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1974), 2, + STATE(1991), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - [99887] = 15, - ACTIONS(3), 1, + [100665] = 14, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, - sym_identifier, - ACTIONS(2598), 1, - aux_sym_while_phrase_token1, + ACTIONS(3005), 1, + anon_sym_LIKE, ACTIONS(3007), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3096), 1, - anon_sym_COLON, - STATE(2508), 1, - sym_to_phrase, - STATE(2769), 1, - sym_while_phrase, - STATE(2935), 1, - sym_on_error_phrase, - STATE(3479), 1, - sym_on_quit_phrase, - STATE(4541), 1, - sym_on_stop_phrase, - STATE(4645), 1, - sym_assignment, - STATE(1975), 2, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3132), 1, + sym__terminator, + ACTIONS(3134), 1, + aux_sym_variable_definition_token6, + STATE(1986), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2517), 1, + sym_temp_table_tuning, + STATE(2693), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3001), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1992), 2, sym_comment, sym_include, - STATE(4699), 2, - sym_qualified_name, - sym_object_access, - [99935] = 15, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [100711] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3085), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3098), 1, + ACTIONS(3136), 1, anon_sym_COLON, - STATE(2504), 1, + STATE(2502), 1, sym_to_phrase, - STATE(2758), 1, + STATE(2846), 1, sym_while_phrase, - STATE(2970), 1, + STATE(2971), 1, sym_on_error_phrase, - STATE(3354), 1, + STATE(3518), 1, sym_on_quit_phrase, - STATE(4267), 1, + STATE(4532), 1, sym_on_stop_phrase, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1976), 2, + STATE(1993), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - [99983] = 14, + [100759] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3100), 1, + ACTIONS(3138), 1, sym__terminator, - ACTIONS(3102), 1, + ACTIONS(3140), 1, aux_sym_variable_definition_token6, - STATE(2292), 1, + STATE(1967), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2679), 1, + STATE(2611), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1977), 2, + STATE(1994), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [100029] = 14, + [100805] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3067), 1, aux_sym_while_phrase_token1, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3104), 1, + ACTIONS(3142), 1, anon_sym_COLON, - STATE(2159), 1, + STATE(2142), 1, sym_while_phrase, - STATE(2160), 1, + STATE(2151), 1, aux_sym_do_block_repeat1, - STATE(2761), 1, + STATE(2717), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(1978), 2, + STATE(1995), 2, sym_comment, sym_include, - STATE(4260), 3, + STATE(4363), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [100075] = 10, + [100851] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1238), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(3106), 1, - sym__terminator, - STATE(1951), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1234), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(1979), 2, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3144), 1, + anon_sym_COLON, + STATE(2203), 1, + aux_sym_do_block_repeat1, + STATE(2212), 1, + sym_while_phrase, + STATE(2771), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(1996), 2, + sym_comment, + sym_include, + STATE(4235), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [100897] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3148), 1, + aux_sym_input_stream_tuning_token10, + ACTIONS(3150), 1, + aux_sym_input_stream_tuning_token11, + STATE(1997), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(3146), 10, + sym__terminator, + aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - [100113] = 14, + aux_sym_input_stream_tuning_token9, + [100929] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, - anon_sym_LIKE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3108), 1, - sym__terminator, - ACTIONS(3110), 1, - aux_sym_variable_definition_token6, - STATE(2292), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, - sym_temp_table_tuning, - STATE(2586), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1980), 2, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3152), 1, + anon_sym_COLON, + STATE(2198), 1, + sym_while_phrase, + STATE(2200), 1, + aux_sym_do_block_repeat1, + STATE(2881), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(1998), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [100159] = 6, + STATE(4482), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [100975] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1411), 1, - aux_sym_variable_definition_token4, - STATE(1981), 2, + ACTIONS(1256), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3154), 1, + sym__terminator, + STATE(1978), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2144), 1, + sym_input_stream_tuning, + ACTIONS(1252), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1999), 2, sym_comment, sym_include, - ACTIONS(1409), 11, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - [100189] = 10, + ACTIONS(1254), 6, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + [101013] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3112), 1, + ACTIONS(3156), 1, sym__terminator, - STATE(1951), 1, + STATE(1978), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1982), 2, + STATE(2000), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - [100227] = 12, + [101051] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3114), 1, + ACTIONS(3005), 1, + anon_sym_LIKE, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3158), 1, sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2074), 1, - sym__pre_tuning, - STATE(2241), 1, - aux_sym_for_phrase_repeat1, - STATE(2243), 1, - sym_where_clause, - STATE(1983), 2, + ACTIONS(3160), 1, + aux_sym_variable_definition_token6, + STATE(2281), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2517), 1, + sym_temp_table_tuning, + STATE(2544), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3001), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2001), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [100269] = 15, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [101097] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3162), 1, + anon_sym_COLON, + STATE(2167), 1, + sym_while_phrase, + STATE(2168), 1, + aux_sym_do_block_repeat1, + STATE(2817), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(2002), 2, + sym_comment, + sym_include, + STATE(4309), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [101143] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3085), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3116), 1, + ACTIONS(3164), 1, anon_sym_COLON, - STATE(2482), 1, + STATE(2535), 1, sym_to_phrase, - STATE(2833), 1, + STATE(2798), 1, sym_while_phrase, - STATE(2906), 1, + STATE(3018), 1, sym_on_error_phrase, - STATE(3497), 1, + STATE(3319), 1, sym_on_quit_phrase, - STATE(4643), 1, + STATE(4244), 1, sym_on_stop_phrase, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1984), 2, + STATE(2003), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - [100317] = 12, + [101191] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3118), 1, + ACTIONS(1256), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3166), 1, sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2033), 1, - sym__pre_tuning, - STATE(2304), 1, - aux_sym_for_phrase_repeat1, - STATE(2307), 1, - sym_where_clause, - STATE(1985), 2, + STATE(1978), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2144), 1, + sym_input_stream_tuning, + ACTIONS(1252), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(2004), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [100359] = 14, + ACTIONS(1254), 6, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + [101229] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3168), 1, + sym__namedot, + STATE(2005), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(98), 10, + sym_identifier, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [101259] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3120), 1, + ACTIONS(3116), 1, sym__terminator, - ACTIONS(3122), 1, + ACTIONS(3118), 1, aux_sym_variable_definition_token6, - STATE(1949), 1, + STATE(2009), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2568), 1, + STATE(2679), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1986), 2, + STATE(2006), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [100405] = 15, + [101305] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2710), 1, + sym__namedot, + STATE(2005), 1, + aux_sym_qualified_name_repeat1, + STATE(2007), 2, + sym_comment, + sym_include, + ACTIONS(79), 10, sym_identifier, - ACTIONS(2598), 1, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [101337] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2632), 1, + sym_identifier, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3085), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3124), 1, + ACTIONS(3171), 1, anon_sym_COLON, - STATE(2487), 1, + STATE(2542), 1, sym_to_phrase, - STATE(2746), 1, + STATE(2749), 1, sym_while_phrase, - STATE(2963), 1, + STATE(3054), 1, sym_on_error_phrase, - STATE(3364), 1, + STATE(3531), 1, sym_on_quit_phrase, - STATE(4291), 1, + STATE(4579), 1, sym_on_stop_phrase, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1987), 2, + STATE(2008), 2, + sym_comment, + sym_include, + STATE(4721), 2, + sym_qualified_name, + sym_object_access, + [101385] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, + anon_sym_LIKE, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3173), 1, + sym__terminator, + ACTIONS(3175), 1, + aux_sym_variable_definition_token6, + STATE(2281), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2517), 1, + sym_temp_table_tuning, + STATE(2656), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3001), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2009), 2, + sym_comment, + sym_include, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [101431] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3005), 1, + anon_sym_LIKE, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3177), 1, + sym__terminator, + ACTIONS(3179), 1, + aux_sym_variable_definition_token6, + STATE(2281), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2517), 1, + sym_temp_table_tuning, + STATE(2642), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3001), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2010), 2, + sym_comment, + sym_include, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [101477] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3181), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3183), 1, + aux_sym_query_definition_token1, + STATE(1952), 1, + aux_sym_buffer_definition_repeat1, + STATE(2011), 2, sym_comment, sym_include, - STATE(4699), 2, - sym_qualified_name, - sym_object_access, - [100453] = 14, + STATE(2266), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [101515] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, + ACTIONS(3005), 1, anon_sym_LIKE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3126), 1, + ACTIONS(3177), 1, sym__terminator, - ACTIONS(3128), 1, + ACTIONS(3179), 1, aux_sym_variable_definition_token6, - STATE(2008), 1, + STATE(1975), 1, aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, + STATE(2517), 1, sym_temp_table_tuning, - STATE(2620), 1, + STATE(2642), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, + ACTIONS(3001), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1988), 2, + STATE(2012), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [100499] = 14, + [101561] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - STATE(2177), 1, - sym_while_phrase, - STATE(2199), 1, - aux_sym_do_block_repeat1, - STATE(2829), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(1989), 2, + ACTIONS(1453), 1, + aux_sym_function_parameter_token1, + STATE(4212), 1, + sym_access_tuning, + STATE(2013), 2, sym_comment, sym_include, - STATE(4284), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [100545] = 14, + ACTIONS(3185), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1447), 7, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_buffer_definition_token3, + [101595] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3132), 1, - anon_sym_COLON, - STATE(2120), 1, - aux_sym_do_block_repeat1, - STATE(2200), 1, - sym_while_phrase, - STATE(2846), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(1990), 2, + ACTIONS(3188), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3190), 1, + aux_sym_query_definition_token1, + STATE(1952), 1, + aux_sym_buffer_definition_repeat1, + STATE(2014), 2, sym_comment, sym_include, - STATE(4086), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [100591] = 14, + STATE(2266), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1358), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1356), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [101633] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3067), 1, aux_sym_while_phrase_token1, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3134), 1, + ACTIONS(3192), 1, anon_sym_COLON, - STATE(2150), 1, + STATE(2138), 1, aux_sym_do_block_repeat1, - STATE(2156), 1, + STATE(2143), 1, sym_while_phrase, - STATE(2741), 1, + STATE(2748), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(1991), 2, + STATE(2015), 2, sym_comment, sym_include, - STATE(4500), 3, + STATE(4343), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [100637] = 5, + [101679] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1992), 2, + STATE(2016), 2, sym_comment, sym_include, - ACTIONS(3136), 12, + ACTIONS(3194), 12, sym__terminator, anon_sym_COMMA, + aux_sym_function_call_token1, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_query_tuning_token1, @@ -128775,848 +130082,707 @@ static const uint16_t ts_small_parse_table[] = { 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, - [100665] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2977), 1, - anon_sym_LIKE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3138), 1, - sym__terminator, - ACTIONS(3140), 1, - aux_sym_variable_definition_token6, - STATE(2292), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, - sym_temp_table_tuning, - STATE(2671), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1993), 2, - sym_comment, - sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [100711] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3142), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2062), 1, - sym__pre_tuning, - STATE(2227), 1, - aux_sym_for_phrase_repeat1, - STATE(2229), 1, - sym_where_clause, - STATE(1994), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [100753] = 15, + [101707] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3085), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3144), 1, + ACTIONS(3196), 1, anon_sym_COLON, - STATE(2371), 1, + STATE(2497), 1, sym_to_phrase, - STATE(2703), 1, + STATE(2907), 1, sym_while_phrase, - STATE(2980), 1, + STATE(2923), 1, sym_on_error_phrase, - STATE(3323), 1, + STATE(3070), 1, sym_on_quit_phrase, - STATE(4432), 1, + STATE(4669), 1, sym_on_stop_phrase, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(1995), 2, + STATE(2017), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - [100801] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3146), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2030), 1, - sym__pre_tuning, - STATE(2298), 1, - aux_sym_for_phrase_repeat1, - STATE(2330), 1, - sym_where_clause, - STATE(1996), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [100843] = 10, + [101755] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1238), 1, + ACTIONS(1256), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3148), 1, + ACTIONS(3198), 1, sym__terminator, - STATE(1951), 1, + STATE(1978), 1, aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, + STATE(2144), 1, sym_input_stream_tuning, - ACTIONS(1234), 2, + ACTIONS(1252), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1997), 2, + STATE(2018), 2, sym_comment, sym_include, - ACTIONS(1236), 6, + ACTIONS(1254), 6, aux_sym_input_stream_tuning_token2, aux_sym_input_stream_tuning_token3, aux_sym_input_stream_tuning_token4, aux_sym_input_stream_tuning_token6, aux_sym_input_stream_tuning_token7, aux_sym_input_stream_tuning_token8, - [100881] = 12, + [101793] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3150), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2088), 1, - sym__pre_tuning, - STATE(2269), 1, - aux_sym_for_phrase_repeat1, - STATE(2296), 1, - sym_where_clause, - STATE(1998), 2, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3200), 1, + anon_sym_COLON, + STATE(2194), 1, + aux_sym_do_block_repeat1, + STATE(2204), 1, + sym_while_phrase, + STATE(2810), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(2019), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [100923] = 10, + STATE(4198), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [101839] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3152), 1, + ACTIONS(3202), 1, aux_sym_buffer_definition_token1, - ACTIONS(3154), 1, + ACTIONS(3204), 1, aux_sym_query_definition_token1, - STATE(1953), 1, + STATE(1952), 1, aux_sym_buffer_definition_repeat1, - STATE(1999), 2, + STATE(2020), 2, sym_comment, sym_include, - STATE(2250), 2, + STATE(2266), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1346), 3, + ACTIONS(1358), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1344), 4, + ACTIONS(1356), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [100961] = 15, + [101877] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3085), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3156), 1, + ACTIONS(3206), 1, anon_sym_COLON, - STATE(2438), 1, + STATE(2533), 1, sym_to_phrase, - STATE(2750), 1, + STATE(2896), 1, sym_while_phrase, - STATE(2943), 1, + STATE(2933), 1, sym_on_error_phrase, - STATE(3469), 1, + STATE(3168), 1, sym_on_quit_phrase, - STATE(4509), 1, + STATE(4274), 1, sym_on_stop_phrase, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(2000), 2, + STATE(2021), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - [101009] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3158), 1, - anon_sym_COLON, - STATE(2165), 1, - sym_while_phrase, - STATE(2176), 1, - aux_sym_do_block_repeat1, - STATE(2812), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(2001), 2, - sym_comment, - sym_include, - STATE(4323), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [101055] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3160), 1, - sym__terminator, - STATE(1933), 1, - sym_query_tuning, - STATE(2051), 1, - sym__pre_tuning, - STATE(2221), 1, - aux_sym_for_phrase_repeat1, - STATE(2222), 1, - sym_where_clause, - STATE(2002), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [101097] = 15, + [101925] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2594), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2598), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3085), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3162), 1, + ACTIONS(3208), 1, anon_sym_COLON, - STATE(2480), 1, + STATE(2523), 1, sym_to_phrase, - STATE(2835), 1, + STATE(2725), 1, sym_while_phrase, - STATE(2999), 1, + STATE(3002), 1, sym_on_error_phrase, - STATE(3166), 1, + STATE(3087), 1, sym_on_quit_phrase, - STATE(4064), 1, + STATE(4533), 1, sym_on_stop_phrase, - STATE(4645), 1, + STATE(4670), 1, sym_assignment, - STATE(2003), 2, + STATE(2022), 2, sym_comment, sym_include, - STATE(4699), 2, + STATE(4721), 2, sym_qualified_name, sym_object_access, - [101145] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2977), 1, - anon_sym_LIKE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3164), 1, - sym__terminator, - ACTIONS(3166), 1, - aux_sym_variable_definition_token6, - STATE(1971), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, - sym_temp_table_tuning, - STATE(2567), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2004), 2, - sym_comment, - sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [101191] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1238), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(3168), 1, - sym__terminator, - STATE(1951), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2155), 1, - sym_input_stream_tuning, - ACTIONS(1234), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(2005), 2, - sym_comment, - sym_include, - ACTIONS(1236), 6, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - [101229] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3170), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3172), 1, - aux_sym_query_definition_token1, - STATE(1953), 1, - aux_sym_buffer_definition_repeat1, - STATE(2006), 2, - sym_comment, - sym_include, - STATE(2250), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1346), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1344), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [101267] = 14, + [101973] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, - anon_sym_LIKE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3174), 1, - sym__terminator, - ACTIONS(3176), 1, - aux_sym_variable_definition_token6, - STATE(1954), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, - sym_temp_table_tuning, - STATE(2657), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2007), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2447), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2584), 1, + sym_on_error_phrase, + STATE(2830), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3200), 1, + sym_on_stop_phrase, + STATE(3201), 1, + aux_sym_for_statement_repeat1, + STATE(2023), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [101313] = 14, + [102020] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2977), 1, - anon_sym_LIKE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3174), 1, - sym__terminator, - ACTIONS(3176), 1, - aux_sym_variable_definition_token6, - STATE(2292), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2521), 1, - sym_temp_table_tuning, - STATE(2657), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(2973), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2008), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2455), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2678), 1, + sym_on_error_phrase, + STATE(2721), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3428), 1, + sym_on_stop_phrase, + STATE(3434), 1, + aux_sym_for_statement_repeat1, + STATE(2024), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [101359] = 5, + [102067] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2009), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2600), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2559), 1, + sym_on_error_phrase, + STATE(2756), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3118), 1, + sym_on_stop_phrase, + STATE(3119), 1, + aux_sym_for_statement_repeat1, + STATE(2025), 2, sym_comment, sym_include, - ACTIONS(3178), 11, - anon_sym_RPAREN, - aux_sym_using_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_and_token1, - [101386] = 6, + [102114] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3331), 1, - sym_accumulate_aggregate, - STATE(2010), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3031), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2286), 1, + aux_sym_for_phrase_repeat1, + STATE(2289), 1, + sym_where_clause, + STATE(2026), 2, sym_comment, sym_include, - ACTIONS(3180), 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, - [101415] = 6, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [102153] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(517), 1, - sym_accumulate_aggregate, - STATE(2011), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3212), 1, + anon_sym_COMMA, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2325), 1, + aux_sym_inherits_repeat1, + STATE(2027), 2, sym_comment, sym_include, - ACTIONS(3182), 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, - [101444] = 10, + ACTIONS(3210), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [102188] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3184), 1, + ACTIONS(3214), 1, sym_identifier, - STATE(2070), 1, + STATE(2031), 1, aux_sym_sort_clause_repeat1, - STATE(2669), 1, + STATE(2621), 1, sym_sort_column, - STATE(4199), 1, + STATE(4296), 1, sym_object_access, - STATE(2012), 2, + STATE(2028), 2, sym_comment, sym_include, - STATE(2064), 2, + STATE(2071), 2, sym_qualified_name, sym_function_call, - ACTIONS(3186), 5, + ACTIONS(3216), 5, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [101481] = 15, + [102225] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3212), 1, anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2536), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2538), 1, - sym_on_error_phrase, - STATE(2720), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3302), 1, - aux_sym_for_statement_repeat1, - STATE(3303), 1, - sym_on_stop_phrase, - STATE(2013), 2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2324), 1, + aux_sym_inherits_repeat1, + STATE(2029), 2, sym_comment, sym_include, - [101528] = 11, + ACTIONS(3218), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [102260] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3150), 1, + ACTIONS(2974), 1, + aux_sym_variable_tuning_token1, + STATE(2109), 1, + aux_sym_field_definition_repeat1, + STATE(2283), 1, + sym_field_option, + ACTIONS(2978), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(2030), 2, + sym_comment, + sym_include, + ACTIONS(2972), 3, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2269), 1, - aux_sym_for_phrase_repeat1, - STATE(2296), 1, - sym_where_clause, - STATE(2014), 2, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(2976), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + [102297] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3220), 1, + sym_identifier, + STATE(2621), 1, + sym_sort_column, + STATE(4296), 1, + sym_object_access, + STATE(2071), 2, + sym_qualified_name, + sym_function_call, + STATE(2031), 3, sym_comment, sym_include, - ACTIONS(1193), 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, - [101567] = 15, - ACTIONS(59), 1, + aux_sym_sort_clause_repeat1, + ACTIONS(3223), 5, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [102332] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(100), 1, + sym__namedot, + STATE(2032), 2, + sym_comment, + sym_include, + ACTIONS(98), 10, + sym_identifier, anon_sym_COMMA, - ACTIONS(2094), 1, + anon_sym_COLON, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, aux_sym_sort_clause_token2, - ACTIONS(2568), 1, + [102361] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3214), 1, + sym_identifier, + STATE(2031), 1, + aux_sym_sort_clause_repeat1, + STATE(2621), 1, + sym_sort_column, + STATE(4296), 1, + sym_object_access, + STATE(2033), 2, + sym_comment, + sym_include, + STATE(2071), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3225), 5, + anon_sym_COMMA, anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2614), 1, - sym_on_error_phrase, - STATE(2729), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3403), 1, - sym_on_stop_phrase, - STATE(3404), 1, - aux_sym_for_statement_repeat1, - STATE(2015), 2, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [102398] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2974), 1, + aux_sym_variable_tuning_token1, + STATE(2110), 1, + aux_sym_field_definition_repeat1, + STATE(2283), 1, + sym_field_option, + ACTIONS(2978), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(2034), 2, sym_comment, sym_include, - [101614] = 11, + ACTIONS(2976), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + ACTIONS(3227), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [102435] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2590), 1, - aux_sym_method_definition_token1, - ACTIONS(3188), 1, - aux_sym__block_terminator_token1, - ACTIONS(3190), 1, - aux_sym_variable_definition_token1, - ACTIONS(3192), 1, - aux_sym_variable_definition_token2, - STATE(2190), 1, - aux_sym_interface_body_repeat1, - STATE(4451), 1, - sym_interface_body, - STATE(2016), 2, + STATE(457), 1, + sym_accumulate_aggregate, + STATE(2035), 2, sym_comment, sym_include, - STATE(3035), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [101653] = 15, + ACTIONS(3229), 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, + [102464] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2566), 1, + ACTIONS(3231), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2526), 1, + STATE(2568), 1, sym_on_error_phrase, - STATE(2731), 1, + STATE(2787), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3399), 1, + STATE(3113), 1, sym_on_stop_phrase, - STATE(3401), 1, + STATE(3114), 1, aux_sym_for_statement_repeat1, - STATE(2017), 2, + STATE(2036), 2, sym_comment, sym_include, - [101700] = 11, + [102511] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(3190), 1, + ACTIONS(3233), 1, + aux_sym__block_terminator_token1, + ACTIONS(3235), 1, aux_sym_variable_definition_token1, - ACTIONS(3192), 1, + ACTIONS(3237), 1, aux_sym_variable_definition_token2, - ACTIONS(3194), 1, - aux_sym__block_terminator_token1, - STATE(2190), 1, + STATE(2176), 1, aux_sym_interface_body_repeat1, - STATE(4318), 1, + STATE(4338), 1, sym_interface_body, - STATE(2018), 2, + STATE(2037), 2, sym_comment, sym_include, - STATE(3035), 5, + STATE(3034), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [101739] = 15, + [102550] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(3196), 1, + ACTIONS(3239), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2583), 1, + STATE(2557), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2822), 1, + STATE(2745), 1, sym_on_quit_phrase, - STATE(3038), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3120), 1, sym_on_stop_phrase, - STATE(3221), 1, + STATE(3121), 1, aux_sym_for_statement_repeat1, - STATE(2019), 2, + STATE(2038), 2, sym_comment, sym_include, - [101786] = 11, + [102597] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3160), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3241), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2221), 1, + STATE(2218), 1, aux_sym_for_phrase_repeat1, - STATE(2222), 1, + STATE(2284), 1, sym_where_clause, - STATE(2020), 2, + STATE(2039), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [101825] = 6, + [102636] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(4004), 1, + STATE(382), 1, sym_accumulate_aggregate, - STATE(2021), 2, + STATE(2040), 2, + sym_comment, + sym_include, + ACTIONS(3229), 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, + [102665] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3152), 1, + sym_accumulate_aggregate, + STATE(2041), 2, sym_comment, sym_include, - ACTIONS(3180), 10, + ACTIONS(3243), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -129627,83 +130793,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [101854] = 15, + [102694] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(3198), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2603), 1, + STATE(2576), 1, sym_on_error_phrase, - STATE(2733), 1, + STATE(2820), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3392), 1, - sym_on_stop_phrase, - STATE(3393), 1, + STATE(3205), 1, aux_sym_for_statement_repeat1, - STATE(2022), 2, + STATE(3207), 1, + sym_on_stop_phrase, + STATE(2042), 2, sym_comment, sym_include, - [101901] = 15, + [102741] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(3200), 1, + ACTIONS(2594), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2693), 1, + STATE(2552), 1, sym_on_error_phrase, - STATE(2706), 1, + STATE(2773), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3455), 1, + STATE(3122), 1, + sym_on_stop_phrase, + STATE(3123), 1, aux_sym_for_statement_repeat1, - STATE(3456), 1, + STATE(2043), 2, + sym_comment, + sym_include, + [102788] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(3245), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2617), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2880), 1, + sym_on_quit_phrase, + STATE(3355), 1, sym_on_stop_phrase, - STATE(2023), 2, + STATE(3362), 1, + aux_sym_for_statement_repeat1, + STATE(2044), 2, sym_comment, sym_include, - [101948] = 6, + [102835] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(401), 1, + STATE(454), 1, sym_accumulate_aggregate, - STATE(2024), 2, + STATE(2045), 2, sym_comment, sym_include, - ACTIONS(3182), 10, + ACTIONS(3229), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -129714,287 +130912,355 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [101977] = 15, + [102864] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2688), 1, + STATE(2704), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2813), 1, + STATE(2728), 1, sym_on_quit_phrase, - STATE(3102), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3289), 1, sym_on_stop_phrase, - STATE(3103), 1, + STATE(3290), 1, aux_sym_for_statement_repeat1, - STATE(2025), 2, + STATE(2046), 2, sym_comment, sym_include, - [102024] = 15, + [102911] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2564), 1, + ACTIONS(2580), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2596), 1, + STATE(2628), 1, sym_on_error_phrase, - STATE(2734), 1, + STATE(2856), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3389), 1, + STATE(3370), 1, sym_on_stop_phrase, - STATE(3390), 1, + STATE(3371), 1, aux_sym_for_statement_repeat1, - STATE(2026), 2, + STATE(2047), 2, sym_comment, sym_include, - [102071] = 11, + [102958] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3202), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2204), 1, - aux_sym_for_phrase_repeat1, - STATE(2329), 1, - sym_where_clause, - STATE(2027), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(3247), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2677), 1, + sym_on_error_phrase, + STATE(2784), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3413), 1, + aux_sym_for_statement_repeat1, + STATE(3418), 1, + sym_on_stop_phrase, + STATE(2048), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [102110] = 11, + [103005] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(3190), 1, + ACTIONS(3235), 1, aux_sym_variable_definition_token1, - ACTIONS(3192), 1, + ACTIONS(3237), 1, aux_sym_variable_definition_token2, - ACTIONS(3204), 1, + ACTIONS(3249), 1, aux_sym__block_terminator_token1, - STATE(2190), 1, + STATE(2176), 1, aux_sym_interface_body_repeat1, - STATE(4145), 1, + STATE(4480), 1, sym_interface_body, - STATE(2028), 2, + STATE(2049), 2, sym_comment, sym_include, - STATE(3035), 5, + STATE(3034), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [102149] = 11, + [103044] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2590), 1, - aux_sym_method_definition_token1, - ACTIONS(3190), 1, - aux_sym_variable_definition_token1, - ACTIONS(3192), 1, - aux_sym_variable_definition_token2, - ACTIONS(3206), 1, - aux_sym__block_terminator_token1, - STATE(2190), 1, - aux_sym_interface_body_repeat1, - STATE(4169), 1, - sym_interface_body, - STATE(2029), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2592), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2572), 1, + sym_on_error_phrase, + STATE(2822), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3125), 1, + sym_on_stop_phrase, + STATE(3126), 1, + aux_sym_for_statement_repeat1, + STATE(2050), 2, sym_comment, sym_include, - STATE(3035), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [102188] = 11, + [103091] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2451), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2593), 1, + sym_on_error_phrase, + STATE(2732), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3215), 1, + aux_sym_for_statement_repeat1, + STATE(3216), 1, + sym_on_stop_phrase, + STATE(2051), 2, + sym_comment, + sym_include, + [103138] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3208), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3106), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2279), 1, - aux_sym_for_phrase_repeat1, STATE(2288), 1, + aux_sym_for_phrase_repeat1, + STATE(2291), 1, sym_where_clause, - STATE(2030), 2, + STATE(2052), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [102227] = 15, + [103177] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2590), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2617), 1, + STATE(2600), 1, sym_on_error_phrase, - STATE(2728), 1, + STATE(2849), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3407), 1, - sym_on_stop_phrase, - STATE(3408), 1, + STATE(3331), 1, aux_sym_for_statement_repeat1, - STATE(2031), 2, + STATE(3332), 1, + sym_on_stop_phrase, + STATE(2053), 2, sym_comment, sym_include, - [102274] = 15, + [103224] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2558), 1, + ACTIONS(2445), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2655), 1, + STATE(2571), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2866), 1, + STATE(2783), 1, sym_on_quit_phrase, - STATE(3079), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3210), 1, sym_on_stop_phrase, - STATE(3080), 1, + STATE(3211), 1, aux_sym_for_statement_repeat1, - STATE(2032), 2, + STATE(2054), 2, + sym_comment, + sym_include, + [103271] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2622), 1, + aux_sym_method_definition_token1, + ACTIONS(3235), 1, + aux_sym_variable_definition_token1, + ACTIONS(3237), 1, + aux_sym_variable_definition_token2, + ACTIONS(3251), 1, + aux_sym__block_terminator_token1, + STATE(2176), 1, + aux_sym_interface_body_repeat1, + STATE(4206), 1, + sym_interface_body, + STATE(2055), 2, sym_comment, sym_include, - [102321] = 11, + STATE(3034), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [103310] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3210), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3253), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2232), 1, - aux_sym_for_phrase_repeat1, - STATE(2240), 1, + STATE(2326), 1, sym_where_clause, - STATE(2033), 2, + STATE(2329), 1, + aux_sym_for_phrase_repeat1, + STATE(2056), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [102360] = 6, + [103349] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(481), 1, + STATE(403), 1, sym_accumulate_aggregate, - STATE(2034), 2, + STATE(2057), 2, sym_comment, sym_include, - ACTIONS(3182), 10, + ACTIONS(3229), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -130005,19 +131271,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [102389] = 6, + [103378] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(399), 1, + STATE(3151), 1, sym_accumulate_aggregate, - STATE(2035), 2, + STATE(2058), 2, sym_comment, sym_include, - ACTIONS(3182), 10, + ACTIONS(3243), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -130028,306 +131294,323 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [102418] = 11, + [103407] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3142), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3039), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, STATE(2227), 1, - aux_sym_for_phrase_repeat1, - STATE(2229), 1, sym_where_clause, - STATE(2036), 2, + STATE(2228), 1, + aux_sym_for_phrase_repeat1, + STATE(2059), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [102457] = 6, + [103446] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(386), 1, - sym_accumulate_aggregate, - STATE(2037), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2604), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2645), 1, + sym_on_error_phrase, + STATE(2816), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3295), 1, + aux_sym_for_statement_repeat1, + STATE(3317), 1, + sym_on_stop_phrase, + STATE(2060), 2, sym_comment, sym_include, - ACTIONS(3182), 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, - [102486] = 15, + [103493] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3055), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2256), 1, + aux_sym_for_phrase_repeat1, + STATE(2257), 1, + sym_where_clause, + STATE(2061), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [103532] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2572), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2635), 1, + STATE(2619), 1, sym_on_error_phrase, - STATE(2717), 1, - sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3461), 1, - aux_sym_for_statement_repeat1, - STATE(3464), 1, + STATE(2892), 1, + sym_on_quit_phrase, + STATE(3163), 1, sym_on_stop_phrase, - STATE(2038), 2, + STATE(3164), 1, + aux_sym_for_statement_repeat1, + STATE(2062), 2, sym_comment, sym_include, - [102533] = 15, + [103579] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2562), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2636), 1, + STATE(2673), 1, sym_on_error_phrase, - STATE(2722), 1, + STATE(2788), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3152), 1, + STATE(3471), 1, aux_sym_for_statement_repeat1, - STATE(3292), 1, + STATE(3472), 1, sym_on_stop_phrase, - STATE(2039), 2, + STATE(2063), 2, sym_comment, sym_include, - [102580] = 6, + [103626] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3048), 1, - sym_accumulate_aggregate, - STATE(2040), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2606), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2578), 1, + sym_on_error_phrase, + STATE(2829), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3202), 1, + sym_on_stop_phrase, + STATE(3203), 1, + aux_sym_for_statement_repeat1, + STATE(2064), 2, sym_comment, sym_include, - ACTIONS(3180), 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, - [102609] = 10, + [103673] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2953), 1, - aux_sym_variable_tuning_token1, - STATE(2112), 1, - aux_sym_field_definition_repeat1, - STATE(2208), 1, - sym_field_option, - ACTIONS(2957), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2041), 2, + ACTIONS(2622), 1, + aux_sym_method_definition_token1, + ACTIONS(3235), 1, + aux_sym_variable_definition_token1, + ACTIONS(3237), 1, + aux_sym_variable_definition_token2, + ACTIONS(3255), 1, + aux_sym__block_terminator_token1, + STATE(2176), 1, + aux_sym_interface_body_repeat1, + STATE(4432), 1, + sym_interface_body, + STATE(2065), 2, sym_comment, sym_include, - ACTIONS(2955), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - ACTIONS(3212), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [102646] = 10, + STATE(3034), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [103712] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2953), 1, - aux_sym_variable_tuning_token1, - STATE(2112), 1, - aux_sym_field_definition_repeat1, - STATE(2208), 1, - sym_field_option, - ACTIONS(2957), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2042), 2, - sym_comment, - sym_include, - ACTIONS(2955), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - ACTIONS(3214), 3, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3102), 1, sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [102683] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2544), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2577), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2819), 1, - sym_on_quit_phrase, - STATE(3236), 1, - sym_on_stop_phrase, - STATE(3238), 1, - aux_sym_for_statement_repeat1, - STATE(2043), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2316), 1, + sym_where_clause, + STATE(2319), 1, + aux_sym_for_phrase_repeat1, + STATE(2066), 2, sym_comment, sym_include, - [102730] = 15, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [103751] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(3216), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2588), 1, + STATE(2583), 1, sym_on_error_phrase, - STATE(2742), 1, + STATE(2857), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3382), 1, + STATE(3128), 1, sym_on_stop_phrase, - STATE(3383), 1, + STATE(3129), 1, aux_sym_for_statement_repeat1, - STATE(2044), 2, + STATE(2067), 2, sym_comment, sym_include, - [102777] = 15, + [103798] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(3257), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2528), 1, + STATE(2596), 1, sym_on_error_phrase, - STATE(2794), 1, + STATE(2874), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3091), 1, - sym_on_stop_phrase, - STATE(3092), 1, + STATE(3325), 1, aux_sym_for_statement_repeat1, - STATE(2045), 2, + STATE(3327), 1, + sym_on_stop_phrase, + STATE(2068), 2, sym_comment, sym_include, - [102824] = 5, + [103845] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2046), 2, + STATE(2069), 2, sym_comment, sym_include, - ACTIONS(3218), 11, + ACTIONS(3259), 11, anon_sym_RPAREN, + aux_sym_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -130335,506 +131618,460 @@ static const uint16_t ts_small_parse_table[] = { 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_and_token1, - [102851] = 11, + [103872] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(3190), 1, + ACTIONS(3235), 1, aux_sym_variable_definition_token1, - ACTIONS(3192), 1, + ACTIONS(3237), 1, aux_sym_variable_definition_token2, - ACTIONS(3220), 1, + ACTIONS(3261), 1, aux_sym__block_terminator_token1, - STATE(2190), 1, + STATE(2176), 1, aux_sym_interface_body_repeat1, - STATE(4348), 1, + STATE(4379), 1, sym_interface_body, - STATE(2047), 2, + STATE(2070), 2, sym_comment, sym_include, - STATE(3035), 5, + STATE(3034), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [102890] = 15, + [103911] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2560), 1, + sym_sort_order, + STATE(2071), 2, + sym_comment, + sym_include, + ACTIONS(2708), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + ACTIONS(2704), 6, + sym_identifier, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [103942] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3490), 1, + sym_accumulate_aggregate, + STATE(2072), 2, + sym_comment, + sym_include, + ACTIONS(3243), 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, + [103971] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2570), 1, + ACTIONS(2596), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2619), 1, + STATE(2614), 1, sym_on_error_phrase, - STATE(2727), 1, - sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3412), 1, + STATE(2900), 1, + sym_on_quit_phrase, + STATE(3349), 1, sym_on_stop_phrase, - STATE(3413), 1, + STATE(3350), 1, aux_sym_for_statement_repeat1, - STATE(2048), 2, + STATE(2073), 2, sym_comment, sym_include, - [102937] = 15, + [104018] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(3222), 1, + ACTIONS(3263), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2576), 1, + STATE(2605), 1, sym_on_error_phrase, - STATE(2771), 1, - sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3240), 1, + STATE(2915), 1, + sym_on_quit_phrase, + STATE(3341), 1, sym_on_stop_phrase, - STATE(3244), 1, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(2049), 2, + STATE(2074), 2, sym_comment, sym_include, - [102984] = 11, + [104065] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3118), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2304), 1, - aux_sym_for_phrase_repeat1, - STATE(2307), 1, - sym_where_clause, - STATE(2050), 2, - sym_comment, - sym_include, - ACTIONS(1193), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - [103023] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3224), 1, + ACTIONS(3265), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2203), 1, + STATE(2270), 1, aux_sym_for_phrase_repeat1, - STATE(2328), 1, + STATE(2273), 1, sym_where_clause, - STATE(2051), 2, + STATE(2075), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [103062] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(3226), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2648), 1, - sym_on_error_phrase, - STATE(2708), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3309), 1, - aux_sym_for_statement_repeat1, - STATE(3312), 1, - sym_on_stop_phrase, - STATE(2052), 2, - sym_comment, - sym_include, - [103109] = 11, + [104104] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3228), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3023), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2272), 1, + STATE(2274), 1, aux_sym_for_phrase_repeat1, - STATE(2294), 1, + STATE(2275), 1, sym_where_clause, - STATE(2053), 2, + STATE(2076), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [103148] = 15, + [104143] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2379), 1, + ACTIONS(2588), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2629), 1, + STATE(2602), 1, sym_on_error_phrase, - STATE(2715), 1, - sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3415), 1, - aux_sym_for_statement_repeat1, - STATE(3417), 1, + STATE(2914), 1, + sym_on_quit_phrase, + STATE(3130), 1, sym_on_stop_phrase, - STATE(2054), 2, + STATE(3131), 1, + aux_sym_for_statement_repeat1, + STATE(2077), 2, sym_comment, sym_include, - [103195] = 15, + [104190] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2419), 1, + ACTIONS(2584), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2597), 1, + STATE(2627), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2840), 1, + STATE(2868), 1, sym_on_quit_phrase, - STATE(3142), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3364), 1, sym_on_stop_phrase, - STATE(3299), 1, + STATE(3369), 1, aux_sym_for_statement_repeat1, - STATE(2055), 2, + STATE(2078), 2, sym_comment, sym_include, - [103242] = 11, + [104237] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3230), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2257), 1, - aux_sym_for_phrase_repeat1, - STATE(2258), 1, - sym_where_clause, - STATE(2056), 2, + ACTIONS(2622), 1, + aux_sym_method_definition_token1, + ACTIONS(3235), 1, + aux_sym_variable_definition_token1, + ACTIONS(3237), 1, + aux_sym_variable_definition_token2, + ACTIONS(3267), 1, + aux_sym__block_terminator_token1, + STATE(2176), 1, + aux_sym_interface_body_repeat1, + STATE(4135), 1, + sym_interface_body, + STATE(2079), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [103281] = 15, + STATE(3034), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [104276] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(3232), 1, + ACTIONS(2568), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2642), 1, + STATE(2639), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2864), 1, + STATE(2807), 1, sym_on_quit_phrase, - STATE(3075), 1, - sym_on_stop_phrase, - STATE(3077), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3308), 1, aux_sym_for_statement_repeat1, - STATE(2057), 2, + STATE(3310), 1, + sym_on_stop_phrase, + STATE(2080), 2, sym_comment, sym_include, - [103328] = 15, + [104323] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2542), 1, + ACTIONS(3269), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2549), 1, + STATE(2650), 1, sym_on_error_phrase, - STATE(2776), 1, + STATE(2812), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3313), 1, - aux_sym_for_statement_repeat1, - STATE(3314), 1, + STATE(3261), 1, sym_on_stop_phrase, - STATE(2058), 2, - sym_comment, - sym_include, - [103375] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3146), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2298), 1, - aux_sym_for_phrase_repeat1, - STATE(2330), 1, - sym_where_clause, - STATE(2059), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [103414] = 15, + STATE(3262), 1, + aux_sym_for_statement_repeat1, + STATE(2081), 2, + sym_comment, + sym_include, + [104370] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2546), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2566), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2811), 1, - sym_on_quit_phrase, - STATE(3253), 1, - sym_on_stop_phrase, - STATE(3255), 1, - aux_sym_for_statement_repeat1, - STATE(2060), 2, + ACTIONS(2622), 1, + aux_sym_method_definition_token1, + ACTIONS(3235), 1, + aux_sym_variable_definition_token1, + ACTIONS(3237), 1, + aux_sym_variable_definition_token2, + ACTIONS(3271), 1, + aux_sym__block_terminator_token1, + STATE(2176), 1, + aux_sym_interface_body_repeat1, + STATE(4182), 1, + sym_interface_body, + STATE(2082), 2, sym_comment, sym_include, - [103461] = 15, + STATE(3034), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [104409] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2429), 1, + ACTIONS(2407), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2601), 1, + STATE(2662), 1, sym_on_error_phrase, - STATE(2735), 1, + STATE(2800), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3178), 1, + STATE(3135), 1, aux_sym_for_statement_repeat1, - STATE(3184), 1, + STATE(3136), 1, sym_on_stop_phrase, - STATE(2061), 2, + STATE(2083), 2, sym_comment, sym_include, - [103508] = 11, + [104456] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3234), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3273), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2262), 1, - aux_sym_for_phrase_repeat1, - STATE(2263), 1, + STATE(2312), 1, sym_where_clause, - STATE(2062), 2, + STATE(2333), 1, + aux_sym_for_phrase_repeat1, + STATE(2084), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [103547] = 6, + [104495] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3448), 1, + STATE(357), 1, sym_accumulate_aggregate, - STATE(2063), 2, + STATE(2085), 2, sym_comment, sym_include, - ACTIONS(3180), 10, + ACTIONS(3229), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -130845,65 +132082,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [103576] = 7, - ACTIONS(3), 1, + [104524] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2599), 1, - sym_sort_order, - STATE(2064), 2, + STATE(373), 1, + sym_accumulate_aggregate, + STATE(2086), 2, sym_comment, sym_include, - ACTIONS(2738), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - ACTIONS(2734), 6, - sym_identifier, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [103607] = 5, + ACTIONS(3229), 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, + [104553] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2065), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3104), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2250), 1, + aux_sym_for_phrase_repeat1, + STATE(2252), 1, + sym_where_clause, + STATE(2087), 2, sym_comment, sym_include, - ACTIONS(3236), 11, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(1195), 5, + aux_sym_function_call_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_and_token1, - [103634] = 6, + [104592] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3073), 1, + STATE(3228), 1, sym_accumulate_aggregate, - STATE(2066), 2, + STATE(2088), 2, sym_comment, sym_include, - ACTIONS(3180), 10, + ACTIONS(3243), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -130914,83 +132156,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [103663] = 15, + [104621] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2387), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2685), 1, + STATE(2632), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2898), 1, + STATE(2850), 1, sym_on_quit_phrase, - STATE(3099), 1, - aux_sym_for_statement_repeat1, - STATE(3101), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3379), 1, sym_on_stop_phrase, - STATE(2067), 2, + STATE(3381), 1, + aux_sym_for_statement_repeat1, + STATE(2089), 2, sym_comment, sym_include, - [103710] = 15, + [104668] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2421), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2672), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2883), 1, - sym_on_quit_phrase, - STATE(3087), 1, - sym_on_stop_phrase, - STATE(3088), 1, - aux_sym_for_statement_repeat1, - STATE(2068), 2, + ACTIONS(2622), 1, + aux_sym_method_definition_token1, + ACTIONS(3235), 1, + aux_sym_variable_definition_token1, + ACTIONS(3237), 1, + aux_sym_variable_definition_token2, + ACTIONS(3275), 1, + aux_sym__block_terminator_token1, + STATE(2176), 1, + aux_sym_interface_body_repeat1, + STATE(4264), 1, + sym_interface_body, + STATE(2090), 2, sym_comment, sym_include, - [103757] = 6, + STATE(3034), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [104707] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(352), 1, + STATE(3306), 1, sym_accumulate_aggregate, - STATE(2069), 2, + STATE(2091), 2, sym_comment, sym_include, - ACTIONS(3182), 10, + ACTIONS(3243), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -131001,214 +132239,230 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [103786] = 9, - ACTIONS(3), 1, + [104736] = 15, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3238), 1, - sym_identifier, - STATE(2669), 1, - sym_sort_column, - STATE(4199), 1, - sym_object_access, - STATE(2064), 2, - sym_qualified_name, - sym_function_call, - STATE(2070), 3, - sym_comment, - sym_include, - aux_sym_sort_clause_repeat1, - ACTIONS(3241), 5, + ACTIONS(2097), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - [103821] = 11, + ACTIONS(2576), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2629), 1, + sym_on_error_phrase, + STATE(2864), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3244), 1, + aux_sym_for_statement_repeat1, + STATE(3245), 1, + sym_on_stop_phrase, + STATE(2092), 2, + sym_comment, + sym_include, + [104783] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2997), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2265), 1, - aux_sym_for_phrase_repeat1, - STATE(2303), 1, - sym_where_clause, - STATE(2071), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2425), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2577), 1, + sym_on_error_phrase, + STATE(2759), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3301), 1, + aux_sym_for_statement_repeat1, + STATE(3303), 1, + sym_on_stop_phrase, + STATE(2093), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [103860] = 5, + [104830] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2072), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3277), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2277), 1, + sym_where_clause, + STATE(2278), 1, + aux_sym_for_phrase_repeat1, + STATE(2094), 2, sym_comment, sym_include, - ACTIONS(3243), 11, - anon_sym_RPAREN, - aux_sym_using_statement_token1, - aux_sym_where_clause_token1, + ACTIONS(1195), 5, + aux_sym_function_call_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_and_token1, - [103887] = 15, + [104869] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2413), 1, + ACTIONS(2572), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2543), 1, + STATE(2689), 1, sym_on_error_phrase, - STATE(2757), 1, + STATE(2799), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3351), 1, - aux_sym_for_statement_repeat1, - STATE(3353), 1, + STATE(3266), 1, sym_on_stop_phrase, - STATE(2073), 2, + STATE(3267), 1, + aux_sym_for_statement_repeat1, + STATE(2095), 2, sym_comment, sym_include, - [103934] = 11, - ACTIONS(59), 1, + [104916] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3245), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2308), 1, - sym_where_clause, - STATE(2309), 1, - aux_sym_for_phrase_repeat1, - STATE(2074), 2, + ACTIONS(3279), 1, + aux_sym_function_call_token1, + STATE(2096), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [103973] = 11, + ACTIONS(153), 10, + sym_identifier, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [104945] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3089), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2264), 1, - aux_sym_for_phrase_repeat1, - STATE(2266), 1, - sym_where_clause, - STATE(2075), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(3281), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2599), 1, + sym_on_error_phrase, + STATE(2875), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3184), 1, + sym_on_stop_phrase, + STATE(3185), 1, + aux_sym_for_statement_repeat1, + STATE(2097), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [104012] = 15, + [104992] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2641), 1, sym_on_error_phrase, - STATE(2723), 1, + STATE(2824), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3416), 1, - aux_sym_for_statement_repeat1, - STATE(3418), 1, + STATE(3384), 1, sym_on_stop_phrase, - STATE(2076), 2, + STATE(3385), 1, + aux_sym_for_statement_repeat1, + STATE(2098), 2, sym_comment, sym_include, - [104059] = 5, + [105039] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2077), 2, + STATE(2099), 2, sym_comment, sym_include, - ACTIONS(3247), 11, + ACTIONS(3283), 11, anon_sym_RPAREN, + aux_sym_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, aux_sym_query_tuning_token1, @@ -131216,252 +132470,177 @@ static const uint16_t ts_small_parse_table[] = { 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_and_token1, - [104086] = 15, + [105066] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2548), 1, + ACTIONS(2459), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2563), 1, + STATE(2690), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2807), 1, + STATE(2760), 1, sym_on_quit_phrase, - STATE(3259), 1, - sym_on_stop_phrase, - STATE(3263), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3275), 1, aux_sym_for_statement_repeat1, - STATE(2078), 2, - sym_comment, - sym_include, - [104133] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2953), 1, - aux_sym_variable_tuning_token1, - STATE(2042), 1, - aux_sym_field_definition_repeat1, - STATE(2208), 1, - sym_field_option, - ACTIONS(2957), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2079), 2, + STATE(3277), 1, + sym_on_stop_phrase, + STATE(2100), 2, sym_comment, sym_include, - ACTIONS(2955), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - ACTIONS(3249), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [104170] = 11, + [105113] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2590), 1, - aux_sym_method_definition_token1, - ACTIONS(3190), 1, - aux_sym_variable_definition_token1, - ACTIONS(3192), 1, - aux_sym_variable_definition_token2, - ACTIONS(3251), 1, - aux_sym__block_terminator_token1, - STATE(2190), 1, - aux_sym_interface_body_repeat1, - STATE(4227), 1, - sym_interface_body, - STATE(2080), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2457), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2555), 1, + sym_on_error_phrase, + STATE(2779), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3139), 1, + sym_on_stop_phrase, + STATE(3140), 1, + aux_sym_for_statement_repeat1, + STATE(2101), 2, sym_comment, sym_include, - STATE(3035), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [104209] = 15, + [105160] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2540), 1, + ACTIONS(3285), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2680), 1, + STATE(2701), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2891), 1, + STATE(2793), 1, sym_on_quit_phrase, - STATE(3093), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3268), 1, sym_on_stop_phrase, - STATE(3094), 1, + STATE(3269), 1, aux_sym_for_statement_repeat1, - STATE(2081), 2, + STATE(2102), 2, sym_comment, sym_include, - [104256] = 11, + [105207] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3083), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3287), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2324), 1, + STATE(2341), 1, sym_where_clause, - STATE(2327), 1, + STATE(2342), 1, aux_sym_for_phrase_repeat1, - STATE(2082), 2, + STATE(2103), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [104295] = 15, + [105246] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2560), 1, + ACTIONS(2602), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2650), 1, + STATE(2585), 1, sym_on_error_phrase, - STATE(2718), 1, + STATE(2832), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3318), 1, + STATE(3198), 1, sym_on_stop_phrase, - STATE(2083), 2, - sym_comment, - sym_include, - [104342] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2590), 1, - aux_sym_method_definition_token1, - ACTIONS(3190), 1, - aux_sym_variable_definition_token1, - ACTIONS(3192), 1, - aux_sym_variable_definition_token2, - ACTIONS(3253), 1, - aux_sym__block_terminator_token1, - STATE(2190), 1, - aux_sym_interface_body_repeat1, - STATE(4300), 1, - sym_interface_body, - STATE(2084), 2, - sym_comment, - sym_include, - STATE(3035), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [104381] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym__namedot, - STATE(2085), 2, + STATE(3199), 1, + aux_sym_for_statement_repeat1, + STATE(2104), 2, sym_comment, sym_include, - ACTIONS(79), 10, - sym_identifier, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [104410] = 6, + [105293] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(420), 1, + STATE(452), 1, sym_accumulate_aggregate, - STATE(2086), 2, + STATE(2105), 2, sym_comment, sym_include, - ACTIONS(3182), 10, + ACTIONS(3229), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -131472,1516 +132651,1159 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [104439] = 15, + [105322] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3289), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2317), 1, + aux_sym_for_phrase_repeat1, + STATE(2318), 1, + sym_where_clause, + STATE(2106), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [105361] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2413), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2669), 1, + sym_on_error_phrase, + STATE(2796), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3407), 1, + aux_sym_for_statement_repeat1, + STATE(3416), 1, + sym_on_stop_phrase, + STATE(2107), 2, + sym_comment, + sym_include, + [105408] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2574), 1, + ACTIONS(2570), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2639), 1, + STATE(2675), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2863), 1, + STATE(2775), 1, sym_on_quit_phrase, - STATE(3070), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3271), 1, sym_on_stop_phrase, - STATE(3071), 1, + STATE(3272), 1, aux_sym_for_statement_repeat1, - STATE(2087), 2, + STATE(2108), 2, sym_comment, sym_include, - [104486] = 11, + [105455] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3255), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2254), 1, - sym_where_clause, - STATE(2256), 1, - aux_sym_for_phrase_repeat1, - STATE(2088), 2, + ACTIONS(2974), 1, + aux_sym_variable_tuning_token1, + STATE(2123), 1, + aux_sym_field_definition_repeat1, + STATE(2283), 1, + sym_field_option, + ACTIONS(2978), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(2109), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [104525] = 15, + ACTIONS(2976), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + ACTIONS(3291), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [105492] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(3257), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2611), 1, - sym_on_error_phrase, - STATE(2785), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3501), 1, - aux_sym_for_statement_repeat1, - STATE(3502), 1, - sym_on_stop_phrase, - STATE(2089), 2, + ACTIONS(2974), 1, + aux_sym_variable_tuning_token1, + STATE(2123), 1, + aux_sym_field_definition_repeat1, + STATE(2283), 1, + sym_field_option, + ACTIONS(2978), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(2110), 2, sym_comment, sym_include, - [104572] = 15, + ACTIONS(2976), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + ACTIONS(3293), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [105529] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2433), 1, + ACTIONS(2598), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2556), 1, + STATE(2590), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2799), 1, + STATE(2840), 1, sym_on_quit_phrase, - STATE(3271), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3196), 1, sym_on_stop_phrase, - STATE(3274), 1, + STATE(3197), 1, aux_sym_for_statement_repeat1, - STATE(2090), 2, + STATE(2111), 2, sym_comment, sym_include, - [104619] = 15, + [105576] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(3259), 1, + ACTIONS(2419), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2661), 1, + STATE(2667), 1, sym_on_error_phrase, - STATE(2699), 1, + STATE(2734), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3324), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(3326), 1, + STATE(3286), 1, sym_on_stop_phrase, - STATE(2091), 2, + STATE(2112), 2, sym_comment, sym_include, - [104666] = 10, + [105623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3184), 1, - sym_identifier, - STATE(2070), 1, - aux_sym_sort_clause_repeat1, - STATE(2669), 1, - sym_sort_column, - STATE(4199), 1, - sym_object_access, - STATE(2064), 2, - sym_qualified_name, - sym_function_call, - STATE(2092), 2, + ACTIONS(3295), 1, + aux_sym_function_call_token1, + STATE(2113), 2, sym_comment, sym_include, - ACTIONS(3261), 5, + ACTIONS(127), 10, + sym_identifier, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [104703] = 11, + [105652] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(3190), 1, + ACTIONS(3235), 1, aux_sym_variable_definition_token1, - ACTIONS(3192), 1, + ACTIONS(3237), 1, aux_sym_variable_definition_token2, - ACTIONS(3263), 1, + ACTIONS(3297), 1, aux_sym__block_terminator_token1, - STATE(2190), 1, + STATE(2176), 1, aux_sym_interface_body_repeat1, - STATE(4115), 1, + STATE(4165), 1, sym_interface_body, - STATE(2093), 2, + STATE(2114), 2, sym_comment, sym_include, - STATE(3035), 5, + STATE(3034), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [104742] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2554), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2594), 1, - sym_on_error_phrase, - STATE(2743), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3174), 1, - aux_sym_for_statement_repeat1, - STATE(3175), 1, - sym_on_stop_phrase, - STATE(2094), 2, - sym_comment, - sym_include, - [104789] = 11, + [105691] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3071), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3299), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2207), 1, + STATE(2294), 1, aux_sym_for_phrase_repeat1, - STATE(2215), 1, + STATE(2297), 1, sym_where_clause, - STATE(2095), 2, + STATE(2115), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [104828] = 6, + [105730] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3120), 1, - sym_accumulate_aggregate, - STATE(2096), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3059), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2320), 1, + sym_where_clause, + STATE(2321), 1, + aux_sym_for_phrase_repeat1, + STATE(2116), 2, sym_comment, sym_include, - ACTIONS(3180), 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, - [104857] = 15, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [105769] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2550), 1, + ACTIONS(2574), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2587), 1, + STATE(2698), 1, sym_on_error_phrase, - STATE(2795), 1, + STATE(2744), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3276), 1, + STATE(3281), 1, sym_on_stop_phrase, - STATE(3279), 1, + STATE(3282), 1, aux_sym_for_statement_repeat1, - STATE(2097), 2, + STATE(2117), 2, sym_comment, sym_include, - [104904] = 15, + [105816] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2417), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2637), 1, - sym_on_error_phrase, - STATE(2716), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3421), 1, - sym_on_stop_phrase, - STATE(3422), 1, - aux_sym_for_statement_repeat1, - STATE(2098), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3112), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2336), 1, + sym_where_clause, + STATE(2339), 1, + aux_sym_for_phrase_repeat1, + STATE(2118), 2, sym_comment, sym_include, - [104951] = 15, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [105855] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2377), 1, + ACTIONS(2409), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2546), 1, + STATE(2567), 1, sym_on_error_phrase, - STATE(2778), 1, + STATE(2805), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3315), 1, + STATE(3224), 1, aux_sym_for_statement_repeat1, - STATE(3319), 1, + STATE(3225), 1, sym_on_stop_phrase, - STATE(2099), 2, - sym_comment, - sym_include, - [104998] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2590), 1, - aux_sym_method_definition_token1, - ACTIONS(3190), 1, - aux_sym_variable_definition_token1, - ACTIONS(3192), 1, - aux_sym_variable_definition_token2, - ACTIONS(3265), 1, - aux_sym__block_terminator_token1, - STATE(2190), 1, - aux_sym_interface_body_repeat1, - STATE(4190), 1, - sym_interface_body, - STATE(2100), 2, + STATE(2119), 2, sym_comment, sym_include, - STATE(3035), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [105037] = 15, + [105902] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2427), 1, + ACTIONS(2453), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2558), 1, + STATE(2692), 1, sym_on_error_phrase, - STATE(2772), 1, + STATE(2753), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3134), 1, - aux_sym_for_statement_repeat1, - STATE(3135), 1, + STATE(3278), 1, sym_on_stop_phrase, - STATE(2101), 2, - sym_comment, - sym_include, - [105084] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2409), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2533), 1, - sym_on_error_phrase, - STATE(2790), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3039), 1, + STATE(3279), 1, aux_sym_for_statement_repeat1, - STATE(3287), 1, - sym_on_stop_phrase, - STATE(2102), 2, + STATE(2120), 2, sym_comment, sym_include, - [105131] = 15, + [105949] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2538), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2662), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2870), 1, - sym_on_quit_phrase, - STATE(3082), 1, - sym_on_stop_phrase, - STATE(3083), 1, - aux_sym_for_statement_repeat1, - STATE(2103), 2, + STATE(402), 1, + sym_accumulate_aggregate, + STATE(2121), 2, sym_comment, sym_include, - [105178] = 15, + ACTIONS(3229), 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, + [105978] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2373), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2552), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2806), 1, - sym_on_quit_phrase, - STATE(3265), 1, - sym_on_stop_phrase, - STATE(3268), 1, - aux_sym_for_statement_repeat1, - STATE(2104), 2, + STATE(2122), 2, sym_comment, sym_include, - [105225] = 6, + ACTIONS(3301), 11, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + aux_sym__using_and_token1, + [106005] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(490), 1, - sym_accumulate_aggregate, - STATE(2105), 2, + ACTIONS(3305), 1, + aux_sym_variable_tuning_token1, + STATE(2283), 1, + sym_field_option, + ACTIONS(3311), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + ACTIONS(3303), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(3308), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + STATE(2123), 3, sym_comment, sym_include, - ACTIONS(3182), 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, - [105254] = 11, + aux_sym_field_definition_repeat1, + [106040] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, - aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3114), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2241), 1, - aux_sym_for_phrase_repeat1, - STATE(2243), 1, - sym_where_clause, - STATE(2106), 2, + STATE(2124), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(3314), 11, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_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, - [105293] = 15, + aux_sym_of_token1, + aux_sym__using_and_token1, + [106067] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2552), 1, + ACTIONS(3316), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2613), 1, + STATE(2592), 1, sym_on_error_phrase, - STATE(2730), 1, + STATE(2847), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3395), 1, - aux_sym_for_statement_repeat1, - STATE(3396), 1, + STATE(3191), 1, sym_on_stop_phrase, - STATE(2107), 2, - sym_comment, - sym_include, - [105340] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3269), 1, - anon_sym_COMMA, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2268), 1, - aux_sym_inherits_repeat1, - STATE(2108), 2, + STATE(3192), 1, + aux_sym_for_statement_repeat1, + STATE(2125), 2, sym_comment, sym_include, - ACTIONS(3267), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [105375] = 15, + [106114] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, + ACTIONS(2411), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2674), 1, + STATE(2601), 1, sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2874), 1, + STATE(2852), 1, sym_on_quit_phrase, - STATE(3084), 1, + STATE(2879), 1, + sym_sort_clause, + STATE(3233), 1, sym_on_stop_phrase, - STATE(3085), 1, + STATE(3236), 1, aux_sym_for_statement_repeat1, - STATE(2109), 2, + STATE(2126), 2, sym_comment, sym_include, - [105422] = 9, + [106161] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3269), 1, - anon_sym_COMMA, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2275), 1, - aux_sym_inherits_repeat1, - STATE(2110), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3041), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2327), 1, + aux_sym_for_phrase_repeat1, + STATE(2328), 1, + sym_where_clause, + STATE(2127), 2, sym_comment, sym_include, - ACTIONS(3271), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [105457] = 10, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [106200] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2953), 1, - aux_sym_variable_tuning_token1, - STATE(2041), 1, - aux_sym_field_definition_repeat1, - STATE(2208), 1, - sym_field_option, - ACTIONS(2957), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2111), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + ACTIONS(2582), 1, + anon_sym_COLON, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2684), 1, + sym_on_error_phrase, + STATE(2767), 1, + sym_on_quit_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(3273), 1, + sym_on_stop_phrase, + STATE(3274), 1, + aux_sym_for_statement_repeat1, + STATE(2128), 2, sym_comment, sym_include, - ACTIONS(2951), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2955), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - [105494] = 9, + [106247] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - aux_sym_variable_tuning_token1, - STATE(2208), 1, - sym_field_option, - ACTIONS(3281), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - ACTIONS(3273), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(3278), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - STATE(2112), 3, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2129), 2, sym_comment, sym_include, - aux_sym_field_definition_repeat1, - [105529] = 11, + ACTIONS(3318), 11, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + aux_sym__using_and_token1, + [106274] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2590), 1, + ACTIONS(2622), 1, aux_sym_method_definition_token1, - ACTIONS(3190), 1, + ACTIONS(3235), 1, aux_sym_variable_definition_token1, - ACTIONS(3192), 1, + ACTIONS(3237), 1, aux_sym_variable_definition_token2, - ACTIONS(3284), 1, + ACTIONS(3320), 1, aux_sym__block_terminator_token1, - STATE(2190), 1, + STATE(2176), 1, aux_sym_interface_body_repeat1, - STATE(4420), 1, + STATE(4368), 1, sym_interface_body, - STATE(2113), 2, + STATE(2130), 2, sym_comment, sym_include, - STATE(3035), 5, + STATE(3034), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [105568] = 11, + [106313] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1191), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3286), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3322), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2300), 1, - aux_sym_for_phrase_repeat1, - STATE(2301), 1, + STATE(2239), 1, sym_where_clause, - STATE(2114), 2, + STATE(2241), 1, + aux_sym_for_phrase_repeat1, + STATE(2131), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [105607] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(3288), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2631), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2856), 1, - sym_on_quit_phrase, - STATE(3065), 1, - sym_on_stop_phrase, - STATE(3066), 1, - aux_sym_for_statement_repeat1, - STATE(2115), 2, - sym_comment, - sym_include, - [105654] = 15, + [106352] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2395), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2582), 1, + STATE(2713), 1, sym_on_error_phrase, - STATE(2789), 1, + STATE(2724), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3289), 1, - sym_on_stop_phrase, - STATE(3291), 1, + STATE(3146), 1, aux_sym_for_statement_repeat1, - STATE(2116), 2, + STATE(3148), 1, + sym_on_stop_phrase, + STATE(2132), 2, sym_comment, sym_include, - [105701] = 15, + [106399] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2411), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2658), 1, - sym_on_error_phrase, - STATE(2698), 1, - sym_on_quit_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(3442), 1, - aux_sym_for_statement_repeat1, - STATE(3444), 1, - sym_on_stop_phrase, - STATE(2117), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3324), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2322), 1, + sym_where_clause, + STATE(2323), 1, + aux_sym_for_phrase_repeat1, + STATE(2133), 2, sym_comment, sym_include, - [105748] = 15, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [106438] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - ACTIONS(2385), 1, - anon_sym_COLON, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2666), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2869), 1, - sym_on_quit_phrase, - STATE(3115), 1, - aux_sym_for_statement_repeat1, - STATE(3117), 1, - sym_on_stop_phrase, - STATE(2118), 2, + STATE(4034), 1, + sym_accumulate_aggregate, + STATE(2134), 2, sym_comment, sym_include, - [105795] = 15, + ACTIONS(3243), 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, + [106467] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - ACTIONS(2375), 1, + ACTIONS(2586), 1, anon_sym_COLON, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2574), 1, + STATE(2594), 1, sym_on_error_phrase, - STATE(2755), 1, + STATE(2860), 1, sym_on_quit_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(3137), 1, + STATE(3189), 1, sym_on_stop_phrase, - STATE(3138), 1, + STATE(3190), 1, aux_sym_for_statement_repeat1, - STATE(2119), 2, + STATE(2135), 2, sym_comment, sym_include, - [105842] = 12, + [106514] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - STATE(2628), 1, + ACTIONS(3326), 1, + anon_sym_COLON, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2862), 1, + STATE(2763), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2120), 2, + STATE(2136), 2, sym_comment, sym_include, - STATE(4120), 3, + STATE(4430), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [105882] = 12, + [106554] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3290), 1, + ACTIONS(3144), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2726), 1, + STATE(2771), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2121), 2, + STATE(2137), 2, sym_comment, sym_include, - STATE(4075), 3, + STATE(4235), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [105922] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1287), 1, - aux_sym_widget_field_token1, - STATE(931), 1, - sym_do_block, - STATE(2403), 1, - aux_sym_on_statement_repeat2, - STATE(2689), 1, - aux_sym_on_statement_repeat1, - STATE(3106), 1, - sym_widget_phrase, - STATE(4146), 1, - sym_label, - STATE(2122), 2, - sym_comment, - sym_include, - [105966] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3294), 1, - aux_sym_variable_definition_token2, - STATE(2123), 2, - sym_comment, - sym_include, - ACTIONS(3292), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [105994] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3298), 1, - aux_sym_variable_definition_token2, - STATE(2124), 2, - sym_comment, - sym_include, - ACTIONS(3296), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [106022] = 6, + [106594] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3302), 1, - aux_sym_variable_definition_token2, - STATE(2125), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3328), 1, + anon_sym_COLON, + STATE(2616), 1, + aux_sym_do_block_repeat1, + STATE(2729), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(2138), 2, sym_comment, sym_include, - ACTIONS(3300), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [106050] = 13, + STATE(4371), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [106634] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2796), 1, - sym_sort_clause, - STATE(2808), 1, - sym_on_error_phrase, - STATE(2994), 1, - sym_on_quit_phrase, - STATE(3536), 1, - sym_on_stop_phrase, - ACTIONS(2576), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2126), 2, + STATE(2139), 2, sym_comment, sym_include, - [106092] = 14, + ACTIONS(3330), 10, + anon_sym_RPAREN, + aux_sym_function_call_token1, + aux_sym_using_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_of_token1, + [106660] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(261), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1305), 1, + ACTIONS(1332), 1, aux_sym_widget_field_token1, - STATE(1080), 1, + STATE(1402), 1, sym_do_block, - STATE(2453), 1, + STATE(2528), 1, aux_sym_on_statement_repeat2, - STATE(2689), 1, + STATE(2691), 1, aux_sym_on_statement_repeat1, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4188), 1, + STATE(4431), 1, sym_label, - STATE(2127), 2, - sym_comment, - sym_include, - [106136] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3304), 1, - aux_sym__block_terminator_token1, - ACTIONS(3306), 1, - aux_sym_variable_definition_token1, - ACTIONS(3309), 1, - aux_sym_variable_definition_token2, - ACTIONS(3312), 1, - aux_sym_method_definition_token1, - STATE(2128), 3, + STATE(2140), 2, sym_comment, sym_include, - aux_sym_interface_body_repeat1, - STATE(3035), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [106170] = 12, + [106704] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3315), 1, + ACTIONS(3332), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2893), 1, + STATE(2761), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2129), 2, + STATE(2141), 2, sym_comment, sym_include, - STATE(4174), 3, + STATE(4137), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [106210] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1316), 1, - aux_sym_widget_field_token1, - STATE(1296), 1, - sym_do_block, - STATE(2497), 1, - aux_sym_on_statement_repeat2, - STATE(2689), 1, - aux_sym_on_statement_repeat1, - STATE(3106), 1, - sym_widget_phrase, - STATE(4158), 1, - sym_label, - STATE(2130), 2, - sym_comment, - sym_include, - [106254] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(3317), 1, - aux_sym_widget_field_token1, - STATE(1471), 1, - sym_do_block, - STATE(2518), 1, - aux_sym_on_statement_repeat2, - STATE(2689), 1, - aux_sym_on_statement_repeat1, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, - STATE(2131), 2, - sym_comment, - sym_include, - [106298] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(3319), 1, - aux_sym_widget_field_token1, - STATE(1147), 1, - sym_do_block, - STATE(2449), 1, - aux_sym_on_statement_repeat2, - STATE(2689), 1, - aux_sym_on_statement_repeat1, - STATE(3106), 1, - sym_widget_phrase, - STATE(4158), 1, - sym_label, - STATE(2132), 2, - sym_comment, - sym_include, - [106342] = 12, + [106744] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3134), 1, + ACTIONS(3334), 1, anon_sym_COLON, - STATE(2150), 1, + STATE(2141), 1, aux_sym_do_block_repeat1, - STATE(2741), 1, + STATE(2872), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2133), 2, + STATE(2142), 2, sym_comment, sym_include, - STATE(4500), 3, + STATE(4246), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [106382] = 12, + [106784] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3134), 1, + ACTIONS(3328), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2184), 1, aux_sym_do_block_repeat1, - STATE(2741), 1, + STATE(2729), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2134), 2, + STATE(2143), 2, sym_comment, sym_include, - STATE(4500), 3, + STATE(4371), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [106422] = 13, + [106824] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2732), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2960), 1, - sym_on_quit_phrase, - STATE(3812), 1, - sym_on_stop_phrase, - ACTIONS(2431), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2135), 2, + STATE(2144), 2, sym_comment, sym_include, - [106464] = 11, + ACTIONS(3336), 10, + sym__terminator, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + [106850] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(997), 1, + ACTIONS(1085), 1, sym__integer_literal, - ACTIONS(1003), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3338), 1, sym_identifier, - STATE(1212), 1, + STATE(1364), 1, sym_object_access, - STATE(1536), 1, + STATE(1565), 1, sym__decimal_literal, - STATE(1561), 1, + STATE(1581), 1, sym__unary_minus_expressions, - STATE(2136), 2, + STATE(2145), 2, sym_comment, sym_include, - STATE(1560), 4, + STATE(1571), 4, sym_qualified_name, sym_number_literal, sym_parenthesized_expression, sym_function_call, - [106502] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3323), 1, - sym__namedot, - STATE(2137), 3, - sym_comment, - sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(79), 8, - sym_identifier, - sym__terminator, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [106530] = 11, - ACTIONS(3), 1, + [106888] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(331), 1, - sym__integer_literal, - ACTIONS(337), 1, - anon_sym_LPAREN, - ACTIONS(3326), 1, - sym_identifier, - STATE(22), 1, - sym__unary_minus_expressions, - STATE(23), 1, - sym_object_access, - STATE(28), 1, - sym__decimal_literal, - STATE(2138), 2, + ACTIONS(3342), 1, + aux_sym_variable_definition_token2, + STATE(2146), 2, sym_comment, sym_include, - STATE(21), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [106568] = 6, + ACTIONS(3340), 9, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [106916] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3330), 1, + ACTIONS(3346), 1, aux_sym_variable_definition_token2, - STATE(2139), 2, + STATE(2147), 2, sym_comment, sym_include, - ACTIONS(3328), 9, + ACTIONS(3344), 9, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -132991,41 +133813,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [106596] = 6, + [106944] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3334), 1, - aux_sym_variable_definition_token2, - STATE(2140), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3348), 1, + anon_sym_COLON, + STATE(2616), 1, + aux_sym_do_block_repeat1, + STATE(2739), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(2148), 2, sym_comment, sym_include, - ACTIONS(3332), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [106624] = 6, + STATE(4169), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [106984] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3338), 1, + ACTIONS(3352), 1, aux_sym_variable_definition_token2, - STATE(2141), 2, + STATE(2149), 2, sym_comment, sym_include, - ACTIONS(3336), 9, + ACTIONS(3350), 9, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -133035,161 +133863,241 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [106652] = 12, + [107012] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3340), 1, + ACTIONS(3354), 1, anon_sym_COLON, - STATE(2144), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2780), 1, + STATE(2808), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2142), 2, + STATE(2150), 2, sym_comment, sym_include, - STATE(4186), 3, + STATE(4393), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [106692] = 12, + [107052] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3342), 1, + ACTIONS(3334), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2744), 1, + STATE(2872), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2143), 2, + STATE(2151), 2, sym_comment, sym_include, - STATE(4377), 3, + STATE(4246), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [106732] = 12, + [107092] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3344), 1, - anon_sym_COLON, - STATE(2628), 1, - aux_sym_do_block_repeat1, - STATE(2791), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(2144), 2, + ACTIONS(3358), 1, + aux_sym_variable_definition_token2, + STATE(2152), 2, sym_comment, sym_include, - STATE(4154), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [106772] = 14, + ACTIONS(3356), 9, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [107120] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1285), 1, + ACTIONS(1322), 1, aux_sym_widget_field_token1, - STATE(886), 1, + STATE(860), 1, sym_do_block, - STATE(2422), 1, + STATE(2472), 1, aux_sym_on_statement_repeat2, - STATE(2689), 1, + STATE(2691), 1, aux_sym_on_statement_repeat1, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4146), 1, + STATE(4181), 1, sym_label, - STATE(2145), 2, + STATE(2153), 2, + sym_comment, + sym_include, + [107164] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1330), 1, + aux_sym_widget_field_token1, + STATE(1016), 1, + sym_do_block, + STATE(2442), 1, + aux_sym_on_statement_repeat2, + STATE(2691), 1, + aux_sym_on_statement_repeat1, + STATE(3173), 1, + sym_widget_phrase, + STATE(4166), 1, + sym_label, + STATE(2154), 2, + sym_comment, + sym_include, + [107208] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(343), 1, + sym__integer_literal, + ACTIONS(349), 1, + anon_sym_LPAREN, + ACTIONS(3360), 1, + sym_identifier, + STATE(23), 1, + sym__decimal_literal, + STATE(25), 1, + sym__unary_minus_expressions, + STATE(28), 1, + sym_object_access, + STATE(2155), 2, + sym_comment, + sym_include, + STATE(26), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [107246] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2818), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2994), 1, + sym_on_quit_phrase, + STATE(3801), 1, + sym_on_stop_phrase, + ACTIONS(2608), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2156), 2, sym_comment, sym_include, - [106816] = 12, + [107288] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3340), 1, + ACTIONS(3144), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2203), 1, aux_sym_do_block_repeat1, - STATE(2780), 1, + STATE(2771), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2146), 2, + STATE(2157), 2, sym_comment, sym_include, - STATE(4186), 3, + STATE(4235), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [106856] = 6, + [107328] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3348), 1, + ACTIONS(3364), 1, aux_sym_variable_definition_token2, - STATE(2147), 2, + STATE(2158), 2, sym_comment, sym_include, - ACTIONS(3346), 9, + ACTIONS(3362), 9, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -133199,17 +134107,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [106884] = 5, + [107356] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2148), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1301), 1, + aux_sym_widget_field_token1, + STATE(1138), 1, + sym_do_block, + STATE(2455), 1, + aux_sym_on_statement_repeat2, + STATE(2691), 1, + aux_sym_on_statement_repeat1, + STATE(3173), 1, + sym_widget_phrase, + STATE(4261), 1, + sym_label, + STATE(2159), 2, + sym_comment, + sym_include, + [107400] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(261), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(3366), 1, + aux_sym_widget_field_token1, + STATE(1521), 1, + sym_do_block, + STATE(2413), 1, + aux_sym_on_statement_repeat2, + STATE(2691), 1, + aux_sym_on_statement_repeat1, + STATE(3173), 1, + sym_widget_phrase, + STATE(4431), 1, + sym_label, + STATE(2160), 2, + sym_comment, + sym_include, + [107444] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3370), 1, + aux_sym_variable_definition_token2, + STATE(2161), 2, + sym_comment, + sym_include, + ACTIONS(3368), 9, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [107472] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2162), 2, sym_comment, sym_include, - ACTIONS(187), 10, + ACTIONS(153), 10, sym_identifier, anon_sym_COMMA, anon_sym_COLON, @@ -133220,2650 +134210,2636 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_order_token4, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [106910] = 11, + [107498] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(637), 1, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(3372), 1, + aux_sym_widget_field_token1, + STATE(1378), 1, + sym_do_block, + STATE(2488), 1, + aux_sym_on_statement_repeat2, + STATE(2691), 1, + aux_sym_on_statement_repeat1, + STATE(3173), 1, + sym_widget_phrase, + STATE(4261), 1, + sym_label, + STATE(2163), 2, + sym_comment, + sym_include, + [107542] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1312), 1, + aux_sym_widget_field_token1, + STATE(2427), 1, + aux_sym_on_statement_repeat2, + STATE(2691), 1, + aux_sym_on_statement_repeat1, + STATE(3173), 1, + sym_widget_phrase, + STATE(3432), 1, + sym_do_block, + STATE(4369), 1, + sym_label, + STATE(2164), 2, + sym_comment, + sym_include, + [107586] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(3374), 1, + aux_sym_widget_field_token1, + STATE(1033), 1, + sym_do_block, + STATE(2465), 1, + aux_sym_on_statement_repeat2, + STATE(2691), 1, + aux_sym_on_statement_repeat1, + STATE(3173), 1, + sym_widget_phrase, + STATE(4166), 1, + sym_label, + STATE(2165), 2, + sym_comment, + sym_include, + [107630] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(831), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(3350), 1, + ACTIONS(3376), 1, sym_identifier, - STATE(570), 1, + STATE(567), 1, sym__decimal_literal, - STATE(581), 1, + STATE(588), 1, sym__unary_minus_expressions, - STATE(582), 1, + STATE(590), 1, sym_object_access, - STATE(2149), 2, + STATE(2166), 2, sym_comment, sym_include, - STATE(571), 4, + STATE(583), 4, sym_qualified_name, sym_number_literal, sym_parenthesized_expression, sym_function_call, - [106948] = 12, + [107668] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, ACTIONS(3069), 1, - anon_sym_COLON, - STATE(2628), 1, - aux_sym_do_block_repeat1, - STATE(2704), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(2150), 2, - sym_comment, - sym_include, - STATE(4445), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [106988] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3352), 1, + ACTIONS(3192), 1, anon_sym_COLON, - STATE(2129), 1, + STATE(2138), 1, aux_sym_do_block_repeat1, - STATE(2873), 1, + STATE(2748), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2151), 2, + STATE(2167), 2, sym_comment, sym_include, - STATE(4148), 3, + STATE(4343), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107028] = 12, + [107708] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3354), 1, + ACTIONS(3192), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2798), 1, + STATE(2748), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2152), 2, + STATE(2168), 2, sym_comment, sym_include, - STATE(4096), 3, + STATE(4343), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107068] = 14, + [107748] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(253), 1, + ACTIONS(261), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1336), 1, aux_sym_widget_field_token1, - STATE(1503), 1, + STATE(1160), 1, sym_do_block, - STATE(2503), 1, + STATE(2405), 1, aux_sym_on_statement_repeat2, - STATE(2689), 1, + STATE(2691), 1, aux_sym_on_statement_repeat1, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4419), 1, + STATE(4431), 1, sym_label, - STATE(2153), 2, + STATE(2169), 2, sym_comment, sym_include, - [107112] = 14, + [107792] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(3356), 1, + ACTIONS(1318), 1, aux_sym_widget_field_token1, - STATE(1121), 1, + STATE(1214), 1, sym_do_block, - STATE(2388), 1, + STATE(2452), 1, aux_sym_on_statement_repeat2, - STATE(2689), 1, + STATE(2691), 1, aux_sym_on_statement_repeat1, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4188), 1, + STATE(4261), 1, sym_label, - STATE(2154), 2, + STATE(2170), 2, + sym_comment, + sym_include, + [107836] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(929), 1, + sym__integer_literal, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(3378), 1, + sym_identifier, + STATE(934), 1, + sym_object_access, + STATE(1391), 1, + sym__unary_minus_expressions, + STATE(1412), 1, + sym__decimal_literal, + STATE(2171), 2, + sym_comment, + sym_include, + STATE(1392), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [107874] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2172), 2, sym_comment, sym_include, - [107156] = 5, + ACTIONS(137), 10, + sym_identifier, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [107900] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2155), 2, + ACTIONS(3382), 1, + aux_sym_variable_definition_token2, + STATE(2173), 2, sym_comment, sym_include, - ACTIONS(3358), 10, - sym__terminator, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - [107182] = 12, + ACTIONS(3380), 9, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [107928] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3069), 1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2791), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2955), 1, + sym_on_quit_phrase, + STATE(3742), 1, + sym_on_stop_phrase, + ACTIONS(2614), 2, + anon_sym_COMMA, anon_sym_COLON, - STATE(2168), 1, - aux_sym_do_block_repeat1, - STATE(2704), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(2156), 2, + STATE(2174), 2, sym_comment, sym_include, - STATE(4445), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [107222] = 12, + [107970] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3065), 1, - anon_sym_COLON, - STATE(2628), 1, - aux_sym_do_block_repeat1, - STATE(2696), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(2157), 2, + ACTIONS(679), 1, + sym__namedot, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2175), 2, sym_comment, sym_include, - STATE(4408), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [107262] = 6, + ACTIONS(3384), 8, + aux_sym_serialization_tuning_token1, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [108000] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3362), 1, + ACTIONS(2622), 1, + aux_sym_method_definition_token1, + ACTIONS(3235), 1, + aux_sym_variable_definition_token1, + ACTIONS(3237), 1, aux_sym_variable_definition_token2, - STATE(2158), 2, + ACTIONS(3386), 1, + aux_sym__block_terminator_token1, + STATE(2179), 1, + aux_sym_interface_body_repeat1, + STATE(2176), 2, sym_comment, sym_include, - ACTIONS(3360), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [107290] = 12, + STATE(3034), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [108036] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3079), 1, + ACTIONS(3114), 1, anon_sym_COLON, - STATE(2146), 1, + STATE(2187), 1, aux_sym_do_block_repeat1, - STATE(2724), 1, + STATE(2813), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2159), 2, + STATE(2177), 2, sym_comment, sym_include, - STATE(4226), 3, + STATE(4140), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107330] = 12, + [108076] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3079), 1, + ACTIONS(3114), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2724), 1, + STATE(2813), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2160), 2, + STATE(2178), 2, sym_comment, sym_include, - STATE(4226), 3, + STATE(4140), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107370] = 5, + [108116] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2161), 2, + ACTIONS(3388), 1, + aux_sym__block_terminator_token1, + ACTIONS(3390), 1, + aux_sym_variable_definition_token1, + ACTIONS(3393), 1, + aux_sym_variable_definition_token2, + ACTIONS(3396), 1, + aux_sym_method_definition_token1, + STATE(2179), 3, sym_comment, sym_include, - ACTIONS(3073), 10, - sym__terminator, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token2, - aux_sym_input_stream_tuning_token3, - aux_sym_input_stream_tuning_token4, - aux_sym_input_stream_tuning_token5, - aux_sym_input_stream_tuning_token6, - aux_sym_input_stream_tuning_token7, - aux_sym_input_stream_tuning_token8, - aux_sym_input_stream_tuning_token9, - [107396] = 14, + aux_sym_interface_body_repeat1, + STATE(3034), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [108150] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1310), 1, + ACTIONS(1314), 1, aux_sym_widget_field_token1, - STATE(2467), 1, + STATE(2470), 1, aux_sym_on_statement_repeat2, - STATE(2689), 1, + STATE(2691), 1, aux_sym_on_statement_repeat1, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(3196), 1, + STATE(3409), 1, sym_do_block, - STATE(4349), 1, + STATE(4369), 1, sym_label, - STATE(2162), 2, + STATE(2180), 2, sym_comment, sym_include, - [107440] = 14, - ACTIONS(3), 1, + [108194] = 13, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(747), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2862), 1, + sym_on_error_phrase, + STATE(2879), 1, + sym_sort_clause, + STATE(2975), 1, + sym_on_quit_phrase, + STATE(3875), 1, + sym_on_stop_phrase, + ACTIONS(2560), 2, anon_sym_COMMA, - ACTIONS(3364), 1, - aux_sym_widget_field_token1, - STATE(866), 1, - sym_do_block, - STATE(2436), 1, - aux_sym_on_statement_repeat2, - STATE(2689), 1, - aux_sym_on_statement_repeat1, - STATE(3106), 1, - sym_widget_phrase, - STATE(4146), 1, - sym_label, - STATE(2163), 2, + anon_sym_COLON, + STATE(2181), 2, sym_comment, sym_include, - [107484] = 12, + [108236] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3352), 1, + ACTIONS(3152), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2200), 1, aux_sym_do_block_repeat1, - STATE(2873), 1, + STATE(2881), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2164), 2, + STATE(2182), 2, sym_comment, sym_include, - STATE(4148), 3, + STATE(4482), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107524] = 12, + [108276] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2105), 1, + aux_sym_sort_clause_token1, + ACTIONS(2107), 1, + aux_sym_sort_clause_token2, + STATE(2506), 1, + aux_sym_for_phrase_repeat2, + STATE(2879), 1, + sym_sort_clause, + STATE(2901), 1, + sym_on_error_phrase, + STATE(3053), 1, + sym_on_quit_phrase, + STATE(3972), 1, + sym_on_stop_phrase, + ACTIONS(2449), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2183), 2, + sym_comment, + sym_include, + [108318] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3366), 1, + ACTIONS(3399), 1, anon_sym_COLON, - STATE(2143), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2786), 1, + STATE(2733), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2165), 2, + STATE(2184), 2, sym_comment, sym_include, - STATE(4351), 3, + STATE(4397), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107564] = 13, + [108358] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, + ACTIONS(2105), 1, aux_sym_sort_clause_token1, - ACTIONS(2100), 1, + ACTIONS(2107), 1, aux_sym_sort_clause_token2, - STATE(2391), 1, + STATE(2506), 1, aux_sym_for_phrase_repeat2, - STATE(2777), 1, + STATE(2865), 1, sym_on_error_phrase, - STATE(2796), 1, + STATE(2879), 1, sym_sort_clause, - STATE(2928), 1, + STATE(2952), 1, sym_on_quit_phrase, - STATE(3610), 1, + STATE(3584), 1, sym_on_stop_phrase, - ACTIONS(2580), 2, + ACTIONS(3401), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(2166), 2, + STATE(2185), 2, sym_comment, sym_include, - [107606] = 5, + [108400] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2167), 2, + ACTIONS(1043), 1, + sym__integer_literal, + ACTIONS(1049), 1, + anon_sym_LPAREN, + ACTIONS(3403), 1, + sym_identifier, + STATE(658), 1, + sym_object_access, + STATE(674), 1, + sym__decimal_literal, + STATE(705), 1, + sym__unary_minus_expressions, + STATE(2186), 2, sym_comment, sym_include, - ACTIONS(163), 10, - sym_identifier, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [107632] = 12, + STATE(706), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [108438] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3368), 1, + ACTIONS(3405), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2710), 1, + STATE(2786), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2168), 2, + STATE(2187), 2, sym_comment, sym_include, - STATE(4414), 3, + STATE(4168), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107672] = 12, + [108478] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3409), 1, + aux_sym_variable_definition_token2, + STATE(2188), 2, + sym_comment, + sym_include, + ACTIONS(3407), 9, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [108506] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3368), 1, + ACTIONS(3326), 1, anon_sym_COLON, - STATE(2121), 1, + STATE(2150), 1, aux_sym_do_block_repeat1, - STATE(2710), 1, + STATE(2763), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2169), 2, + STATE(2189), 2, sym_comment, sym_include, - STATE(4414), 3, + STATE(4430), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107712] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1314), 1, - aux_sym_widget_field_token1, - STATE(1134), 1, - sym_do_block, - STATE(2458), 1, - aux_sym_on_statement_repeat2, - STATE(2689), 1, - aux_sym_on_statement_repeat1, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, - STATE(2170), 2, - sym_comment, - sym_include, - [107756] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2171), 2, - sym_comment, - sym_include, - ACTIONS(3370), 8, - aux_sym_serialization_tuning_token1, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [107786] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2172), 2, - sym_comment, - sym_include, - ACTIONS(3372), 10, - anon_sym_RPAREN, - aux_sym_using_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, - [107812] = 12, + [108546] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3104), 1, + ACTIONS(3405), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2201), 1, aux_sym_do_block_repeat1, - STATE(2761), 1, + STATE(2786), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2173), 2, + STATE(2190), 2, sym_comment, sym_include, - STATE(4260), 3, + STATE(4168), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107852] = 14, + [108586] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1293), 1, + ACTIONS(1308), 1, aux_sym_widget_field_token1, - STATE(2411), 1, + STATE(988), 1, + sym_do_block, + STATE(2525), 1, aux_sym_on_statement_repeat2, - STATE(2689), 1, + STATE(2691), 1, aux_sym_on_statement_repeat1, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(3218), 1, - sym_do_block, - STATE(4349), 1, + STATE(4181), 1, sym_label, - STATE(2174), 2, - sym_comment, - sym_include, - [107896] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - ACTIONS(3104), 1, - anon_sym_COLON, - STATE(2160), 1, - aux_sym_do_block_repeat1, - STATE(2761), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(2175), 2, + STATE(2191), 2, sym_comment, sym_include, - STATE(4260), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [107936] = 12, + [108630] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3366), 1, + ACTIONS(3142), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2786), 1, + STATE(2717), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2176), 2, + STATE(2192), 2, sym_comment, sym_include, - STATE(4351), 3, + STATE(4363), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107976] = 12, + [108670] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3374), 1, + ACTIONS(3142), 1, anon_sym_COLON, - STATE(2152), 1, + STATE(2151), 1, aux_sym_do_block_repeat1, - STATE(2875), 1, + STATE(2717), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2177), 2, + STATE(2193), 2, sym_comment, sym_include, - STATE(4080), 3, + STATE(4363), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108016] = 12, + [108710] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3048), 1, + ACTIONS(3411), 1, anon_sym_COLON, - STATE(2196), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2823), 1, + STATE(2815), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2178), 2, + STATE(2194), 2, sym_comment, sym_include, - STATE(4289), 3, + STATE(4180), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108056] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3378), 1, - aux_sym_variable_definition_token2, - STATE(2179), 2, - sym_comment, - sym_include, - ACTIONS(3376), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [108084] = 12, + [108750] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3065), 1, + ACTIONS(3162), 1, anon_sym_COLON, - STATE(2187), 1, + STATE(2168), 1, aux_sym_do_block_repeat1, - STATE(2696), 1, + STATE(2817), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2180), 2, + STATE(2195), 2, sym_comment, sym_include, - STATE(4408), 3, + STATE(4309), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108124] = 12, + [108790] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3132), 1, + ACTIONS(3120), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2846), 1, + STATE(2908), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2181), 2, + STATE(2196), 2, sym_comment, sym_include, - STATE(4086), 3, + STATE(4498), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108164] = 11, + [108830] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(959), 1, - sym__integer_literal, - ACTIONS(965), 1, - anon_sym_LPAREN, - ACTIONS(3380), 1, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - STATE(1568), 1, - sym_object_access, - STATE(1575), 1, - sym__unary_minus_expressions, - STATE(1607), 1, - sym__decimal_literal, - STATE(2182), 2, - sym_comment, - sym_include, - STATE(1574), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [108202] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2924), 1, - sym__namedot, - STATE(2137), 1, - aux_sym_qualified_name_repeat1, - STATE(2183), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(3413), 1, + aux_sym_widget_field_token1, + STATE(2508), 1, + aux_sym_on_statement_repeat2, + STATE(2691), 1, + aux_sym_on_statement_repeat1, + STATE(3173), 1, + sym_widget_phrase, + STATE(3394), 1, + sym_do_block, + STATE(4369), 1, + sym_label, + STATE(2197), 2, sym_comment, sym_include, - ACTIONS(105), 8, - sym_identifier, - sym__terminator, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [108232] = 12, + [108874] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3065), 1, + anon_sym_COLON, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - STATE(2199), 1, + STATE(2136), 1, aux_sym_do_block_repeat1, - STATE(2829), 1, + STATE(2833), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2184), 2, - sym_comment, - sym_include, - STATE(4284), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [108272] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - aux_sym_variable_definition_token2, - STATE(2185), 2, + STATE(2198), 2, sym_comment, sym_include, - ACTIONS(3382), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [108300] = 14, + STATE(4478), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [108914] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - ACTIONS(1283), 1, + ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1291), 1, + ACTIONS(1303), 1, aux_sym_widget_field_token1, - STATE(1295), 1, + STATE(981), 1, sym_do_block, - STATE(2506), 1, + STATE(2539), 1, aux_sym_on_statement_repeat2, - STATE(2689), 1, + STATE(2691), 1, aux_sym_on_statement_repeat1, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4158), 1, + STATE(4166), 1, sym_label, - STATE(2186), 2, + STATE(2199), 2, sym_comment, sym_include, - [108344] = 12, + [108958] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3065), 1, + anon_sym_COLON, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2829), 1, + STATE(2833), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2187), 2, + STATE(2200), 2, sym_comment, sym_include, - STATE(4284), 3, + STATE(4478), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108384] = 12, + [108998] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3132), 1, + ACTIONS(3415), 1, anon_sym_COLON, - STATE(2120), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2846), 1, + STATE(2826), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2188), 2, + STATE(2201), 2, sym_comment, sym_include, - STATE(4086), 3, + STATE(4194), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108424] = 12, + [109038] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3048), 1, + ACTIONS(3126), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2823), 1, + STATE(2885), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2189), 2, + STATE(2202), 2, sym_comment, sym_include, - STATE(4289), 3, + STATE(4106), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108464] = 10, + [109078] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2590), 1, - aux_sym_method_definition_token1, - ACTIONS(3190), 1, - aux_sym_variable_definition_token1, - ACTIONS(3192), 1, - aux_sym_variable_definition_token2, - ACTIONS(3386), 1, - aux_sym__block_terminator_token1, - STATE(2128), 1, - aux_sym_interface_body_repeat1, - STATE(2190), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3200), 1, + anon_sym_COLON, + STATE(2616), 1, + aux_sym_do_block_repeat1, + STATE(2810), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(2203), 2, sym_comment, sym_include, - STATE(3035), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [108500] = 14, - ACTIONS(3), 1, + STATE(4198), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [109118] = 12, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(817), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1297), 1, - aux_sym_widget_field_token1, - STATE(1061), 1, - sym_do_block, - STATE(2516), 1, - aux_sym_on_statement_repeat2, - STATE(2689), 1, - aux_sym_on_statement_repeat1, - STATE(3106), 1, - sym_widget_phrase, - STATE(4188), 1, - sym_label, - STATE(2191), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3411), 1, + anon_sym_COLON, + STATE(2148), 1, + aux_sym_do_block_repeat1, + STATE(2815), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(2204), 2, sym_comment, sym_include, - [108544] = 11, + STATE(4180), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [109158] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1083), 1, + ACTIONS(1005), 1, sym__integer_literal, - ACTIONS(1089), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(3388), 1, + ACTIONS(3417), 1, sym_identifier, - STATE(641), 1, + STATE(736), 1, sym_object_access, - STATE(667), 1, - sym__decimal_literal, - STATE(673), 1, + STATE(740), 1, sym__unary_minus_expressions, - STATE(2192), 2, + STATE(756), 1, + sym__decimal_literal, + STATE(2205), 2, sym_comment, sym_include, - STATE(677), 4, + STATE(741), 4, sym_qualified_name, sym_number_literal, sym_parenthesized_expression, sym_function_call, - [108582] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2705), 1, - sym_on_error_phrase, - STATE(2796), 1, - sym_sort_clause, - STATE(2926), 1, - sym_on_quit_phrase, - STATE(3699), 1, - sym_on_stop_phrase, - ACTIONS(2518), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2193), 2, - sym_comment, - sym_include, - [108624] = 12, + [109196] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3158), 1, + ACTIONS(3162), 1, anon_sym_COLON, - STATE(2176), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2812), 1, + STATE(2817), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2194), 2, + STATE(2206), 2, sym_comment, sym_include, - STATE(4323), 3, + STATE(4309), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108664] = 14, + [109236] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(967), 1, + sym__integer_literal, + ACTIONS(973), 1, + anon_sym_LPAREN, + ACTIONS(3419), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(3390), 1, - aux_sym_widget_field_token1, - STATE(2485), 1, - aux_sym_on_statement_repeat2, - STATE(2689), 1, - aux_sym_on_statement_repeat1, - STATE(3106), 1, - sym_widget_phrase, - STATE(3181), 1, - sym_do_block, - STATE(4349), 1, - sym_label, - STATE(2195), 2, + STATE(1548), 1, + sym_object_access, + STATE(1588), 1, + sym__unary_minus_expressions, + STATE(1602), 1, + sym__decimal_literal, + STATE(2207), 2, sym_comment, sym_include, - [108708] = 12, + STATE(1593), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [109274] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3158), 1, + ACTIONS(3152), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2616), 1, aux_sym_do_block_repeat1, - STATE(2812), 1, + STATE(2881), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2196), 2, + STATE(2208), 2, sym_comment, sym_include, - STATE(4323), 3, + STATE(4482), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108748] = 11, + [109314] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1041), 1, - sym__integer_literal, - ACTIONS(1047), 1, - anon_sym_LPAREN, - ACTIONS(3392), 1, - sym_identifier, - STATE(727), 1, - sym_object_access, - STATE(740), 1, - sym__unary_minus_expressions, - STATE(750), 1, - sym__decimal_literal, - STATE(2197), 2, + ACTIONS(3421), 1, + sym__namedot, + STATE(2209), 3, sym_comment, sym_include, - STATE(739), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [108786] = 11, + aux_sym_qualified_name_repeat1, + ACTIONS(98), 8, + sym_identifier, + sym__terminator, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [109342] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(921), 1, - sym__integer_literal, - ACTIONS(927), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - STATE(912), 1, - sym_object_access, - STATE(1354), 1, - sym__unary_minus_expressions, - STATE(1388), 1, - sym__decimal_literal, - STATE(2198), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(3424), 1, + aux_sym_widget_field_token1, + STATE(955), 1, + sym_do_block, + STATE(2538), 1, + aux_sym_on_statement_repeat2, + STATE(2691), 1, + aux_sym_on_statement_repeat1, + STATE(3173), 1, + sym_widget_phrase, + STATE(4181), 1, + sym_label, + STATE(2210), 2, sym_comment, sym_include, - STATE(1355), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [108824] = 12, + [109386] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3428), 1, + aux_sym_variable_definition_token2, + STATE(2211), 2, + sym_comment, + sym_include, + ACTIONS(3426), 9, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [109414] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, + ACTIONS(3071), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, + ACTIONS(3073), 1, aux_sym_do_tuning_token1, - ACTIONS(3374), 1, + ACTIONS(3200), 1, anon_sym_COLON, - STATE(2628), 1, + STATE(2194), 1, aux_sym_do_block_repeat1, - STATE(2875), 1, + STATE(2810), 1, sym_stop_after_phrase, - STATE(2924), 1, + STATE(2951), 1, sym_do_tuning, - STATE(2199), 2, + STATE(2212), 2, sym_comment, sym_include, - STATE(4080), 3, + STATE(4198), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108864] = 12, + [109454] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3032), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3034), 1, - aux_sym_do_tuning_token1, - STATE(2164), 1, - aux_sym_do_block_repeat1, - STATE(2862), 1, - sym_stop_after_phrase, - STATE(2924), 1, - sym_do_tuning, - STATE(2200), 2, + ACTIONS(3432), 1, + aux_sym_variable_definition_token2, + STATE(2213), 2, sym_comment, sym_include, - STATE(4120), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [108904] = 13, + ACTIONS(3430), 9, + aux_sym__block_terminator_token1, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_variable_definition_token1, + aux_sym_getter_token1, + aux_sym_setter_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [109482] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2098), 1, - aux_sym_sort_clause_token1, - ACTIONS(2100), 1, - aux_sym_sort_clause_token2, - STATE(2391), 1, - aux_sym_for_phrase_repeat2, - STATE(2796), 1, - sym_sort_clause, - STATE(2844), 1, - sym_on_error_phrase, - STATE(2948), 1, - sym_on_quit_phrase, - STATE(3647), 1, - sym_on_stop_phrase, - ACTIONS(3396), 2, - anon_sym_COMMA, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3126), 1, anon_sym_COLON, - STATE(2201), 2, + STATE(2178), 1, + aux_sym_do_block_repeat1, + STATE(2885), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(2214), 2, sym_comment, sym_include, - [108946] = 9, + STATE(4106), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [109522] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3398), 1, + ACTIONS(2962), 1, + sym__namedot, + STATE(2209), 1, + aux_sym_qualified_name_repeat1, + STATE(2215), 2, + sym_comment, + sym_include, + ACTIONS(79), 8, sym_identifier, - STATE(2966), 1, - sym_sort_column, - STATE(4431), 1, - sym_object_access, - STATE(2260), 2, - sym_qualified_name, - sym_function_call, - ACTIONS(3241), 3, sym__terminator, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - STATE(2202), 3, + [109552] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3071), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3073), 1, + aux_sym_do_tuning_token1, + ACTIONS(3120), 1, + anon_sym_COLON, + STATE(2192), 1, + aux_sym_do_block_repeat1, + STATE(2908), 1, + sym_stop_after_phrase, + STATE(2951), 1, + sym_do_tuning, + STATE(2216), 2, sym_comment, sym_include, - aux_sym_sort_clause_repeat1, - [108979] = 9, + STATE(4498), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [109592] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3401), 1, - sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2203), 2, + STATE(2217), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [109012] = 9, + ACTIONS(3146), 10, + sym__terminator, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token2, + aux_sym_input_stream_tuning_token3, + aux_sym_input_stream_tuning_token4, + aux_sym_input_stream_tuning_token5, + aux_sym_input_stream_tuning_token6, + aux_sym_input_stream_tuning_token7, + aux_sym_input_stream_tuning_token8, + aux_sym_input_stream_tuning_token9, + [109618] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3403), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3434), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2204), 2, + STATE(2218), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109045] = 9, + [109651] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3405), 1, + ACTIONS(3436), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2205), 2, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + STATE(2287), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2219), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [109078] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [109684] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + aux_sym_function_call_token1, + STATE(2220), 2, + sym_comment, + sym_include, + ACTIONS(153), 8, + sym_identifier, + sym__terminator, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [109711] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3118), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2304), 1, - aux_sym_for_phrase_repeat1, - STATE(2206), 2, + ACTIONS(3212), 1, + anon_sym_COMMA, + STATE(2325), 1, + aux_sym_inherits_repeat1, + STATE(2221), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [109111] = 9, + ACTIONS(3210), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [109740] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3228), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3102), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2207), 2, + STATE(2222), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109144] = 5, - ACTIONS(59), 1, + [109773] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2208), 2, + ACTIONS(3444), 1, + aux_sym_function_call_token1, + STATE(2223), 2, sym_comment, sym_include, - ACTIONS(3407), 9, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, + ACTIONS(127), 8, + sym_identifier, + sym__terminator, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [109169] = 9, + [109800] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3142), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3446), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2227), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2209), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2224), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109202] = 9, + [109833] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3409), 1, - sym__terminator, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2210), 2, + ACTIONS(3212), 1, + anon_sym_COMMA, + STATE(2324), 1, + aux_sym_inherits_repeat1, + STATE(2225), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [109235] = 9, + ACTIONS(3218), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [109862] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3142), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3102), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2211), 2, + STATE(2319), 1, + aux_sym_for_phrase_repeat1, + STATE(2226), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109268] = 9, + [109895] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3415), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3253), 1, sym__terminator, - STATE(2293), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2212), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2329), 1, + aux_sym_for_phrase_repeat1, + STATE(2227), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [109301] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [109928] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3160), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3253), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2213), 2, + STATE(2228), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109334] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3417), 1, - sym__terminator, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2214), 2, - sym_comment, - sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [109367] = 9, + [109961] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3228), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3104), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2272), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2215), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2229), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109400] = 9, + [109994] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(100), 1, + sym__namedot, + STATE(2230), 2, + sym_comment, + sym_include, + ACTIONS(98), 8, + sym_identifier, + sym__terminator, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [110021] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3419), 1, + ACTIONS(3448), 1, sym__terminator, - STATE(2322), 1, + STATE(2249), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2216), 2, + STATE(2231), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [109433] = 9, + [110054] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3421), 1, + ACTIONS(3450), 1, sym__terminator, - STATE(2323), 1, + STATE(2248), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2217), 2, + STATE(2232), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [109466] = 9, + [110087] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3160), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3452), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2221), 1, - aux_sym_for_phrase_repeat1, - STATE(2218), 2, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2233), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [109499] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [110120] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3423), 1, + ACTIONS(3454), 1, sym__terminator, - STATE(2322), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2219), 2, + STATE(2234), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [109532] = 9, + [110153] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3146), 1, + ACTIONS(3456), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2220), 2, + ACTIONS(3461), 1, + aux_sym_variable_tuning_token6, + STATE(2479), 1, + sym_variable_tuning, + STATE(2235), 3, sym_comment, sym_include, - ACTIONS(1193), 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, - [109565] = 9, + aux_sym_variable_definition_repeat2, + ACTIONS(3458), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [110184] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3224), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3106), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2221), 2, + STATE(2236), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109598] = 9, - ACTIONS(59), 1, + [110217] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3224), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2203), 1, - aux_sym_for_phrase_repeat1, - STATE(2222), 2, + ACTIONS(2984), 1, + sym_identifier, + STATE(2338), 1, + aux_sym_sort_clause_repeat1, + STATE(3035), 1, + sym_sort_column, + STATE(4446), 1, + sym_object_access, + STATE(2237), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [109631] = 9, + STATE(2340), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3464), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [110252] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3425), 1, + ACTIONS(3466), 1, sym__terminator, - STATE(2322), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2223), 2, + STATE(2238), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [109664] = 9, + [110285] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3146), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3468), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2298), 1, + STATE(2224), 1, aux_sym_for_phrase_repeat1, - STATE(2224), 2, + STATE(2239), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109697] = 9, + [110318] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3427), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3106), 1, sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2225), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2288), 1, + aux_sym_for_phrase_repeat1, + STATE(2240), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [109730] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [110351] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3083), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3468), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2327), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2226), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2241), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109763] = 9, + [110384] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3234), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3470), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2227), 2, + STATE(2242), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109796] = 9, - ACTIONS(59), 1, + [110417] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3429), 1, - sym__terminator, - STATE(2259), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2228), 2, + ACTIONS(2984), 1, + sym_identifier, + STATE(2338), 1, + aux_sym_sort_clause_repeat1, + STATE(3035), 1, + sym_sort_column, + STATE(4446), 1, + sym_object_access, + STATE(2243), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [109829] = 9, + STATE(2340), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(2986), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [110452] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3234), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3039), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2262), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2229), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2244), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109862] = 9, + [110485] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3089), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3055), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2264), 1, + STATE(2256), 1, aux_sym_for_phrase_repeat1, - STATE(2230), 2, + STATE(2245), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109895] = 9, + [110518] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3089), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3039), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2231), 2, + STATE(2228), 1, + aux_sym_for_phrase_repeat1, + STATE(2246), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109928] = 9, + [110551] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3431), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3055), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2232), 2, + STATE(2247), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [109961] = 9, + [110584] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3433), 1, + ACTIONS(3472), 1, sym__terminator, - STATE(2273), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2233), 2, + STATE(2248), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [109994] = 9, + [110617] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3083), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3474), 1, sym__terminator, - STATE(1903), 1, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2249), 2, + sym_comment, + sym_include, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [110650] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3241), 1, + sym__terminator, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2234), 2, + STATE(2250), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110027] = 9, + [110683] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3435), 1, + ACTIONS(3476), 1, sym__terminator, - STATE(2219), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2235), 2, + STATE(2251), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [110060] = 9, + [110716] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3437), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3241), 1, sym__terminator, - STATE(2223), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2236), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2218), 1, + aux_sym_for_phrase_repeat1, + STATE(2252), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [110093] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [110749] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3439), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3031), 1, sym__terminator, - STATE(2270), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2237), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2286), 1, + aux_sym_for_phrase_repeat1, + STATE(2253), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [110126] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [110782] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3441), 1, + ACTIONS(3478), 1, sym__terminator, - STATE(2274), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2238), 2, + STATE(2254), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [110159] = 9, + [110815] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3114), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3031), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2241), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2239), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2255), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110192] = 9, + [110848] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3431), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3265), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2310), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2240), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2256), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110225] = 9, + [110881] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3245), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3265), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2241), 2, + STATE(2270), 1, + aux_sym_for_phrase_repeat1, + STATE(2257), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110258] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2943), 1, - sym_identifier, - STATE(2202), 1, - aux_sym_sort_clause_repeat1, - STATE(2966), 1, - sym_sort_column, - STATE(4431), 1, - sym_object_access, - STATE(2242), 2, - sym_comment, - sym_include, - STATE(2260), 2, - sym_qualified_name, - sym_function_call, - ACTIONS(2945), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [110293] = 9, + [110914] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3245), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3480), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2309), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2243), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2258), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110326] = 7, + [110947] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, - anon_sym_COMMA, - STATE(2275), 1, - aux_sym_inherits_repeat1, - STATE(2244), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3023), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2274), 1, + aux_sym_for_phrase_repeat1, + STATE(2259), 2, sym_comment, sym_include, - ACTIONS(3271), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [110355] = 6, - ACTIONS(3), 1, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [110980] = 9, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(81), 1, - sym__namedot, - STATE(2245), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3023), 1, + sym__terminator, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2260), 2, sym_comment, sym_include, - ACTIONS(79), 8, - sym_identifier, - sym__terminator, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [110382] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [111013] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3443), 1, + ACTIONS(3482), 1, sym__terminator, - STATE(2322), 1, + STATE(2234), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2246), 2, + STATE(2261), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [110415] = 9, + [111046] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3445), 1, + ACTIONS(3484), 1, sym__terminator, - STATE(2322), 1, + STATE(2305), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2247), 2, + STATE(2262), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [110448] = 9, + [111079] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3447), 1, + ACTIONS(3486), 1, sym__terminator, - STATE(2322), 1, + STATE(2309), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2248), 2, + STATE(2263), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [110481] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3118), 1, - sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2249), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [110514] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2250), 2, - sym_comment, - sym_include, - ACTIONS(1413), 9, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - [110539] = 9, + [111112] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3449), 1, + ACTIONS(3488), 1, sym__terminator, - STATE(2320), 1, + STATE(2285), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2251), 2, + STATE(2264), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [110572] = 6, + [111145] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3451), 1, + ACTIONS(3490), 1, anon_sym_COMMA, - STATE(2252), 3, + STATE(2265), 3, sym_comment, sym_include, aux_sym_inherits_repeat1, - ACTIONS(3370), 7, + ACTIONS(3384), 7, aux_sym_serialization_tuning_token1, anon_sym_COLON, aux_sym_property_type_token1, @@ -135871,1642 +136847,1421 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_inherits_token1, aux_sym_implements_token1, aux_sym_use_widget_pool_token1, - [110599] = 9, + [111172] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3454), 1, - sym__terminator, - STATE(2289), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2253), 2, + STATE(2266), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [110632] = 9, + ACTIONS(1451), 9, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + [111197] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3456), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2331), 1, - aux_sym_for_phrase_repeat1, - STATE(2254), 2, - sym_comment, - sym_include, - ACTIONS(1193), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - [110665] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2997), 1, + ACTIONS(3493), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2265), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2255), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2267), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110698] = 9, + [111230] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3456), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3495), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2256), 2, + STATE(2233), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2268), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [110731] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [111263] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3458), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3497), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2257), 2, + STATE(2238), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2269), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [110764] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [111296] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3458), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3499), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2271), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2258), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2270), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110797] = 9, + [111329] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3460), 1, + ACTIONS(3501), 1, sym__terminator, - STATE(2322), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2259), 2, + STATE(2271), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [110830] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2971), 1, - sym_sort_order, - STATE(2260), 2, - sym_comment, - sym_include, - ACTIONS(2734), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2922), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - [110859] = 5, + [111362] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2261), 2, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3503), 1, + sym__terminator, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2272), 2, sym_comment, sym_include, - ACTIONS(1325), 9, - sym__terminator, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [110884] = 9, + [111395] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3462), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3499), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2262), 2, + STATE(2313), 1, + aux_sym_for_phrase_repeat1, + STATE(2273), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110917] = 9, + [111428] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3462), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3289), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2299), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2263), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2274), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110950] = 9, + [111461] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3286), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3289), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2264), 2, + STATE(2317), 1, + aux_sym_for_phrase_repeat1, + STATE(2275), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [110983] = 9, + [111494] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3230), 1, - sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2265), 2, + STATE(2276), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [111016] = 9, + ACTIONS(1344), 9, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [111519] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3286), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3505), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2300), 1, + STATE(2258), 1, aux_sym_for_phrase_repeat1, - STATE(2266), 2, + STATE(2277), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [111049] = 9, + [111552] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3464), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3505), 1, sym__terminator, - STATE(2316), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2267), 2, - sym_comment, - sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [111082] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3269), 1, - anon_sym_COMMA, - STATE(2252), 1, - aux_sym_inherits_repeat1, - STATE(2268), 2, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2278), 2, sym_comment, sym_include, - ACTIONS(3466), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [111111] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [111585] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3255), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3507), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2269), 2, + STATE(2279), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [111144] = 9, + [111618] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3468), 1, + ACTIONS(3509), 1, sym__terminator, - STATE(2322), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2270), 2, + STATE(2280), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111177] = 9, + [111651] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3470), 1, - sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2271), 2, + ACTIONS(3516), 1, + anon_sym_LIKE, + STATE(2517), 1, + sym_temp_table_tuning, + ACTIONS(3513), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2281), 3, sym_comment, sym_include, - ACTIONS(1193), 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, - [111210] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3472), 1, + aux_sym_temp_table_definition_repeat1, + ACTIONS(3511), 4, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2272), 2, - sym_comment, - sym_include, - ACTIONS(1193), 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, - [111243] = 9, + aux_sym_variable_definition_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [111682] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3474), 1, + ACTIONS(3519), 1, sym__terminator, - STATE(2322), 1, + STATE(2343), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2273), 2, + STATE(2282), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111276] = 9, + [111715] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3476), 1, - sym__terminator, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2274), 2, + STATE(2283), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3521), 9, + sym__terminator, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111309] = 7, + aux_sym_property_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [111740] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, - anon_sym_COMMA, - STATE(2252), 1, - aux_sym_inherits_repeat1, - STATE(2275), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3434), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2334), 1, + aux_sym_for_phrase_repeat1, + STATE(2284), 2, sym_comment, sym_include, - ACTIONS(3478), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [111338] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [111773] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3480), 1, + ACTIONS(3523), 1, sym__terminator, - STATE(2248), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2276), 2, + STATE(2285), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111371] = 9, + [111806] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3273), 1, + sym__terminator, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2286), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [111839] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3482), 1, + ACTIONS(3525), 1, sym__terminator, - STATE(2247), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2277), 2, + STATE(2287), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111404] = 9, + [111872] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3484), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3287), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2278), 2, + STATE(2288), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [111437] = 9, + [111905] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3486), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3273), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2279), 2, + STATE(2333), 1, + aux_sym_for_phrase_repeat1, + STATE(2289), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [111470] = 9, + [111938] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3488), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3527), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2280), 2, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2290), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [111503] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [111971] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3490), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3287), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2281), 2, + STATE(2342), 1, + aux_sym_for_phrase_repeat1, + STATE(2291), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [111536] = 9, + [112004] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(2997), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3529), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2282), 2, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2292), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [111569] = 8, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [112037] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(3494), 1, + ACTIONS(3533), 1, anon_sym_LIKE, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2283), 2, + STATE(2293), 2, sym_comment, sym_include, - ACTIONS(3492), 6, + ACTIONS(3531), 6, sym__terminator, aux_sym_variable_tuning_token6, aux_sym_variable_definition_token6, aux_sym_temp_table_tuning_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [111600] = 9, + [112068] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3071), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3535), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2284), 2, + STATE(2294), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [111633] = 9, + [112101] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3496), 1, + ACTIONS(3537), 1, sym__terminator, - STATE(2317), 1, + STATE(2271), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2285), 2, + STATE(2295), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111666] = 9, + [112134] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3498), 1, + ACTIONS(3539), 1, sym__terminator, - STATE(2318), 1, + STATE(2272), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2286), 2, + STATE(2296), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111699] = 9, + [112167] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3500), 1, - sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2287), 2, - sym_comment, - sym_include, - ACTIONS(1193), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - [111732] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3486), 1, + ACTIONS(3535), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2287), 1, + STATE(2344), 1, aux_sym_for_phrase_repeat1, - STATE(2288), 2, + STATE(2297), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [111765] = 9, + [112200] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3502), 1, + ACTIONS(3541), 1, sym__terminator, - STATE(2322), 1, + STATE(2345), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2289), 2, + STATE(2298), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111798] = 9, + [112233] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3504), 1, + ACTIONS(3543), 1, sym__terminator, - STATE(2322), 1, + STATE(2346), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2290), 2, + STATE(2299), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111831] = 9, + [112266] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3506), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3112), 1, sym__terminator, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2291), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2339), 1, + aux_sym_for_phrase_repeat1, + STATE(2300), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [111864] = 8, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [112299] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3513), 1, - anon_sym_LIKE, - STATE(2521), 1, - sym_temp_table_tuning, - ACTIONS(3510), 2, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2292), 3, + ACTIONS(3545), 1, + sym__terminator, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2301), 2, sym_comment, sym_include, - aux_sym_temp_table_definition_repeat1, - ACTIONS(3508), 4, - sym__terminator, - aux_sym_variable_definition_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [111895] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [112332] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3516), 1, + ACTIONS(3547), 1, sym__terminator, - STATE(2322), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2293), 2, + STATE(2302), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [111928] = 9, + [112365] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3472), 1, - sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2278), 1, - aux_sym_for_phrase_repeat1, - STATE(2294), 2, - sym_comment, - sym_include, - ACTIONS(1193), 5, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - [111961] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3518), 1, + ACTIONS(3104), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2295), 2, + STATE(2250), 1, + aux_sym_for_phrase_repeat1, + STATE(2303), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [111994] = 9, + [112398] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3255), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3549), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2256), 1, - aux_sym_for_phrase_repeat1, - STATE(2296), 2, + STATE(2290), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2304), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [112027] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [112431] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3520), 1, + ACTIONS(3551), 1, sym__terminator, - STATE(2210), 1, + STATE(2235), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2297), 2, + STATE(2305), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [112060] = 9, + [112464] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3208), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3112), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2298), 2, + STATE(2306), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112093] = 9, + [112497] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3522), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3553), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2299), 2, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2307), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [112126] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [112530] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3524), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3041), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2300), 2, + STATE(2327), 1, + aux_sym_for_phrase_repeat1, + STATE(2308), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112159] = 9, + [112563] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3524), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3555), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2281), 1, - aux_sym_for_phrase_repeat1, - STATE(2301), 2, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2309), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [112192] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [112596] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3526), 1, + ACTIONS(3557), 1, sym__terminator, - STATE(2246), 1, + STATE(2280), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2302), 2, + STATE(2310), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [112225] = 9, + [112629] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3230), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3041), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2257), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2303), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2311), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112258] = 9, + [112662] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3210), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3559), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2304), 2, + STATE(2267), 1, + aux_sym_for_phrase_repeat1, + STATE(2312), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112291] = 9, + [112695] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3150), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3561), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2305), 2, + STATE(2313), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112324] = 9, + [112728] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3114), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3563), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, - sym_query_tuning, - STATE(2306), 2, + STATE(2251), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2314), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [112357] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [112761] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3210), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3565), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2232), 1, - aux_sym_for_phrase_repeat1, - STATE(2307), 2, + STATE(2254), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2315), 2, sym_comment, sym_include, - ACTIONS(1193), 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, - [112390] = 9, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [112794] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3528), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3322), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2280), 1, + STATE(2241), 1, aux_sym_for_phrase_repeat1, - STATE(2308), 2, + STATE(2316), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112423] = 9, + [112827] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3528), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3567), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2309), 2, + STATE(2317), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112456] = 9, + [112860] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3530), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3567), 1, sym__terminator, - STATE(1903), 1, - aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2310), 2, + STATE(2332), 1, + aux_sym_for_phrase_repeat1, + STATE(2318), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112489] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3532), 1, - sym__terminator, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2311), 2, - sym_comment, - sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [112522] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2943), 1, - sym_identifier, - STATE(2202), 1, - aux_sym_sort_clause_repeat1, - STATE(2966), 1, - sym_sort_column, - STATE(4431), 1, - sym_object_access, - STATE(2260), 2, - sym_qualified_name, - sym_function_call, - STATE(2312), 2, - sym_comment, - sym_include, - ACTIONS(3534), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [112557] = 9, + [112893] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3071), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3322), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2207), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2313), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2319), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112590] = 9, + [112926] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3150), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3277), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2269), 1, + STATE(2278), 1, aux_sym_for_phrase_repeat1, - STATE(2314), 2, + STATE(2320), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112623] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3536), 1, - sym__terminator, - STATE(2216), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2315), 2, - sym_comment, - sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [112656] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3538), 1, - sym__terminator, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2316), 2, - sym_comment, - sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [112689] = 9, + [112959] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3540), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3277), 1, sym__terminator, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2317), 2, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2321), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [112722] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [112992] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3542), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3569), 1, sym__terminator, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2318), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2279), 1, + aux_sym_for_phrase_repeat1, + STATE(2322), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [112755] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113025] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3544), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3569), 1, sym__terminator, - STATE(2214), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2319), 2, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2323), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [112788] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113058] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3546), 1, - sym__terminator, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2320), 2, + ACTIONS(3212), 1, + anon_sym_COMMA, + STATE(2265), 1, + aux_sym_inherits_repeat1, + STATE(2324), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [112821] = 7, + ACTIONS(3571), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [113087] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3269), 1, + ACTIONS(3212), 1, anon_sym_COMMA, - STATE(2268), 1, + STATE(2265), 1, aux_sym_inherits_repeat1, - STATE(2321), 2, + STATE(2325), 2, sym_comment, sym_include, - ACTIONS(3267), 7, + ACTIONS(3573), 7, aux_sym_serialization_tuning_token1, anon_sym_COLON, aux_sym_property_type_token1, @@ -137514,2886 +138269,2865 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_inherits_token1, aux_sym_implements_token1, aux_sym_use_widget_pool_token1, - [112850] = 8, + [113116] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3575), 1, + sym__terminator, + STATE(2016), 1, + sym_query_tuning, + STATE(2242), 1, + aux_sym_for_phrase_repeat1, + STATE(2326), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113149] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3548), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3324), 1, sym__terminator, - ACTIONS(3553), 1, - aux_sym_variable_tuning_token6, - STATE(2459), 1, - sym_variable_tuning, - STATE(2322), 3, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2327), 2, sym_comment, sym_include, - aux_sym_variable_definition_repeat2, - ACTIONS(3550), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [112881] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113182] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3556), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3324), 1, sym__terminator, - STATE(2322), 1, - aux_sym_variable_definition_repeat2, - STATE(2459), 1, - sym_variable_tuning, - STATE(2323), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2323), 1, + aux_sym_for_phrase_repeat1, + STATE(2328), 2, sym_comment, sym_include, - ACTIONS(3411), 5, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - [112914] = 9, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113215] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3202), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3575), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2204), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2324), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2329), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [112947] = 9, + [113248] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3558), 1, + ACTIONS(3577), 1, sym__terminator, - STATE(2290), 1, + STATE(2307), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2325), 2, + STATE(2330), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [112980] = 9, + [113281] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3413), 1, + ACTIONS(3440), 1, aux_sym_variable_tuning_token6, - ACTIONS(3560), 1, + ACTIONS(3579), 1, sym__terminator, - STATE(2291), 1, + STATE(2292), 1, aux_sym_variable_definition_repeat2, - STATE(2459), 1, + STATE(2479), 1, sym_variable_tuning, - STATE(2326), 2, + STATE(2331), 2, sym_comment, sym_include, - ACTIONS(3411), 5, + ACTIONS(3438), 5, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token2, aux_sym_variable_tuning_token3, aux_sym_variable_tuning_token4, aux_sym_variable_tuning_token5, - [113013] = 9, + [113314] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3202), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3581), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2327), 2, + STATE(2332), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [113046] = 9, + [113347] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3401), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3559), 1, sym__terminator, - STATE(1992), 1, - sym_query_tuning, - STATE(2205), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(2328), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2333), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, + [113380] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - [113079] = 9, + ACTIONS(3583), 1, + sym__terminator, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2334), 2, + sym_comment, + sym_include, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113413] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3403), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3059), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2295), 1, + STATE(2321), 1, aux_sym_for_phrase_repeat1, - STATE(2329), 2, + STATE(2335), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [113112] = 9, + [113446] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3208), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3299), 1, sym__terminator, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2279), 1, + STATE(2294), 1, aux_sym_for_phrase_repeat1, - STATE(2330), 2, + STATE(2336), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [113145] = 9, + [113479] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1195), 1, - aux_sym_query_tuning_token6, - ACTIONS(3562), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3059), 1, sym__terminator, - STATE(1903), 1, + STATE(1904), 1, aux_sym_for_phrase_repeat1, - STATE(1992), 1, + STATE(2016), 1, sym_query_tuning, - STATE(2331), 2, + STATE(2337), 2, sym_comment, sym_include, - ACTIONS(1193), 5, + ACTIONS(1195), 5, + aux_sym_function_call_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, - [113178] = 8, + [113512] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3564), 1, + ACTIONS(3585), 1, sym_identifier, - STATE(1890), 1, + STATE(3035), 1, + sym_sort_column, + STATE(4446), 1, + sym_object_access, + STATE(2340), 2, sym_qualified_name, - STATE(3877), 1, - sym__find_type, - STATE(2332), 2, + sym_function_call, + ACTIONS(3223), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + STATE(2338), 3, sym_comment, sym_include, - ACTIONS(3566), 5, - aux_sym_on_error_phrase_token5, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - aux_sym__find_type_token1, - aux_sym__find_type_token2, - [113208] = 8, - ACTIONS(3), 1, + aux_sym_sort_clause_repeat1, + [113545] = 9, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3568), 1, - sym_identifier, - STATE(1925), 1, - sym_qualified_name, - STATE(3636), 1, - sym__find_type, - STATE(2333), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3299), 1, + sym__terminator, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2339), 2, sym_comment, sym_include, - ACTIONS(3566), 5, - aux_sym_on_error_phrase_token5, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - aux_sym__find_type_token1, - aux_sym__find_type_token2, - [113238] = 5, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113578] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2334), 2, + STATE(3021), 1, + sym_sort_order, + STATE(2340), 2, sym_comment, sym_include, - ACTIONS(163), 8, + ACTIONS(2704), 4, sym_identifier, sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(2960), 4, aux_sym_sort_order_token1, aux_sym_sort_order_token2, aux_sym_sort_order_token3, aux_sym_sort_order_token4, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [113262] = 11, + [113607] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3570), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3588), 1, sym__terminator, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3576), 1, - aux_sym_query_definition_token2, - ACTIONS(3578), 1, - aux_sym_query_definition_token3, - STATE(2554), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2335), 2, + STATE(2016), 1, + sym_query_tuning, + STATE(2347), 1, + aux_sym_for_phrase_repeat1, + STATE(2341), 2, sym_comment, sym_include, - [113298] = 7, - ACTIONS(3), 1, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113640] = 9, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2609), 1, - sym_index_tuning, - ACTIONS(3582), 2, - aux_sym_variable_definition_token5, - aux_sym_index_tuning_token1, - STATE(2336), 3, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3588), 1, + sym__terminator, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2342), 2, sym_comment, sym_include, - aux_sym_index_definition_repeat1, - ACTIONS(3580), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [113326] = 11, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113673] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3585), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3590), 1, sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2690), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2337), 2, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2343), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [113362] = 11, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [113706] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3587), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3592), 1, sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2659), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2338), 2, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2344), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [113398] = 5, - ACTIONS(3), 1, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113739] = 9, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2339), 2, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3594), 1, + sym__terminator, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2345), 2, sym_comment, sym_include, - ACTIONS(187), 8, - sym_identifier, - sym__terminator, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [113422] = 11, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [113772] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3589), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3596), 1, sym__terminator, - ACTIONS(3591), 1, - aux_sym_query_definition_token2, - ACTIONS(3593), 1, - aux_sym_query_definition_token3, - STATE(2602), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2340), 2, + STATE(2235), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2346), 2, sym_comment, sym_include, - [113458] = 11, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [113805] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3595), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3598), 1, sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2638), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2341), 2, + STATE(1904), 1, + aux_sym_for_phrase_repeat1, + STATE(2016), 1, + sym_query_tuning, + STATE(2347), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [113494] = 11, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [113838] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3597), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3600), 1, sym__terminator, - ACTIONS(3599), 1, - aux_sym_query_definition_token2, - ACTIONS(3601), 1, - aux_sym_query_definition_token3, - STATE(2579), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2342), 2, + STATE(2302), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2348), 2, sym_comment, sym_include, - [113530] = 11, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [113871] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3603), 1, + ACTIONS(3440), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3602), 1, sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2589), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2343), 2, + STATE(2301), 1, + aux_sym_variable_definition_repeat2, + STATE(2479), 1, + sym_variable_tuning, + STATE(2349), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [113566] = 11, + ACTIONS(3438), 5, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + [113904] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2971), 1, + ACTIONS(3604), 1, + sym__terminator, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3610), 1, + aux_sym_query_definition_token2, + ACTIONS(3612), 1, + aux_sym_query_definition_token3, + STATE(2562), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2350), 2, + sym_comment, + sym_include, + [113940] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2351), 2, + sym_comment, + sym_include, + ACTIONS(137), 8, + sym_identifier, sym__terminator, - ACTIONS(2979), 1, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, aux_sym_field_definition_token1, - ACTIONS(2981), 1, aux_sym_index_definition_token1, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2550), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2344), 2, + [113964] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2352), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [113602] = 11, + ACTIONS(153), 8, + sym_identifier, + sym__terminator, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [113988] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3108), 1, + ACTIONS(3614), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2586), 1, + STATE(2666), 1, aux_sym_temp_table_definition_repeat2, - STATE(2345), 2, + STATE(2353), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [113638] = 10, + [114024] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3605), 1, - aux_sym_property_definition_token1, - STATE(2442), 1, - aux_sym_property_definition_repeat1, - STATE(2855), 1, - sym_property_type, - STATE(4164), 1, - sym_serialization_tuning, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1362), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(2346), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3616), 1, + sym__terminator, + ACTIONS(3618), 1, + aux_sym_query_definition_token2, + ACTIONS(3620), 1, + aux_sym_query_definition_token3, + STATE(2653), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2354), 2, + sym_comment, + sym_include, + [114060] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3622), 1, + sym_identifier, + STATE(1923), 1, + sym_qualified_name, + STATE(3878), 1, + sym__find_type, + STATE(2355), 2, sym_comment, sym_include, - [113672] = 10, + ACTIONS(3624), 5, + aux_sym_on_error_phrase_token5, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + aux_sym__find_type_token1, + aux_sym__find_type_token2, + [114090] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1417), 1, - aux_sym_property_definition_token1, - STATE(2442), 1, - aux_sym_property_definition_repeat1, - STATE(2855), 1, - sym_property_type, - STATE(4106), 1, - sym_serialization_tuning, - ACTIONS(1348), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1362), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(2347), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3626), 1, + sym__terminator, + ACTIONS(3628), 1, + aux_sym_query_definition_token2, + ACTIONS(3630), 1, + aux_sym_query_definition_token3, + STATE(2579), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2356), 2, + sym_comment, + sym_include, + [114126] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3632), 1, + sym_identifier, + STATE(1927), 1, + sym_qualified_name, + STATE(3656), 1, + sym__find_type, + STATE(2357), 2, sym_comment, sym_include, - [113706] = 11, + ACTIONS(3624), 5, + aux_sym_on_error_phrase_token5, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + aux_sym__find_type_token1, + aux_sym__find_type_token2, + [114156] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3607), 1, + ACTIONS(3634), 1, sym__terminator, - ACTIONS(3609), 1, + ACTIONS(3636), 1, aux_sym_query_definition_token2, - ACTIONS(3611), 1, + ACTIONS(3638), 1, aux_sym_query_definition_token3, - STATE(2677), 1, + STATE(2626), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2348), 2, + STATE(2358), 2, sym_comment, sym_include, - [113742] = 5, - ACTIONS(59), 1, + [114192] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(3640), 1, + sym_identifier, + ACTIONS(3643), 1, anon_sym_LBRACE, - STATE(2349), 2, + ACTIONS(3646), 1, + anon_sym_RBRACE, + ACTIONS(3648), 1, + anon_sym_DQUOTE, + ACTIONS(3651), 1, + aux_sym_include_argument_token1, + STATE(2972), 1, + sym_constant, + STATE(2974), 1, + sym_double_quoted_string, + STATE(2976), 1, + sym_include_argument, + STATE(2359), 3, sym_comment, sym_include, - ACTIONS(3370), 8, - aux_sym_serialization_tuning_token1, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [113766] = 11, + aux_sym_include_repeat1, + [114228] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3654), 1, + sym_identifier, + STATE(1929), 1, + sym_qualified_name, + STATE(3588), 1, + sym__find_type, + STATE(2360), 2, + sym_comment, + sym_include, + ACTIONS(3624), 5, + aux_sym_on_error_phrase_token5, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + aux_sym__find_type_token1, + aux_sym__find_type_token2, + [114258] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3613), 1, + ACTIONS(3656), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2605), 1, + STATE(2556), 1, aux_sym_temp_table_definition_repeat2, - STATE(2350), 2, + STATE(2361), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [113802] = 11, + [114294] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2570), 1, + sym_index_tuning, + ACTIONS(3660), 2, + aux_sym_variable_definition_token5, + aux_sym_index_tuning_token1, + STATE(2362), 3, + sym_comment, + sym_include, + aux_sym_index_definition_repeat1, + ACTIONS(3658), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [114322] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3615), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3663), 1, sym__terminator, - ACTIONS(3617), 1, - aux_sym_query_definition_token2, - ACTIONS(3619), 1, - aux_sym_query_definition_token3, - STATE(2644), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2351), 2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2613), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2363), 2, sym_comment, sym_include, - [113838] = 8, - ACTIONS(3), 1, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [114358] = 10, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3621), 1, - sym_identifier, - STATE(1915), 1, - sym_qualified_name, - STATE(3858), 1, - sym__find_type, - STATE(2352), 2, + ACTIONS(1455), 1, + aux_sym_property_definition_token1, + STATE(2389), 1, + aux_sym_property_definition_repeat1, + STATE(2782), 1, + sym_property_type, + STATE(4204), 1, + sym_serialization_tuning, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1374), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(2364), 2, sym_comment, sym_include, - ACTIONS(3566), 5, - aux_sym_on_error_phrase_token5, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - aux_sym__find_type_token1, - aux_sym__find_type_token2, - [113868] = 11, + [114392] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3623), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3626), 1, + ACTIONS(3667), 1, anon_sym_LBRACE, - ACTIONS(3629), 1, + ACTIONS(3669), 1, anon_sym_RBRACE, - ACTIONS(3631), 1, + ACTIONS(3671), 1, anon_sym_DQUOTE, - ACTIONS(3634), 1, + ACTIONS(3673), 1, aux_sym_include_argument_token1, - STATE(2933), 1, + STATE(2384), 1, + aux_sym_include_repeat1, + STATE(2972), 1, sym_constant, - STATE(2934), 1, + STATE(2974), 1, sym_double_quoted_string, - STATE(2936), 1, + STATE(2976), 1, sym_include_argument, - STATE(2353), 3, + STATE(2365), 2, sym_comment, sym_include, - aux_sym_include_repeat1, - [113904] = 11, + [114430] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3675), 1, + sym__terminator, + ACTIONS(3677), 1, + aux_sym_query_definition_token2, + ACTIONS(3679), 1, + aux_sym_query_definition_token3, + STATE(2709), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2366), 2, + sym_comment, + sym_include, + [114466] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3637), 1, + ACTIONS(3681), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2630), 1, + STATE(2711), 1, aux_sym_temp_table_definition_repeat2, - STATE(2354), 2, + STATE(2367), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [113940] = 11, + [114502] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3044), 1, + ACTIONS(3158), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2692), 1, + STATE(2544), 1, aux_sym_temp_table_definition_repeat2, - STATE(2355), 2, + STATE(2368), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [113976] = 11, + [114538] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3639), 1, - sym__terminator, - ACTIONS(3641), 1, - aux_sym_query_definition_token2, - ACTIONS(3643), 1, - aux_sym_query_definition_token3, - STATE(2695), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2356), 2, + STATE(2369), 2, sym_comment, sym_include, - [114012] = 11, + ACTIONS(3384), 8, + aux_sym_serialization_tuning_token1, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [114562] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3645), 1, + ACTIONS(3051), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2536), 1, + STATE(2706), 1, aux_sym_temp_table_definition_repeat2, - STATE(2357), 2, + STATE(2370), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [114048] = 11, + [114598] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3647), 1, + ACTIONS(3683), 1, sym__terminator, - ACTIONS(3649), 1, + ACTIONS(3685), 1, aux_sym_query_definition_token2, - ACTIONS(3651), 1, + ACTIONS(3687), 1, aux_sym_query_definition_token3, - STATE(2544), 1, + STATE(2702), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2358), 2, + STATE(2371), 2, sym_comment, sym_include, - [114084] = 11, + [114634] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3653), 1, + ACTIONS(3689), 1, sym__terminator, - ACTIONS(3655), 1, + ACTIONS(3691), 1, aux_sym_query_definition_token2, - ACTIONS(3657), 1, + ACTIONS(3693), 1, aux_sym_query_definition_token3, - STATE(2595), 1, + STATE(2563), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2359), 2, + STATE(2372), 2, sym_comment, sym_include, - [114120] = 11, + [114670] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3138), 1, + ACTIONS(3173), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2671), 1, + STATE(2656), 1, aux_sym_temp_table_definition_repeat2, - STATE(2360), 2, + STATE(2373), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [114156] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3659), 1, - sym_identifier, - ACTIONS(3661), 1, - anon_sym_LBRACE, - ACTIONS(3663), 1, - anon_sym_RBRACE, - ACTIONS(3665), 1, - anon_sym_DQUOTE, - ACTIONS(3667), 1, - aux_sym_include_argument_token1, - STATE(2364), 1, - aux_sym_include_repeat1, - STATE(2933), 1, - sym_constant, - STATE(2934), 1, - sym_double_quoted_string, - STATE(2936), 1, - sym_include_argument, - STATE(2361), 2, - sym_comment, - sym_include, - [114194] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3669), 1, - sym_identifier, - STATE(1889), 1, - sym_qualified_name, - STATE(3580), 1, - sym__find_type, - STATE(2362), 2, - sym_comment, - sym_include, - ACTIONS(3566), 5, - aux_sym_on_error_phrase_token5, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - aux_sym__find_type_token1, - aux_sym__find_type_token2, - [114224] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3671), 1, - sym_identifier, - STATE(1891), 1, - sym_qualified_name, - STATE(4056), 1, - sym__find_type, - STATE(2363), 2, - sym_comment, - sym_include, - ACTIONS(3566), 5, - aux_sym_on_error_phrase_token5, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - aux_sym__find_type_token1, - aux_sym__find_type_token2, - [114254] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3659), 1, - sym_identifier, - ACTIONS(3661), 1, - anon_sym_LBRACE, - ACTIONS(3665), 1, - anon_sym_DQUOTE, - ACTIONS(3667), 1, - aux_sym_include_argument_token1, - ACTIONS(3673), 1, - anon_sym_RBRACE, - STATE(2353), 1, - aux_sym_include_repeat1, - STATE(2933), 1, - sym_constant, - STATE(2934), 1, - sym_double_quoted_string, - STATE(2936), 1, - sym_include_argument, - STATE(2364), 2, - sym_comment, - sym_include, - [114292] = 11, + [114706] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3675), 1, + ACTIONS(3695), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2553), 1, + STATE(2695), 1, aux_sym_temp_table_definition_repeat2, - STATE(2365), 2, + STATE(2374), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [114328] = 11, + [114742] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3100), 1, + ACTIONS(3697), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2679), 1, + STATE(2623), 1, aux_sym_temp_table_definition_repeat2, - STATE(2366), 2, + STATE(2375), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [114364] = 11, + [114778] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3677), 1, + ACTIONS(3079), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2592), 1, + STATE(2573), 1, aux_sym_temp_table_definition_repeat2, - STATE(2367), 2, + STATE(2376), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [114400] = 11, + [114814] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3699), 1, + sym_identifier, + STATE(1914), 1, + sym_qualified_name, + STATE(4074), 1, + sym__find_type, + STATE(2377), 2, + sym_comment, + sym_include, + ACTIONS(3624), 5, + aux_sym_on_error_phrase_token5, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + aux_sym__find_type_token1, + aux_sym__find_type_token2, + [114844] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3679), 1, - sym__terminator, - ACTIONS(3681), 1, - aux_sym_query_definition_token2, - ACTIONS(3683), 1, - aux_sym_query_definition_token3, - STATE(2539), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2368), 2, + ACTIONS(3701), 1, + aux_sym_property_definition_token1, + STATE(2389), 1, + aux_sym_property_definition_repeat1, + STATE(2782), 1, + sym_property_type, + STATE(4094), 1, + sym_serialization_tuning, + ACTIONS(1360), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1374), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(2378), 2, sym_comment, sym_include, - [114436] = 11, + [114878] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3685), 1, + ACTIONS(3011), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(2571), 1, + STATE(2582), 1, aux_sym_temp_table_definition_repeat2, - STATE(2369), 2, + STATE(2379), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [114472] = 11, + [114914] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3687), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3703), 1, sym__terminator, - ACTIONS(3689), 1, - aux_sym_query_definition_token2, - ACTIONS(3691), 1, - aux_sym_query_definition_token3, - STATE(2663), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2370), 2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2566), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2380), 2, sym_comment, sym_include, - [114508] = 11, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [114950] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3693), 1, - anon_sym_COLON, - STATE(2848), 1, - sym_while_phrase, - STATE(3033), 1, - sym_on_error_phrase, - STATE(3056), 1, - sym_on_quit_phrase, - STATE(4319), 1, - sym_on_stop_phrase, - STATE(2371), 2, - sym_comment, - sym_include, - [114543] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3695), 1, - sym_identifier, - ACTIONS(3697), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3705), 1, sym__terminator, - ACTIONS(3699), 1, - anon_sym_NO_DASHERROR, - STATE(2472), 1, - aux_sym_assign_statement_repeat1, - STATE(3487), 1, - sym_assignment, - STATE(2372), 2, - sym_comment, - sym_include, - STATE(4564), 2, - sym_qualified_name, - sym_object_access, - [114576] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1296), 1, - sym_do_block, - STATE(2497), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4158), 1, - sym_label, - STATE(2373), 2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2699), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2381), 2, sym_comment, sym_include, - [114611] = 6, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [114986] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1688), 1, - aux_sym_variable_definition_token2, - STATE(2374), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3707), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2638), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2382), 2, sym_comment, sym_include, - ACTIONS(1686), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [114636] = 10, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [115022] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3701), 1, + ACTIONS(3709), 1, sym__terminator, - ACTIONS(3703), 1, + ACTIONS(3711), 1, + aux_sym_query_definition_token2, + ACTIONS(3713), 1, aux_sym_query_definition_token3, - STATE(2667), 1, + STATE(2671), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2375), 2, + STATE(2383), 2, sym_comment, sym_include, - [114669] = 10, + [115058] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(3665), 1, sym_identifier, - ACTIONS(3707), 1, - anon_sym_RPAREN, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - STATE(3234), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2376), 2, - sym_comment, - sym_include, - [114702] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(3667), 1, anon_sym_LBRACE, - ACTIONS(747), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(931), 1, - sym_do_block, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4146), 1, - sym_label, - STATE(2377), 2, + ACTIONS(3671), 1, + anon_sym_DQUOTE, + ACTIONS(3673), 1, + aux_sym_include_argument_token1, + ACTIONS(3715), 1, + anon_sym_RBRACE, + STATE(2359), 1, + aux_sym_include_repeat1, + STATE(2972), 1, + sym_constant, + STATE(2974), 1, + sym_double_quoted_string, + STATE(2976), 1, + sym_include_argument, + STATE(2384), 2, sym_comment, sym_include, - [114737] = 11, - ACTIONS(3), 1, + [115096] = 11, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(747), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(931), 1, - sym_do_block, - STATE(2403), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4146), 1, - sym_label, - STATE(2378), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3717), 1, + sym__terminator, + ACTIONS(3719), 1, + aux_sym_query_definition_token2, + ACTIONS(3721), 1, + aux_sym_query_definition_token3, + STATE(2634), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2385), 2, sym_comment, sym_include, - [114772] = 6, + [115132] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1684), 1, - aux_sym_variable_definition_token2, - STATE(2379), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3723), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2688), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2386), 2, sym_comment, sym_include, - ACTIONS(1682), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [114797] = 6, - ACTIONS(59), 1, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [115168] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1680), 1, - aux_sym_variable_definition_token2, - STATE(2380), 2, + ACTIONS(3725), 1, + sym_identifier, + STATE(1924), 1, + sym_qualified_name, + STATE(3866), 1, + sym__find_type, + STATE(2387), 2, sym_comment, sym_include, - ACTIONS(1678), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [114822] = 6, + ACTIONS(3624), 5, + aux_sym_on_error_phrase_token5, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + aux_sym__find_type_token1, + aux_sym__find_type_token2, + [115198] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1676), 1, - aux_sym_variable_definition_token2, - STATE(2381), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3727), 1, + sym__terminator, + ACTIONS(3729), 1, + aux_sym_query_definition_token2, + ACTIONS(3731), 1, + aux_sym_query_definition_token3, + STATE(2680), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2388), 2, sym_comment, sym_include, - ACTIONS(1674), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [114847] = 5, + [115234] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2382), 2, + STATE(2782), 1, + sym_property_type, + ACTIONS(3735), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + ACTIONS(3733), 3, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_property_definition_token1, + STATE(2389), 3, sym_comment, sym_include, - ACTIONS(3713), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [114870] = 6, + aux_sym_property_definition_repeat1, + [115261] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1672), 1, + ACTIONS(1984), 1, aux_sym_variable_definition_token2, - STATE(2383), 2, + STATE(2390), 2, sym_comment, sym_include, - ACTIONS(1670), 6, + ACTIONS(1982), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [114895] = 6, - ACTIONS(59), 1, + [115286] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1668), 1, - aux_sym_variable_definition_token2, - STATE(2384), 2, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(2427), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(3432), 1, + sym_do_block, + STATE(4369), 1, + sym_label, + STATE(2391), 2, sym_comment, sym_include, - ACTIONS(1666), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [114920] = 6, + [115321] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1664), 1, + ACTIONS(1860), 1, aux_sym_variable_definition_token2, - STATE(2385), 2, + STATE(2392), 2, sym_comment, sym_include, - ACTIONS(1662), 6, + ACTIONS(1858), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [114945] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3715), 1, - sym_identifier, - ACTIONS(3717), 1, - anon_sym_DQUOTE, - ACTIONS(3719), 1, - anon_sym_SQUOTE, - STATE(1795), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1900), 2, - sym_qualified_name, - sym__string_literal, - STATE(2386), 2, - sym_comment, - sym_include, - [114976] = 11, + [115346] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2411), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(3218), 1, - sym_do_block, - STATE(4349), 1, - sym_label, - STATE(2387), 2, - sym_comment, - sym_include, - [115011] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(817), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1115), 1, + STATE(3432), 1, sym_do_block, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4188), 1, + STATE(4369), 1, sym_label, - STATE(2388), 2, + STATE(2393), 2, sym_comment, sym_include, - [115046] = 6, + [115381] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1660), 1, + ACTIONS(1856), 1, aux_sym_variable_definition_token2, - STATE(2389), 2, + STATE(2394), 2, sym_comment, sym_include, - ACTIONS(1658), 6, + ACTIONS(1854), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115071] = 11, - ACTIONS(3), 1, + [115406] = 10, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(781), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(3218), 1, - sym_do_block, - STATE(4349), 1, - sym_label, - STATE(2390), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3738), 1, + sym__terminator, + ACTIONS(3740), 1, + aux_sym_query_definition_token3, + STATE(2659), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2395), 2, sym_comment, sym_include, - [115106] = 8, + [115439] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3723), 1, - aux_sym_sort_clause_token1, - ACTIONS(3726), 1, - aux_sym_sort_clause_token2, - STATE(2796), 1, - sym_sort_clause, - ACTIONS(3721), 3, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - STATE(2391), 3, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3742), 1, + anon_sym_COLON, + STATE(2738), 1, + sym_while_phrase, + STATE(3040), 1, + sym_on_error_phrase, + STATE(3154), 1, + sym_on_quit_phrase, + STATE(4335), 1, + sym_on_stop_phrase, + STATE(2396), 2, sym_comment, sym_include, - aux_sym_for_phrase_repeat2, - [115135] = 6, + [115474] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1656), 1, + ACTIONS(1908), 1, aux_sym_variable_definition_token2, - STATE(2392), 2, + STATE(2397), 2, sym_comment, sym_include, - ACTIONS(1654), 6, + ACTIONS(1906), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115160] = 11, - ACTIONS(3), 1, + [115499] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(781), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(2485), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(3181), 1, - sym_do_block, - STATE(4349), 1, - sym_label, - STATE(2393), 2, + STATE(2398), 2, sym_comment, sym_include, - [115195] = 11, + ACTIONS(3744), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [115522] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3729), 1, + ACTIONS(3746), 1, aux_sym__block_terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3748), 1, aux_sym_case_when_branch_token1, - STATE(1003), 1, + STATE(926), 1, sym__block_terminator, - STATE(1005), 1, + STATE(927), 1, sym__case_terminator, - STATE(2591), 1, + STATE(2707), 1, aux_sym_case_body_repeat1, - STATE(3041), 1, + STATE(3145), 1, sym_case_when_branch, - STATE(3328), 1, + STATE(3517), 1, sym_case_body, - STATE(2394), 2, + STATE(2399), 2, sym_comment, sym_include, - [115230] = 9, + [115557] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, + ACTIONS(3750), 1, + sym_identifier, + ACTIONS(3752), 1, anon_sym_DQUOTE, - ACTIONS(3719), 1, + ACTIONS(3754), 1, anon_sym_SQUOTE, - ACTIONS(3733), 1, - sym_identifier, - STATE(1795), 2, + STATE(1818), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2395), 2, - sym_comment, - sym_include, - STATE(3495), 2, + STATE(2221), 2, sym_qualified_name, sym__string_literal, - [115261] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(817), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1115), 1, - sym_do_block, - STATE(2406), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4188), 1, - sym_label, - STATE(2396), 2, - sym_comment, - sym_include, - [115296] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3705), 1, - sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - ACTIONS(3735), 1, - anon_sym_RPAREN, - STATE(3482), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2397), 2, - sym_comment, - sym_include, - [115329] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1134), 1, - sym_do_block, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, - STATE(2398), 2, - sym_comment, - sym_include, - [115364] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3695), 1, - sym_identifier, - ACTIONS(3737), 1, - sym__terminator, - ACTIONS(3739), 1, - anon_sym_NO_DASHERROR, - STATE(2499), 1, - aux_sym_assign_statement_repeat1, - STATE(3487), 1, - sym_assignment, - STATE(2399), 2, + STATE(2400), 2, sym_comment, sym_include, - STATE(4564), 2, - sym_qualified_name, - sym_object_access, - [115397] = 6, + [115588] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1606), 1, + ACTIONS(1912), 1, aux_sym_variable_definition_token2, - STATE(2400), 2, + STATE(2401), 2, sym_comment, sym_include, - ACTIONS(1604), 6, + ACTIONS(1910), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115422] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1134), 1, - sym_do_block, - STATE(2458), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, - STATE(2401), 2, - sym_comment, - sym_include, - [115457] = 6, + [115613] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, + ACTIONS(1920), 1, aux_sym_variable_definition_token2, STATE(2402), 2, sym_comment, sym_include, - ACTIONS(1600), 6, + ACTIONS(1918), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115482] = 11, + [115638] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(261), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(886), 1, + STATE(1402), 1, sym_do_block, - STATE(2814), 1, + STATE(2528), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4146), 1, + STATE(4431), 1, sym_label, STATE(2403), 2, sym_comment, sym_include, - [115517] = 11, + [115673] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(3756), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(886), 1, - sym_do_block, - STATE(2422), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4146), 1, - sym_label, + ACTIONS(3758), 1, + anon_sym_RPAREN, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + STATE(3313), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, STATE(2404), 2, sym_comment, sym_include, - [115552] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1598), 1, - aux_sym_variable_definition_token2, - STATE(2405), 2, - sym_comment, - sym_include, - ACTIONS(1596), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [115577] = 11, + [115706] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(261), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1111), 1, + STATE(1402), 1, sym_do_block, - STATE(2814), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4188), 1, + STATE(4431), 1, sym_label, - STATE(2406), 2, + STATE(2405), 2, sym_comment, sym_include, - [115612] = 6, + [115741] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1594), 1, + ACTIONS(1924), 1, aux_sym_variable_definition_token2, - STATE(2407), 2, + STATE(2406), 2, sym_comment, sym_include, - ACTIONS(1592), 6, + ACTIONS(1922), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115637] = 6, + [115766] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1590), 1, + ACTIONS(1789), 1, aux_sym_variable_definition_token2, - STATE(2408), 2, + STATE(2407), 2, sym_comment, sym_include, - ACTIONS(1588), 6, + ACTIONS(1787), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115662] = 9, + [115791] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, + ACTIONS(3752), 1, anon_sym_DQUOTE, - ACTIONS(3719), 1, + ACTIONS(3754), 1, anon_sym_SQUOTE, - ACTIONS(3741), 1, + ACTIONS(3764), 1, sym_identifier, - STATE(1795), 2, + STATE(1818), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2409), 2, - sym_comment, - sym_include, - STATE(3485), 2, + STATE(2225), 2, sym_qualified_name, sym__string_literal, - [115693] = 9, + STATE(2408), 2, + sym_comment, + sym_include, + [115822] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, - anon_sym_DQUOTE, - ACTIONS(3719), 1, - anon_sym_SQUOTE, - ACTIONS(3743), 1, + ACTIONS(3756), 1, sym_identifier, - STATE(1795), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1924), 2, - sym_qualified_name, - sym__string_literal, - STATE(2410), 2, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + ACTIONS(3766), 1, + anon_sym_RPAREN, + STATE(3503), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2409), 2, sym_comment, sym_include, - [115724] = 11, + [115855] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2814), 1, + STATE(1214), 1, + sym_do_block, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(3196), 1, - sym_do_block, - STATE(4349), 1, + STATE(4261), 1, sym_label, - STATE(2411), 2, + STATE(2410), 2, sym_comment, sym_include, - [115759] = 6, + [115890] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1586), 1, - aux_sym_variable_definition_token2, - STATE(2412), 2, + STATE(2411), 2, sym_comment, sym_include, - ACTIONS(1584), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [115784] = 6, + ACTIONS(3768), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [115913] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1565), 1, + ACTIONS(1932), 1, aux_sym_variable_definition_token2, - STATE(2413), 2, + STATE(2412), 2, sym_comment, sym_include, - ACTIONS(1563), 6, + ACTIONS(1930), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115809] = 11, + [115938] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, + ACTIONS(261), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2467), 1, + STATE(1485), 1, + sym_do_block, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(3196), 1, - sym_do_block, - STATE(4349), 1, + STATE(4431), 1, sym_label, + STATE(2413), 2, + sym_comment, + sym_include, + [115973] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, STATE(2414), 2, sym_comment, sym_include, - [115844] = 6, + ACTIONS(3770), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [115996] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1561), 1, - aux_sym_variable_definition_token2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3772), 1, + sym__terminator, + ACTIONS(3774), 1, + aux_sym_query_definition_token3, + STATE(2697), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2415), 2, sym_comment, sym_include, - ACTIONS(1559), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [115869] = 6, + [116029] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1557), 1, + ACTIONS(1936), 1, aux_sym_variable_definition_token2, STATE(2416), 2, sym_comment, sym_include, - ACTIONS(1555), 6, + ACTIONS(1934), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115894] = 10, - ACTIONS(59), 1, + [116054] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3745), 1, + ACTIONS(3776), 1, + sym_identifier, + ACTIONS(3778), 1, sym__terminator, - ACTIONS(3747), 1, - aux_sym_query_definition_token3, - STATE(2640), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(3780), 1, + anon_sym_NO_DASHERROR, + STATE(2515), 1, + aux_sym_assign_statement_repeat1, + STATE(3072), 1, + sym_assignment, STATE(2417), 2, sym_comment, sym_include, - [115927] = 6, + STATE(4599), 2, + sym_qualified_name, + sym_object_access, + [116087] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(261), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1485), 1, + sym_do_block, + STATE(2424), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4431), 1, + sym_label, + STATE(2418), 2, + sym_comment, + sym_include, + [116122] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1543), 1, + ACTIONS(1940), 1, aux_sym_variable_definition_token2, - STATE(2418), 2, + STATE(2419), 2, sym_comment, sym_include, - ACTIONS(1541), 6, + ACTIONS(1938), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115952] = 6, + [116147] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1539), 1, + ACTIONS(1944), 1, aux_sym_variable_definition_token2, - STATE(2419), 2, + STATE(2420), 2, sym_comment, sym_include, - ACTIONS(1537), 6, + ACTIONS(1942), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [115977] = 10, + [116172] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - ACTIONS(3749), 1, - anon_sym_RPAREN, - STATE(3468), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2420), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1214), 1, + sym_do_block, + STATE(2452), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4261), 1, + sym_label, + STATE(2421), 2, sym_comment, sym_include, - [116010] = 6, + [116207] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3494), 1, - anon_sym_LIKE, - STATE(2421), 2, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3782), 1, + anon_sym_COLON, + STATE(2809), 1, + sym_while_phrase, + STATE(2983), 1, + sym_on_error_phrase, + STATE(3230), 1, + sym_on_quit_phrase, + STATE(4132), 1, + sym_on_stop_phrase, + STATE(2422), 2, sym_comment, sym_include, - ACTIONS(3492), 6, - sym__terminator, - aux_sym_variable_tuning_token6, - aux_sym_variable_definition_token6, - aux_sym_temp_table_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [116035] = 11, + [116242] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(866), 1, + STATE(860), 1, sym_do_block, - STATE(2814), 1, + STATE(2472), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4146), 1, + STATE(4181), 1, sym_label, - STATE(2422), 2, - sym_comment, - sym_include, - [116070] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1519), 1, - aux_sym_variable_definition_token2, STATE(2423), 2, sym_comment, sym_include, - ACTIONS(1517), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [116095] = 11, + [116277] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(261), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(866), 1, + STATE(1465), 1, sym_do_block, - STATE(2436), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4146), 1, + STATE(4431), 1, sym_label, STATE(2424), 2, sym_comment, sym_include, - [116130] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3717), 1, - anon_sym_DQUOTE, - ACTIONS(3719), 1, - anon_sym_SQUOTE, - ACTIONS(3751), 1, - sym_identifier, - STATE(1795), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2425), 2, - sym_comment, - sym_include, - STATE(3475), 2, - sym_qualified_name, - sym__string_literal, - [116161] = 6, + [116312] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1503), 1, - aux_sym_variable_definition_token2, - STATE(2426), 2, + ACTIONS(3533), 1, + anon_sym_LIKE, + STATE(2425), 2, sym_comment, sym_include, - ACTIONS(1501), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [116186] = 9, + ACTIONS(3531), 6, + sym__terminator, + aux_sym_variable_tuning_token6, + aux_sym_variable_definition_token6, + aux_sym_temp_table_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [116337] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, + ACTIONS(3752), 1, anon_sym_DQUOTE, - ACTIONS(3719), 1, + ACTIONS(3754), 1, anon_sym_SQUOTE, - ACTIONS(3753), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(1795), 2, + STATE(1818), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(1906), 2, + STATE(1918), 2, sym_qualified_name, sym__string_literal, - STATE(2427), 2, + STATE(2426), 2, sym_comment, sym_include, - [116217] = 5, - ACTIONS(59), 1, + [116368] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2428), 2, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(3409), 1, + sym_do_block, + STATE(4369), 1, + sym_label, + STATE(2427), 2, sym_comment, sym_include, - ACTIONS(3755), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [116240] = 11, + [116403] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1291), 1, - sym_do_block, - STATE(2814), 1, + STATE(2470), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4158), 1, + STATE(3409), 1, + sym_do_block, + STATE(4369), 1, sym_label, - STATE(2429), 2, + STATE(2428), 2, sym_comment, sym_include, - [116275] = 9, + [116438] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, + ACTIONS(3752), 1, anon_sym_DQUOTE, - ACTIONS(3719), 1, + ACTIONS(3754), 1, anon_sym_SQUOTE, - ACTIONS(3757), 1, + ACTIONS(3786), 1, sym_identifier, - STATE(1795), 2, + STATE(1818), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2244), 2, - sym_qualified_name, - sym__string_literal, - STATE(2430), 2, + STATE(2429), 2, sym_comment, sym_include, - [116306] = 9, + STATE(3086), 2, + sym_qualified_name, + sym__string_literal, + [116469] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, + ACTIONS(3752), 1, anon_sym_DQUOTE, - ACTIONS(3719), 1, + ACTIONS(3754), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, + ACTIONS(3788), 1, sym_identifier, - STATE(1795), 2, + STATE(1818), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2321), 2, + STATE(1940), 2, sym_qualified_name, sym__string_literal, + STATE(2430), 2, + sym_comment, + sym_include, + [116500] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1948), 1, + aux_sym_variable_definition_token2, STATE(2431), 2, sym_comment, sym_include, - [116337] = 10, + ACTIONS(1946), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [116525] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3761), 1, - sym__terminator, - ACTIONS(3763), 1, - aux_sym_query_definition_token3, - STATE(2626), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(1952), 1, + aux_sym_variable_definition_token2, STATE(2432), 2, sym_comment, sym_include, - [116370] = 11, + ACTIONS(1950), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [116550] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1296), 1, + STATE(981), 1, sym_do_block, - STATE(2814), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4158), 1, + STATE(4166), 1, sym_label, STATE(2433), 2, sym_comment, sym_include, - [116405] = 9, + [116585] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(981), 1, + sym_do_block, + STATE(2539), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4166), 1, + sym_label, + STATE(2434), 2, + sym_comment, + sym_include, + [116620] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1956), 1, + aux_sym_variable_definition_token2, + STATE(2435), 2, + sym_comment, + sym_include, + ACTIONS(1954), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [116645] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1960), 1, + aux_sym_variable_definition_token2, + STATE(2436), 2, + sym_comment, + sym_include, + ACTIONS(1958), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [116670] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1964), 1, + aux_sym_variable_definition_token2, + STATE(2437), 2, + sym_comment, + sym_include, + ACTIONS(1962), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [116695] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3790), 1, + sym__terminator, + ACTIONS(3792), 1, + aux_sym_query_definition_token3, + STATE(2624), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2438), 2, + sym_comment, + sym_include, + [116728] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1972), 1, + aux_sym_variable_definition_token2, + STATE(2439), 2, + sym_comment, + sym_include, + ACTIONS(1970), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [116753] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3794), 1, + sym__terminator, + ACTIONS(3796), 1, + aux_sym_query_definition_token3, + STATE(2587), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2440), 2, + sym_comment, + sym_include, + [116786] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, + ACTIONS(3752), 1, anon_sym_DQUOTE, - ACTIONS(3719), 1, + ACTIONS(3754), 1, anon_sym_SQUOTE, - ACTIONS(3765), 1, + ACTIONS(3798), 1, sym_identifier, - STATE(1795), 2, + STATE(1818), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2349), 2, + STATE(1937), 2, sym_qualified_name, sym__string_literal, - STATE(2434), 2, - sym_comment, - sym_include, - [116436] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(3767), 1, - aux_sym_event_definition_token1, - STATE(1879), 1, - sym_property_tuning, - STATE(2444), 1, - aux_sym_property_definition_repeat2, - ACTIONS(1340), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(2435), 2, + STATE(2441), 2, sym_comment, sym_include, - [116469] = 11, + [116817] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(856), 1, + STATE(1033), 1, sym_do_block, - STATE(2814), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4146), 1, + STATE(4166), 1, sym_label, - STATE(2436), 2, - sym_comment, - sym_include, - [116504] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3695), 1, - sym_identifier, - ACTIONS(3769), 1, - sym__terminator, - ACTIONS(3771), 1, - anon_sym_NO_DASHERROR, - STATE(2472), 1, - aux_sym_assign_statement_repeat1, - STATE(3487), 1, - sym_assignment, - STATE(2437), 2, + STATE(2442), 2, sym_comment, sym_include, - STATE(4564), 2, - sym_qualified_name, - sym_object_access, - [116537] = 11, + [116852] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3773), 1, - anon_sym_COLON, - STATE(2709), 1, - sym_while_phrase, - STATE(2945), 1, - sym_on_error_phrase, - STATE(3451), 1, - sym_on_quit_phrase, - STATE(4453), 1, - sym_on_stop_phrase, - STATE(2438), 2, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(3800), 1, + aux_sym_event_definition_token1, + STATE(1870), 1, + sym_property_tuning, + STATE(2448), 1, + aux_sym_property_definition_repeat2, + ACTIONS(1352), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(2443), 2, sym_comment, sym_include, - [116572] = 10, + [116885] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3695), 1, + ACTIONS(3756), 1, sym_identifier, - ACTIONS(3775), 1, - sym__terminator, - ACTIONS(3777), 1, - anon_sym_NO_DASHERROR, - STATE(2372), 1, - aux_sym_assign_statement_repeat1, - STATE(3487), 1, - sym_assignment, - STATE(2439), 2, - sym_comment, - sym_include, - STATE(4564), 2, - sym_qualified_name, - sym_object_access, - [116605] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1342), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1364), 1, - aux_sym_property_tuning_token1, - ACTIONS(1419), 1, - aux_sym_event_definition_token1, - STATE(1879), 1, - sym_property_tuning, - STATE(2444), 1, - aux_sym_property_definition_repeat2, - ACTIONS(1340), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(2440), 2, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + ACTIONS(3802), 1, + anon_sym_RPAREN, + STATE(3513), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2444), 2, sym_comment, sym_include, - [116638] = 11, + [116918] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(856), 1, + STATE(1033), 1, sym_do_block, - STATE(2450), 1, + STATE(2465), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4146), 1, + STATE(4166), 1, sym_label, - STATE(2441), 2, + STATE(2445), 2, sym_comment, sym_include, - [116673] = 7, + [116953] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2855), 1, - sym_property_type, - ACTIONS(3781), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - ACTIONS(3779), 3, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_property_definition_token1, - STATE(2442), 3, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3804), 1, + anon_sym_COLON, + STATE(2798), 1, + sym_while_phrase, + STATE(3018), 1, + sym_on_error_phrase, + STATE(3319), 1, + sym_on_quit_phrase, + STATE(4244), 1, + sym_on_stop_phrase, + STATE(2446), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat1, - [116700] = 9, + [116988] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, - anon_sym_DQUOTE, - ACTIONS(3719), 1, - anon_sym_SQUOTE, - ACTIONS(3784), 1, + ACTIONS(261), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - STATE(1795), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2443), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1160), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4431), 1, + sym_label, + STATE(2447), 2, sym_comment, sym_include, - STATE(3436), 2, - sym_qualified_name, - sym__string_literal, - [116731] = 9, + [117023] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2673), 1, + ACTIONS(2740), 1, aux_sym_event_definition_token1, - ACTIONS(2678), 1, + ACTIONS(2745), 1, aux_sym_variable_tuning_token6, - ACTIONS(2683), 1, + ACTIONS(2750), 1, aux_sym_property_tuning_token1, - STATE(1879), 1, + STATE(1870), 1, sym_property_tuning, - ACTIONS(3786), 2, + ACTIONS(3806), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(2444), 3, + STATE(2448), 3, sym_comment, sym_include, aux_sym_property_definition_repeat2, - [116762] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3717), 1, - anon_sym_DQUOTE, - ACTIONS(3719), 1, - anon_sym_SQUOTE, - ACTIONS(3789), 1, - sym_identifier, - STATE(1795), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1907), 2, - sym_qualified_name, - sym__string_literal, - STATE(2445), 2, - sym_comment, - sym_include, - [116793] = 11, + [117054] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(261), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1121), 1, + STATE(1160), 1, sym_do_block, - STATE(2388), 1, + STATE(2405), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4188), 1, + STATE(4431), 1, sym_label, - STATE(2446), 2, - sym_comment, - sym_include, - [116828] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3731), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3791), 1, - aux_sym__block_terminator_token1, - STATE(1389), 1, - sym__case_terminator, - STATE(1432), 1, - sym__block_terminator, - STATE(2591), 1, - aux_sym_case_body_repeat1, - STATE(3041), 1, - sym_case_when_branch, - STATE(3043), 1, - sym_case_body, - STATE(2447), 2, + STATE(2449), 2, sym_comment, sym_include, - [116863] = 11, + [117089] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(3752), 1, + anon_sym_DQUOTE, + ACTIONS(3754), 1, + anon_sym_SQUOTE, + ACTIONS(3809), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1200), 1, - sym_do_block, - STATE(2429), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4158), 1, - sym_label, - STATE(2448), 2, + STATE(1818), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2450), 2, sym_comment, sym_include, - [116898] = 11, + STATE(3091), 2, + sym_qualified_name, + sym__string_literal, + [117120] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -140402,9215 +141136,9393 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1200), 1, + STATE(1138), 1, sym_do_block, - STATE(2814), 1, + STATE(2455), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4158), 1, + STATE(4261), 1, sym_label, - STATE(2449), 2, + STATE(2451), 2, sym_comment, sym_include, - [116933] = 11, + [117155] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(849), 1, + STATE(1138), 1, sym_do_block, - STATE(2814), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4146), 1, + STATE(4261), 1, sym_label, - STATE(2450), 2, + STATE(2452), 2, sym_comment, sym_include, - [116968] = 10, + [117190] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(3756), 1, sym_identifier, - ACTIONS(3711), 1, + ACTIONS(3762), 1, aux_sym_function_parameter_token1, - ACTIONS(3793), 1, + ACTIONS(3811), 1, anon_sym_RPAREN, - STATE(3298), 1, + STATE(3241), 1, sym_function_parameter, - STATE(4023), 1, + STATE(4013), 1, sym_function_parameter_mode, - ACTIONS(3709), 2, + ACTIONS(3760), 2, aux_sym_input_expression_token1, aux_sym_argument_mode_token1, - STATE(2451), 2, + STATE(2453), 2, sym_comment, sym_include, - [117001] = 5, + [117223] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2452), 2, + ACTIONS(1976), 1, + aux_sym_variable_definition_token2, + STATE(2454), 2, sym_comment, sym_include, - ACTIONS(3795), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [117024] = 11, + ACTIONS(1974), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [117248] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1121), 1, + STATE(1378), 1, sym_do_block, - STATE(2814), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4188), 1, + STATE(4261), 1, sym_label, - STATE(2453), 2, - sym_comment, - sym_include, - [117059] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2454), 2, + STATE(2455), 2, sym_comment, sym_include, - ACTIONS(3797), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [117082] = 5, - ACTIONS(59), 1, + [117283] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2455), 2, + ACTIONS(3776), 1, + sym_identifier, + ACTIONS(3813), 1, + sym__terminator, + ACTIONS(3815), 1, + anon_sym_NO_DASHERROR, + STATE(2478), 1, + aux_sym_assign_statement_repeat1, + STATE(3072), 1, + sym_assignment, + STATE(2456), 2, sym_comment, sym_include, - ACTIONS(3799), 7, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [117105] = 10, + STATE(4599), 2, + sym_qualified_name, + sym_object_access, + [117316] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3801), 1, + ACTIONS(3817), 1, sym__terminator, - ACTIONS(3803), 1, + ACTIONS(3819), 1, aux_sym_query_definition_token3, - STATE(2598), 1, + STATE(2657), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2456), 2, - sym_comment, - sym_include, - [117138] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3805), 1, - anon_sym_COLON, - STATE(2827), 1, - sym_while_phrase, - STATE(3037), 1, - sym_on_error_phrase, - STATE(3285), 1, - sym_on_quit_phrase, - STATE(4281), 1, - sym_on_stop_phrase, STATE(2457), 2, sym_comment, sym_include, - [117173] = 11, + [117349] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(253), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1503), 1, + STATE(1378), 1, sym_do_block, - STATE(2814), 1, + STATE(2488), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4419), 1, + STATE(4261), 1, sym_label, STATE(2458), 2, sym_comment, sym_include, - [117208] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2459), 2, - sym_comment, - sym_include, - ACTIONS(3807), 7, - sym__terminator, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - aux_sym_variable_tuning_token5, - aux_sym_variable_tuning_token6, - [117231] = 11, + [117384] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(3752), 1, + anon_sym_DQUOTE, + ACTIONS(3754), 1, + anon_sym_SQUOTE, + ACTIONS(3821), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1503), 1, - sym_do_block, - STATE(2503), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, - STATE(2460), 2, - sym_comment, - sym_include, - [117266] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2461), 2, + STATE(1818), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2459), 2, sym_comment, sym_include, - ACTIONS(3809), 5, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [117293] = 6, + STATE(3084), 2, + sym_qualified_name, + sym__string_literal, + [117415] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1732), 1, + ACTIONS(1864), 1, aux_sym_variable_definition_token2, - STATE(2462), 2, + STATE(2460), 2, sym_comment, sym_include, - ACTIONS(1730), 6, + ACTIONS(1862), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [117318] = 11, + [117440] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3752), 1, + anon_sym_DQUOTE, + ACTIONS(3754), 1, + anon_sym_SQUOTE, + ACTIONS(3823), 1, + sym_identifier, + STATE(1818), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1912), 2, + sym_qualified_name, + sym__string_literal, + STATE(2461), 2, + sym_comment, + sym_include, + [117471] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1293), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4261), 1, + sym_label, + STATE(2462), 2, + sym_comment, + sym_include, + [117506] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3811), 1, - anon_sym_COLON, - STATE(2865), 1, - sym_while_phrase, - STATE(3013), 1, - sym_on_error_phrase, - STATE(3123), 1, - sym_on_quit_phrase, - STATE(4112), 1, - sym_on_stop_phrase, + ACTIONS(3825), 1, + anon_sym_DQUOTE, + ACTIONS(3827), 1, + anon_sym_SQUOTE, + STATE(2946), 1, + sym__string_literal, + ACTIONS(3829), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(1818), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(2463), 2, sym_comment, sym_include, - [117353] = 5, - ACTIONS(59), 1, + [117537] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(3776), 1, + sym_identifier, + ACTIONS(3831), 1, + sym__terminator, + ACTIONS(3833), 1, + anon_sym_NO_DASHERROR, + STATE(2515), 1, + aux_sym_assign_statement_repeat1, + STATE(3072), 1, + sym_assignment, STATE(2464), 2, sym_comment, sym_include, - ACTIONS(3813), 7, - aux_sym_serialization_tuning_token1, - anon_sym_COLON, - aux_sym_property_type_token1, - aux_sym_method_tuning_token1, - aux_sym_inherits_token1, - aux_sym_implements_token1, - aux_sym_use_widget_pool_token1, - [117376] = 6, - ACTIONS(59), 1, + STATE(4599), 2, + sym_qualified_name, + sym_object_access, + [117570] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1736), 1, - aux_sym_variable_definition_token2, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1043), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4166), 1, + sym_label, STATE(2465), 2, sym_comment, sym_include, - ACTIONS(1734), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [117401] = 10, - ACTIONS(59), 1, + [117605] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3815), 1, - sym__terminator, - ACTIONS(3817), 1, - aux_sym_query_definition_token3, - STATE(2676), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(3752), 1, + anon_sym_DQUOTE, + ACTIONS(3754), 1, + anon_sym_SQUOTE, + ACTIONS(3835), 1, + sym_identifier, + STATE(1818), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2369), 2, + sym_qualified_name, + sym__string_literal, STATE(2466), 2, sym_comment, sym_include, - [117434] = 11, + [117636] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2814), 1, + STATE(1043), 1, + sym_do_block, + STATE(2481), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(3181), 1, - sym_do_block, - STATE(4349), 1, + STATE(4166), 1, sym_label, STATE(2467), 2, sym_comment, sym_include, - [117469] = 11, + [117671] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(817), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(3756), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1061), 1, - sym_do_block, - STATE(2516), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4188), 1, - sym_label, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + ACTIONS(3837), 1, + anon_sym_RPAREN, + STATE(3377), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, STATE(2468), 2, sym_comment, sym_include, - [117504] = 6, + [117704] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(1988), 1, aux_sym_variable_definition_token2, STATE(2469), 2, sym_comment, sym_include, - ACTIONS(1738), 6, + ACTIONS(1986), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [117529] = 11, + [117729] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(817), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1061), 1, - sym_do_block, - STATE(2814), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4188), 1, + STATE(3394), 1, + sym_do_block, + STATE(4369), 1, sym_label, STATE(2470), 2, sym_comment, sym_include, - [117564] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3731), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3819), 1, - aux_sym__block_terminator_token1, - STATE(1263), 1, - sym__case_terminator, - STATE(1264), 1, - sym__block_terminator, - STATE(2591), 1, - aux_sym_case_body_repeat1, - STATE(3041), 1, - sym_case_when_branch, - STATE(3367), 1, - sym_case_body, - STATE(2471), 2, - sym_comment, - sym_include, - [117599] = 8, + [117764] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3821), 1, + ACTIONS(3776), 1, sym_identifier, - STATE(3487), 1, - sym_assignment, - ACTIONS(3824), 2, + ACTIONS(3839), 1, sym__terminator, + ACTIONS(3841), 1, anon_sym_NO_DASHERROR, - STATE(4564), 2, - sym_qualified_name, - sym_object_access, - STATE(2472), 3, + STATE(2417), 1, + aux_sym_assign_statement_repeat1, + STATE(3072), 1, + sym_assignment, + STATE(2471), 2, sym_comment, sym_include, - aux_sym_assign_statement_repeat1, - [117628] = 6, - ACTIONS(59), 1, + STATE(4599), 2, + sym_qualified_name, + sym_object_access, + [117797] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1744), 1, - aux_sym_variable_definition_token2, - STATE(2473), 2, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(988), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4181), 1, + sym_label, + STATE(2472), 2, sym_comment, sym_include, - ACTIONS(1742), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [117653] = 6, + [117832] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1748), 1, + ACTIONS(1992), 1, aux_sym_variable_definition_token2, - STATE(2474), 2, + STATE(2473), 2, sym_comment, sym_include, - ACTIONS(1746), 6, + ACTIONS(1990), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [117678] = 10, + [117857] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3695), 1, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(3826), 1, - sym__terminator, - ACTIONS(3828), 1, - anon_sym_NO_DASHERROR, - STATE(2437), 1, - aux_sym_assign_statement_repeat1, - STATE(3487), 1, - sym_assignment, - STATE(2475), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(2508), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(3394), 1, + sym_do_block, + STATE(4369), 1, + sym_label, + STATE(2474), 2, sym_comment, sym_include, - STATE(4564), 2, - sym_qualified_name, - sym_object_access, - [117711] = 9, + [117892] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3830), 1, - anon_sym_DQUOTE, - ACTIONS(3832), 1, - anon_sym_SQUOTE, - STATE(2979), 1, - sym__string_literal, - ACTIONS(3834), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(1795), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2476), 2, + STATE(2475), 2, sym_comment, sym_include, - [117742] = 11, + ACTIONS(3843), 7, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [117915] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3731), 1, + ACTIONS(3748), 1, aux_sym_case_when_branch_token1, - ACTIONS(3836), 1, + ACTIONS(3845), 1, aux_sym__block_terminator_token1, - STATE(1009), 1, - sym__case_terminator, - STATE(1011), 1, - sym__block_terminator, - STATE(2591), 1, + STATE(2707), 1, aux_sym_case_body_repeat1, - STATE(3041), 1, + STATE(3145), 1, sym_case_when_branch, - STATE(3316), 1, + STATE(3474), 1, sym_case_body, + STATE(3476), 1, + sym__case_terminator, + STATE(3477), 1, + sym__block_terminator, + STATE(2476), 2, + sym_comment, + sym_include, + [117950] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3756), 1, + sym_identifier, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + ACTIONS(3847), 1, + anon_sym_RPAREN, + STATE(3453), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, STATE(2477), 2, sym_comment, sym_include, - [117777] = 10, + [117983] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3695), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3838), 1, + ACTIONS(3849), 1, sym__terminator, - ACTIONS(3840), 1, + ACTIONS(3851), 1, anon_sym_NO_DASHERROR, - STATE(2493), 1, + STATE(2515), 1, aux_sym_assign_statement_repeat1, - STATE(3487), 1, + STATE(3072), 1, sym_assignment, STATE(2478), 2, sym_comment, sym_include, - STATE(4564), 2, + STATE(4599), 2, sym_qualified_name, sym_object_access, - [117810] = 10, + [118016] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3842), 1, - sym__terminator, - ACTIONS(3844), 1, - aux_sym_query_definition_token3, - STATE(2578), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, STATE(2479), 2, sym_comment, sym_include, - [117843] = 11, + ACTIONS(3853), 7, + sym__terminator, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + aux_sym_variable_tuning_token5, + aux_sym_variable_tuning_token6, + [118039] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, + ACTIONS(3067), 1, aux_sym_while_phrase_token1, - ACTIONS(3846), 1, + ACTIONS(3855), 1, anon_sym_COLON, - STATE(2842), 1, + STATE(2893), 1, sym_while_phrase, - STATE(3006), 1, + STATE(2935), 1, sym_on_error_phrase, - STATE(3136), 1, + STATE(3239), 1, sym_on_quit_phrase, - STATE(4078), 1, + STATE(4098), 1, sym_on_stop_phrase, STATE(2480), 2, sym_comment, sym_include, - [117878] = 10, + [118074] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(3711), 1, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1049), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4166), 1, + sym_label, + STATE(2481), 2, + sym_comment, + sym_include, + [118109] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3756), 1, + sym_identifier, + ACTIONS(3762), 1, aux_sym_function_parameter_token1, - ACTIONS(3848), 1, + ACTIONS(3857), 1, anon_sym_RPAREN, STATE(3419), 1, sym_function_parameter, - STATE(4023), 1, + STATE(4013), 1, sym_function_parameter_mode, - ACTIONS(3709), 2, + ACTIONS(3760), 2, aux_sym_input_expression_token1, aux_sym_argument_mode_token1, - STATE(2481), 2, + STATE(2482), 2, sym_comment, sym_include, - [117911] = 11, + [118142] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3850), 1, - anon_sym_COLON, - STATE(2703), 1, - sym_while_phrase, - STATE(2980), 1, - sym_on_error_phrase, - STATE(3323), 1, - sym_on_quit_phrase, - STATE(4432), 1, - sym_on_stop_phrase, - STATE(2482), 2, + ACTIONS(1996), 1, + aux_sym_variable_definition_token2, + STATE(2483), 2, sym_comment, sym_include, - [117946] = 10, + ACTIONS(1994), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [118167] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3852), 1, - sym__terminator, - ACTIONS(3854), 1, - aux_sym_query_definition_token3, - STATE(2527), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2483), 2, + STATE(2484), 2, sym_comment, sym_include, - [117979] = 10, + ACTIONS(3859), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [118190] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - ACTIONS(3856), 1, - anon_sym_RPAREN, - STATE(3446), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2484), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(3380), 1, + sym_do_block, + STATE(4369), 1, + sym_label, + STATE(2485), 2, sym_comment, sym_include, - [118012] = 11, + [118225] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2814), 1, + STATE(1202), 1, + sym_do_block, + STATE(2462), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(3171), 1, - sym_do_block, - STATE(4349), 1, + STATE(4261), 1, sym_label, - STATE(2485), 2, + STATE(2486), 2, sym_comment, sym_include, - [118047] = 11, + [118260] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(781), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2494), 1, + STATE(988), 1, + sym_do_block, + STATE(2525), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(3171), 1, - sym_do_block, - STATE(4349), 1, + STATE(4181), 1, sym_label, - STATE(2486), 2, + STATE(2487), 2, sym_comment, sym_include, - [118082] = 11, - ACTIONS(59), 1, + [118295] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3858), 1, - anon_sym_COLON, - STATE(2758), 1, - sym_while_phrase, - STATE(2970), 1, - sym_on_error_phrase, - STATE(3354), 1, - sym_on_quit_phrase, - STATE(4267), 1, - sym_on_stop_phrase, - STATE(2487), 2, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1202), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4261), 1, + sym_label, + STATE(2488), 2, sym_comment, sym_include, - [118117] = 11, + [118330] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3731), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3860), 1, - aux_sym__block_terminator_token1, - STATE(2591), 1, - aux_sym_case_body_repeat1, - STATE(3041), 1, - sym_case_when_branch, - STATE(3260), 1, - sym_case_body, - STATE(3261), 1, - sym__case_terminator, - STATE(3262), 1, - sym__block_terminator, - STATE(2488), 2, - sym_comment, - sym_include, - [118152] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3705), 1, - sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - ACTIONS(3862), 1, - anon_sym_RPAREN, - STATE(3506), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, + ACTIONS(2006), 1, + aux_sym_variable_definition_token2, STATE(2489), 2, sym_comment, sym_include, - [118185] = 10, - ACTIONS(3), 1, + ACTIONS(2004), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [118355] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3695), 1, - sym_identifier, - ACTIONS(3864), 1, - sym__terminator, - ACTIONS(3866), 1, - anon_sym_NO_DASHERROR, - STATE(2472), 1, - aux_sym_assign_statement_repeat1, - STATE(3487), 1, - sym_assignment, + ACTIONS(2010), 1, + aux_sym_variable_definition_token2, STATE(2490), 2, sym_comment, sym_include, - STATE(4564), 2, - sym_qualified_name, - sym_object_access, - [118218] = 9, + ACTIONS(2008), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [118380] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, + ACTIONS(3752), 1, anon_sym_DQUOTE, - ACTIONS(3719), 1, + ACTIONS(3754), 1, anon_sym_SQUOTE, - ACTIONS(3868), 1, + ACTIONS(3861), 1, sym_identifier, - STATE(1795), 2, + STATE(1818), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(1916), 2, + STATE(1913), 2, sym_qualified_name, sym__string_literal, STATE(2491), 2, sym_comment, sym_include, - [118249] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3870), 1, - anon_sym_COLON, - STATE(2802), 1, - sym_while_phrase, - STATE(3029), 1, - sym_on_error_phrase, - STATE(3072), 1, - sym_on_quit_phrase, - STATE(4315), 1, - sym_on_stop_phrase, - STATE(2492), 2, - sym_comment, - sym_include, - [118284] = 10, + [118411] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3695), 1, + ACTIONS(3752), 1, + anon_sym_DQUOTE, + ACTIONS(3754), 1, + anon_sym_SQUOTE, + ACTIONS(3863), 1, sym_identifier, - ACTIONS(3872), 1, - sym__terminator, - ACTIONS(3874), 1, - anon_sym_NO_DASHERROR, - STATE(2472), 1, - aux_sym_assign_statement_repeat1, - STATE(3487), 1, - sym_assignment, - STATE(2493), 2, + STATE(1818), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2492), 2, sym_comment, sym_include, - STATE(4564), 2, + STATE(3081), 2, sym_qualified_name, - sym_object_access, - [118317] = 11, - ACTIONS(3), 1, + sym__string_literal, + [118442] = 11, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(781), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(3164), 1, - sym_do_block, - STATE(4349), 1, - sym_label, - STATE(2494), 2, + ACTIONS(3748), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3865), 1, + aux_sym__block_terminator_token1, + STATE(897), 1, + sym__case_terminator, + STATE(898), 1, + sym__block_terminator, + STATE(2707), 1, + aux_sym_case_body_repeat1, + STATE(3145), 1, + sym_case_when_branch, + STATE(3522), 1, + sym_case_body, + STATE(2493), 2, sym_comment, sym_include, - [118352] = 10, - ACTIONS(3), 1, + [118477] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, - sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - ACTIONS(3876), 1, - anon_sym_RPAREN, - STATE(3428), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2495), 2, + ACTIONS(1874), 1, + aux_sym_variable_definition_token2, + STATE(2494), 2, sym_comment, sym_include, - [118385] = 10, + ACTIONS(1872), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [118502] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3878), 1, + ACTIONS(3867), 1, sym__terminator, - ACTIONS(3880), 1, + ACTIONS(3869), 1, aux_sym_query_definition_token3, - STATE(2691), 1, + STATE(2712), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, + STATE(2495), 2, + sym_comment, + sym_include, + [118535] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3748), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3871), 1, + aux_sym__block_terminator_token1, + STATE(1337), 1, + sym__case_terminator, + STATE(1340), 1, + sym__block_terminator, + STATE(2707), 1, + aux_sym_case_body_repeat1, + STATE(3145), 1, + sym_case_when_branch, + STATE(3545), 1, + sym_case_body, STATE(2496), 2, sym_comment, sym_include, - [118418] = 11, - ACTIONS(3), 1, + [118570] = 11, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1295), 1, - sym_do_block, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4158), 1, - sym_label, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3873), 1, + anon_sym_COLON, + STATE(2725), 1, + sym_while_phrase, + STATE(3002), 1, + sym_on_error_phrase, + STATE(3087), 1, + sym_on_quit_phrase, + STATE(4533), 1, + sym_on_stop_phrase, STATE(2497), 2, sym_comment, sym_include, - [118453] = 6, + [118605] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, + ACTIONS(2018), 1, aux_sym_variable_definition_token2, STATE(2498), 2, sym_comment, sym_include, - ACTIONS(1513), 6, + ACTIONS(2016), 6, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [118478] = 10, + [118630] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3695), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3882), 1, + ACTIONS(3875), 1, sym__terminator, - ACTIONS(3884), 1, + ACTIONS(3877), 1, anon_sym_NO_DASHERROR, - STATE(2472), 1, + STATE(2513), 1, aux_sym_assign_statement_repeat1, - STATE(3487), 1, + STATE(3072), 1, sym_assignment, STATE(2499), 2, sym_comment, sym_include, - STATE(4564), 2, + STATE(4599), 2, sym_qualified_name, sym_object_access, - [118511] = 11, - ACTIONS(3), 1, + [118663] = 11, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1295), 1, - sym_do_block, - STATE(2506), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4158), 1, - sym_label, + ACTIONS(3748), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3879), 1, + aux_sym__block_terminator_token1, + STATE(1538), 1, + sym__block_terminator, + STATE(1541), 1, + sym__case_terminator, + STATE(2707), 1, + aux_sym_case_body_repeat1, + STATE(3145), 1, + sym_case_when_branch, + STATE(3147), 1, + sym_case_body, STATE(2500), 2, sym_comment, sym_include, - [118546] = 6, + [118698] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1840), 1, - aux_sym_variable_definition_token2, + ACTIONS(1354), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1376), 1, + aux_sym_property_tuning_token1, + ACTIONS(1457), 1, + aux_sym_event_definition_token1, + STATE(1870), 1, + sym_property_tuning, + STATE(2448), 1, + aux_sym_property_definition_repeat2, + ACTIONS(1352), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, STATE(2501), 2, sym_comment, sym_include, - ACTIONS(1838), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [118571] = 10, - ACTIONS(3), 1, + [118731] = 11, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, - sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - ACTIONS(3886), 1, - anon_sym_RPAREN, - STATE(3524), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3881), 1, + anon_sym_COLON, + STATE(2821), 1, + sym_while_phrase, + STATE(2970), 1, + sym_on_error_phrase, + STATE(3505), 1, + sym_on_quit_phrase, + STATE(4481), 1, + sym_on_stop_phrase, STATE(2502), 2, sym_comment, sym_include, - [118604] = 11, + [118766] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(253), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1471), 1, + STATE(860), 1, sym_do_block, - STATE(2814), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4419), 1, + STATE(4181), 1, sym_label, STATE(2503), 2, sym_comment, sym_include, - [118639] = 11, + [118801] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3888), 1, - anon_sym_COLON, - STATE(2773), 1, - sym_while_phrase, - STATE(2975), 1, - sym_on_error_phrase, - STATE(3336), 1, - sym_on_quit_phrase, - STATE(4232), 1, - sym_on_stop_phrase, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3883), 1, + sym__terminator, + ACTIONS(3885), 1, + aux_sym_query_definition_token3, + STATE(2575), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2504), 2, sym_comment, sym_include, - [118674] = 11, + [118834] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(3756), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1147), 1, - sym_do_block, - STATE(2449), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4158), 1, - sym_label, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + ACTIONS(3887), 1, + anon_sym_RPAREN, + STATE(3425), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, STATE(2505), 2, sym_comment, sym_include, - [118709] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(43), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1147), 1, - sym_do_block, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4158), 1, - sym_label, - STATE(2506), 2, - sym_comment, - sym_include, - [118744] = 11, - ACTIONS(3), 1, + [118867] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1471), 1, - sym_do_block, - STATE(2518), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, - STATE(2507), 2, + ACTIONS(3891), 1, + aux_sym_sort_clause_token1, + ACTIONS(3894), 1, + aux_sym_sort_clause_token2, + STATE(2879), 1, + sym_sort_clause, + ACTIONS(3889), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + STATE(2506), 3, sym_comment, sym_include, - [118779] = 11, + aux_sym_for_phrase_repeat2, + [118896] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3028), 1, - aux_sym_while_phrase_token1, - ACTIONS(3890), 1, - anon_sym_COLON, - STATE(2750), 1, - sym_while_phrase, - STATE(2943), 1, - sym_on_error_phrase, - STATE(3469), 1, - sym_on_quit_phrase, - STATE(4509), 1, - sym_on_stop_phrase, - STATE(2508), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3897), 1, + sym__terminator, + ACTIONS(3899), 1, + aux_sym_query_definition_token3, + STATE(2558), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2507), 2, sym_comment, sym_include, - [118814] = 9, + [118929] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3717), 1, - anon_sym_DQUOTE, - ACTIONS(3719), 1, - anon_sym_SQUOTE, - ACTIONS(3892), 1, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - STATE(1795), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2509), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(3389), 1, + sym_do_block, + STATE(4369), 1, + sym_label, + STATE(2508), 2, sym_comment, sym_include, - STATE(3398), 2, - sym_qualified_name, - sym__string_literal, - [118845] = 10, + [118964] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3695), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3894), 1, + ACTIONS(3901), 1, sym__terminator, - ACTIONS(3896), 1, + ACTIONS(3903), 1, anon_sym_NO_DASHERROR, - STATE(2490), 1, + STATE(2515), 1, aux_sym_assign_statement_repeat1, - STATE(3487), 1, + STATE(3072), 1, sym_assignment, - STATE(2510), 2, + STATE(2509), 2, sym_comment, sym_include, - STATE(4564), 2, + STATE(4599), 2, sym_qualified_name, sym_object_access, - [118878] = 10, + [118997] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3898), 1, - sym__terminator, - ACTIONS(3900), 1, - aux_sym_query_definition_token3, - STATE(2537), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(1753), 1, + aux_sym_variable_definition_token2, + STATE(2510), 2, + sym_comment, + sym_include, + ACTIONS(1751), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [119022] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + STATE(330), 1, + aux_sym_qualified_name_repeat1, STATE(2511), 2, sym_comment, sym_include, - [118911] = 9, + ACTIONS(3905), 5, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [119049] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3830), 1, - anon_sym_DQUOTE, - ACTIONS(3832), 1, - anon_sym_SQUOTE, - STATE(2957), 1, - sym__string_literal, - ACTIONS(3902), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(1795), 2, - sym_double_quoted_string, - sym_single_quoted_string, STATE(2512), 2, sym_comment, sym_include, - [118942] = 10, + ACTIONS(3907), 7, + aux_sym_serialization_tuning_token1, + anon_sym_COLON, + aux_sym_property_type_token1, + aux_sym_method_tuning_token1, + aux_sym_inherits_token1, + aux_sym_implements_token1, + aux_sym_use_widget_pool_token1, + [119072] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - ACTIONS(3904), 1, - anon_sym_RPAREN, - STATE(3493), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, + ACTIONS(3909), 1, + sym__terminator, + ACTIONS(3911), 1, + anon_sym_NO_DASHERROR, + STATE(2515), 1, + aux_sym_assign_statement_repeat1, + STATE(3072), 1, + sym_assignment, STATE(2513), 2, sym_comment, sym_include, - [118975] = 11, + STATE(4599), 2, + sym_qualified_name, + sym_object_access, + [119105] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(817), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(3776), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1080), 1, - sym_do_block, - STATE(2453), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4188), 1, - sym_label, + ACTIONS(3913), 1, + sym__terminator, + ACTIONS(3915), 1, + anon_sym_NO_DASHERROR, + STATE(2464), 1, + aux_sym_assign_statement_repeat1, + STATE(3072), 1, + sym_assignment, STATE(2514), 2, sym_comment, sym_include, - [119010] = 11, + STATE(4599), 2, + sym_qualified_name, + sym_object_access, + [119138] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(3917), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1435), 1, - sym_do_block, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, - STATE(2515), 2, + STATE(3072), 1, + sym_assignment, + ACTIONS(3920), 2, + sym__terminator, + anon_sym_NO_DASHERROR, + STATE(4599), 2, + sym_qualified_name, + sym_object_access, + STATE(2515), 3, sym_comment, sym_include, - [119045] = 11, - ACTIONS(3), 1, + aux_sym_assign_statement_repeat1, + [119167] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(817), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, - sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1080), 1, - sym_do_block, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4188), 1, - sym_label, + ACTIONS(1878), 1, + aux_sym_variable_definition_token2, STATE(2516), 2, sym_comment, sym_include, - [119080] = 10, + ACTIONS(1876), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [119192] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3906), 1, - sym__terminator, - ACTIONS(3908), 1, - aux_sym_query_definition_token3, - STATE(2604), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(3924), 1, + anon_sym_LIKE, STATE(2517), 2, sym_comment, sym_include, - [119113] = 11, + ACTIONS(3922), 6, + sym__terminator, + aux_sym_variable_tuning_token6, + aux_sym_variable_definition_token6, + aux_sym_temp_table_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [119217] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(253), 1, - aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(3756), 1, sym_identifier, - ACTIONS(1281), 1, - aux_sym_input_expression_token2, - STATE(1451), 1, - sym_do_block, - STATE(2814), 1, - aux_sym_on_statement_repeat2, - STATE(3106), 1, - sym_widget_phrase, - STATE(4419), 1, - sym_label, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + ACTIONS(3926), 1, + anon_sym_RPAREN, + STATE(3291), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, STATE(2518), 2, sym_comment, sym_include, - [119148] = 6, - ACTIONS(59), 1, + [119250] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3912), 1, - anon_sym_LIKE, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(2485), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(3389), 1, + sym_do_block, + STATE(4369), 1, + sym_label, STATE(2519), 2, sym_comment, sym_include, - ACTIONS(3910), 6, - sym__terminator, - aux_sym_variable_tuning_token6, - aux_sym_variable_definition_token6, - aux_sym_temp_table_tuning_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [119173] = 11, + [119285] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(253), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(1279), 1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(1281), 1, + ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1451), 1, + STATE(1038), 1, sym_do_block, - STATE(2515), 1, + STATE(2823), 1, aux_sym_on_statement_repeat2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - STATE(4419), 1, + STATE(4181), 1, sym_label, STATE(2520), 2, sym_comment, sym_include, - [119208] = 6, + [119320] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3776), 1, + sym_identifier, + ACTIONS(3928), 1, + sym__terminator, + ACTIONS(3930), 1, + anon_sym_NO_DASHERROR, + STATE(2509), 1, + aux_sym_assign_statement_repeat1, + STATE(3072), 1, + sym_assignment, + STATE(2521), 2, + sym_comment, + sym_include, + STATE(4599), 2, + sym_qualified_name, + sym_object_access, + [119353] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3916), 1, + ACTIONS(3934), 1, anon_sym_LIKE, - STATE(2521), 2, + STATE(2522), 2, sym_comment, sym_include, - ACTIONS(3914), 6, + ACTIONS(3932), 6, sym__terminator, aux_sym_variable_tuning_token6, aux_sym_variable_definition_token6, aux_sym_temp_table_tuning_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [119233] = 6, + [119378] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1890), 1, - aux_sym_variable_definition_token2, - STATE(2522), 2, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3936), 1, + anon_sym_COLON, + STATE(2751), 1, + sym_while_phrase, + STATE(3020), 1, + sym_on_error_phrase, + STATE(3137), 1, + sym_on_quit_phrase, + STATE(4394), 1, + sym_on_stop_phrase, + STATE(2523), 2, sym_comment, sym_include, - ACTIONS(1888), 6, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [119258] = 10, + [119413] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(261), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - ACTIONS(3918), 1, - anon_sym_RPAREN, - STATE(3381), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2523), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1521), 1, + sym_do_block, + STATE(2413), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4431), 1, + sym_label, + STATE(2524), 2, sym_comment, sym_include, - [119291] = 10, + [119448] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - ACTIONS(3920), 1, - anon_sym_RPAREN, - STATE(3368), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2524), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(955), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4181), 1, + sym_label, + STATE(2525), 2, sym_comment, sym_include, - [119324] = 10, + [119483] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(3756), 1, sym_identifier, - ACTIONS(3711), 1, + ACTIONS(3762), 1, aux_sym_function_parameter_token1, - ACTIONS(3922), 1, + ACTIONS(3938), 1, anon_sym_RPAREN, - STATE(3503), 1, + STATE(3320), 1, sym_function_parameter, - STATE(4023), 1, + STATE(4013), 1, sym_function_parameter_mode, - ACTIONS(3709), 2, + ACTIONS(3760), 2, aux_sym_input_expression_token1, aux_sym_argument_mode_token1, - STATE(2525), 2, - sym_comment, - sym_include, - [119357] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2564), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2734), 1, - sym_on_quit_phrase, - STATE(3389), 1, - sym_on_stop_phrase, - STATE(3390), 1, - aux_sym_for_statement_repeat1, STATE(2526), 2, sym_comment, sym_include, - [119389] = 9, - ACTIONS(59), 1, + [119516] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3926), 1, - sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(955), 1, + sym_do_block, + STATE(2538), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4181), 1, + sym_label, STATE(2527), 2, sym_comment, sym_include, - [119419] = 10, - ACTIONS(59), 1, + [119551] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2427), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2772), 1, - sym_on_quit_phrase, - STATE(3134), 1, - aux_sym_for_statement_repeat1, - STATE(3135), 1, - sym_on_stop_phrase, + ACTIONS(261), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1521), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4431), 1, + sym_label, STATE(2528), 2, sym_comment, sym_include, - [119451] = 9, + [119586] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3928), 1, + ACTIONS(3756), 1, sym_identifier, - STATE(2012), 1, - aux_sym_sort_clause_repeat1, - STATE(2669), 1, - sym_sort_column, - STATE(4199), 1, - sym_object_access, - STATE(2064), 2, - sym_qualified_name, - sym_function_call, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + ACTIONS(3940), 1, + anon_sym_RPAREN, + STATE(3348), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, STATE(2529), 2, sym_comment, sym_include, - [119481] = 9, + [119619] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3001), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(3825), 1, + anon_sym_DQUOTE, + ACTIONS(3827), 1, + anon_sym_SQUOTE, + STATE(2977), 1, + sym__string_literal, + ACTIONS(3942), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(1818), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(2530), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [119511] = 5, + [119650] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(3752), 1, + anon_sym_DQUOTE, + ACTIONS(3754), 1, + anon_sym_SQUOTE, + ACTIONS(3944), 1, + sym_identifier, + STATE(1818), 2, + sym_double_quoted_string, + sym_single_quoted_string, STATE(2531), 2, sym_comment, sym_include, - ACTIONS(3930), 6, - sym_identifier, - sym__terminator, - aux_sym_variable_definition_token5, - aux_sym_field_definition_token1, - aux_sym_index_tuning_token1, - aux_sym_index_definition_token1, - [119533] = 10, - ACTIONS(59), 1, + STATE(3071), 2, + sym_qualified_name, + sym__string_literal, + [119681] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2393), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2874), 1, - sym_on_quit_phrase, - STATE(3084), 1, - sym_on_stop_phrase, - STATE(3085), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3756), 1, + sym_identifier, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + ACTIONS(3946), 1, + anon_sym_RPAREN, + STATE(3287), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, STATE(2532), 2, sym_comment, sym_include, - [119565] = 10, + [119714] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2433), 1, - anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - STATE(2799), 1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3948), 1, + anon_sym_COLON, + STATE(2859), 1, + sym_while_phrase, + STATE(2960), 1, + sym_on_error_phrase, + STATE(3162), 1, sym_on_quit_phrase, - STATE(3271), 1, + STATE(4301), 1, sym_on_stop_phrase, - STATE(3274), 1, - aux_sym_for_statement_repeat1, STATE(2533), 2, sym_comment, sym_include, - [119597] = 10, + [119749] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2375), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2755), 1, - sym_on_quit_phrase, - STATE(3137), 1, - sym_on_stop_phrase, - STATE(3138), 1, - aux_sym_for_statement_repeat1, + ACTIONS(1816), 1, + aux_sym_variable_definition_token2, STATE(2534), 2, sym_comment, sym_include, - [119629] = 9, + ACTIONS(1814), 6, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [119774] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3932), 1, - sym__terminator, - STATE(2555), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3950), 1, + anon_sym_COLON, + STATE(2837), 1, + sym_while_phrase, + STATE(3039), 1, + sym_on_error_phrase, + STATE(3307), 1, + sym_on_quit_phrase, + STATE(4208), 1, + sym_on_stop_phrase, STATE(2535), 2, sym_comment, sym_include, - [119659] = 9, + [119809] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3613), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3952), 1, sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(3954), 1, + aux_sym_query_definition_token3, + STATE(2668), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2536), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [119689] = 9, + [119842] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3934), 1, + ACTIONS(3956), 1, sym__terminator, - STATE(2540), 1, + ACTIONS(3958), 1, + aux_sym_query_definition_token3, + STATE(2547), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2537), 2, sym_comment, sym_include, - [119719] = 10, - ACTIONS(59), 1, + [119875] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2560), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2718), 1, - sym_on_quit_phrase, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3318), 1, - sym_on_stop_phrase, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(997), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4181), 1, + sym_label, STATE(2538), 2, sym_comment, sym_include, - [119751] = 9, - ACTIONS(59), 1, + [119910] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3936), 1, - sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1016), 1, + sym_do_block, + STATE(2823), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4166), 1, + sym_label, STATE(2539), 2, sym_comment, sym_include, - [119781] = 8, - ACTIONS(59), 1, + [119945] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3938), 1, - sym__terminator, - ACTIONS(3940), 1, - aux_sym_query_definition_tuning_token1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3943), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2540), 3, + ACTIONS(3756), 1, + sym_identifier, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + ACTIONS(3960), 1, + anon_sym_RPAREN, + STATE(3227), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2540), 2, sym_comment, sym_include, - aux_sym_query_definition_repeat1, - [119809] = 9, - ACTIONS(59), 1, + [119978] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3613), 1, - sym__terminator, - STATE(2605), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1016), 1, + sym_do_block, + STATE(2442), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4166), 1, + sym_label, STATE(2541), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [119839] = 10, + [120013] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2409), 1, - anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - STATE(2790), 1, + ACTIONS(3067), 1, + aux_sym_while_phrase_token1, + ACTIONS(3962), 1, + anon_sym_COLON, + STATE(2846), 1, + sym_while_phrase, + STATE(2971), 1, + sym_on_error_phrase, + STATE(3518), 1, sym_on_quit_phrase, - STATE(3039), 1, - aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(4532), 1, sym_on_stop_phrase, STATE(2542), 2, sym_comment, sym_include, - [119871] = 10, - ACTIONS(59), 1, + [120048] = 11, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2556), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2723), 1, - sym_on_quit_phrase, - STATE(3416), 1, - aux_sym_for_statement_repeat1, - STATE(3418), 1, - sym_on_stop_phrase, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(997), 1, + sym_do_block, + STATE(2520), 1, + aux_sym_on_statement_repeat2, + STATE(3173), 1, + sym_widget_phrase, + STATE(4181), 1, + sym_label, STATE(2543), 2, sym_comment, sym_include, - [119903] = 9, + [120083] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3946), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3705), 1, sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, STATE(2544), 2, sym_comment, sym_include, - [119933] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [120113] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3685), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3964), 1, sym__terminator, - STATE(2571), 1, - aux_sym_temp_table_definition_repeat2, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2545), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [119963] = 10, + [120143] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2423), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2789), 1, - sym_on_quit_phrase, - STATE(3289), 1, - sym_on_stop_phrase, - STATE(3291), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3966), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2546), 2, sym_comment, sym_include, - [119995] = 9, + [120173] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3948), 1, + ACTIONS(3968), 1, sym__terminator, - STATE(2561), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2547), 2, sym_comment, sym_include, - [120025] = 9, + [120203] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3950), 1, + ACTIONS(3970), 1, sym__terminator, - STATE(2565), 1, + STATE(2550), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2548), 2, sym_comment, sym_include, - [120055] = 10, + [120233] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2552), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2730), 1, - sym_on_quit_phrase, - STATE(3395), 1, - aux_sym_for_statement_repeat1, - STATE(3396), 1, - sym_on_stop_phrase, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3972), 1, + sym__terminator, + STATE(2546), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2549), 2, sym_comment, sym_include, - [120087] = 9, + [120263] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3685), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3974), 1, sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2550), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [120117] = 9, + [120293] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3898), 1, - sym__terminator, - STATE(2537), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2441), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2820), 1, + sym_on_quit_phrase, + STATE(3205), 1, + aux_sym_for_statement_repeat1, + STATE(3207), 1, + sym_on_stop_phrase, STATE(2551), 2, sym_comment, sym_include, - [120147] = 10, + [120325] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2413), 1, + ACTIONS(2600), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2757), 1, + STATE(2756), 1, sym_on_quit_phrase, - STATE(3351), 1, - aux_sym_for_statement_repeat1, - STATE(3353), 1, + STATE(3118), 1, sym_on_stop_phrase, + STATE(3119), 1, + aux_sym_for_statement_repeat1, STATE(2552), 2, sym_comment, sym_include, - [120179] = 9, + [120357] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3952), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(3980), 1, + aux_sym_data_relation_token1, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2950), 1, + aux_sym_data_relation_repeat1, + STATE(4322), 1, + sym_data_relation, STATE(2553), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [120209] = 9, + [120389] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3954), 1, + ACTIONS(3956), 1, sym__terminator, - STATE(2540), 1, + STATE(2547), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, STATE(2554), 2, sym_comment, sym_include, - [120239] = 9, + [120419] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3956), 1, - sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2588), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2914), 1, + sym_on_quit_phrase, + STATE(3130), 1, + sym_on_stop_phrase, + STATE(3131), 1, + aux_sym_for_statement_repeat1, STATE(2555), 2, sym_comment, sym_include, - [120269] = 10, + [120451] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3982), 1, + sym__terminator, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2556), 2, + sym_comment, + sym_include, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [120481] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2546), 1, - anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2811), 1, + ACTIONS(3984), 1, + anon_sym_COLON, + STATE(2781), 1, sym_on_quit_phrase, - STATE(3253), 1, + STATE(3115), 1, sym_on_stop_phrase, - STATE(3255), 1, + STATE(3116), 1, aux_sym_for_statement_repeat1, - STATE(2556), 2, + STATE(2557), 2, sym_comment, sym_include, - [120301] = 9, + [120513] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3958), 1, + ACTIONS(3986), 1, sym__terminator, - STATE(2564), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2557), 2, + STATE(2558), 2, sym_comment, sym_include, - [120331] = 10, + [120543] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2554), 1, + ACTIONS(3231), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2743), 1, + STATE(2787), 1, sym_on_quit_phrase, - STATE(3174), 1, - aux_sym_for_statement_repeat1, - STATE(3175), 1, + STATE(3113), 1, sym_on_stop_phrase, - STATE(2558), 2, + STATE(3114), 1, + aux_sym_for_statement_repeat1, + STATE(2559), 2, sym_comment, sym_include, - [120363] = 10, - ACTIONS(59), 1, + [120575] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + STATE(2560), 2, + sym_comment, + sym_include, + ACTIONS(3988), 6, + sym_identifier, anon_sym_COMMA, - ACTIONS(2377), 1, anon_sym_COLON, - ACTIONS(3924), 1, aux_sym_on_error_phrase_token1, - STATE(2778), 1, - sym_on_quit_phrase, - STATE(3315), 1, - aux_sym_for_statement_repeat1, - STATE(3319), 1, - sym_on_stop_phrase, - STATE(2559), 2, - sym_comment, - sym_include, - [120395] = 9, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [120597] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, - sym_identifier, - ACTIONS(3711), 1, - aux_sym_function_parameter_token1, - STATE(3782), 1, - sym_function_parameter, - STATE(4023), 1, - sym_function_parameter_mode, - ACTIONS(3709), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2560), 2, + STATE(2561), 2, sym_comment, sym_include, - [120425] = 9, + ACTIONS(3990), 6, + sym_identifier, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [120619] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3960), 1, + ACTIONS(3992), 1, sym__terminator, - STATE(2540), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2561), 2, + STATE(2562), 2, sym_comment, sym_include, - [120455] = 8, - ACTIONS(3), 1, + [120649] = 9, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3964), 1, - aux_sym_field_definition_token1, - STATE(2624), 1, - aux_sym_widget_phrase_repeat1, - STATE(2972), 1, - sym_widget_field, - STATE(2562), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3994), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2563), 2, sym_comment, sym_include, - ACTIONS(3962), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [120483] = 10, + [120679] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3222), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2771), 1, - sym_on_quit_phrase, - STATE(3240), 1, - sym_on_stop_phrase, - STATE(3244), 1, - aux_sym_for_statement_repeat1, - STATE(2563), 2, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3656), 1, + sym__terminator, + STATE(2556), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2564), 2, sym_comment, sym_include, - [120515] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [120709] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3966), 1, + ACTIONS(3897), 1, sym__terminator, - STATE(2540), 1, + STATE(2558), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2564), 2, + STATE(2565), 2, sym_comment, sym_include, - [120545] = 9, + [120739] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3968), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3656), 1, sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2565), 2, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2566), 2, sym_comment, sym_include, - [120575] = 10, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [120769] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2544), 1, + ACTIONS(2445), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2819), 1, + STATE(2783), 1, sym_on_quit_phrase, - STATE(3236), 1, + STATE(3210), 1, sym_on_stop_phrase, - STATE(3238), 1, + STATE(3211), 1, aux_sym_for_statement_repeat1, - STATE(2566), 2, + STATE(2567), 2, sym_comment, sym_include, - [120607] = 9, + [120801] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3085), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2567), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3996), 1, + anon_sym_COLON, + STATE(2801), 1, + sym_on_quit_phrase, + STATE(3109), 1, + sym_on_stop_phrase, + STATE(3110), 1, + aux_sym_for_statement_repeat1, + STATE(2568), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [120637] = 9, + [120833] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(2985), 1, + ACTIONS(3663), 1, sym__terminator, - STATE(2653), 1, + STATE(2613), 1, aux_sym_temp_table_definition_repeat2, - STATE(2568), 2, + STATE(2569), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [120667] = 9, + [120863] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2570), 2, + sym_comment, + sym_include, + ACTIONS(3998), 6, + sym_identifier, + sym__terminator, + aux_sym_variable_definition_token5, + aux_sym_field_definition_token1, + aux_sym_index_tuning_token1, + aux_sym_index_definition_token1, + [120885] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3970), 1, - sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2569), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2606), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2829), 1, + sym_on_quit_phrase, + STATE(3202), 1, + sym_on_stop_phrase, + STATE(3203), 1, + aux_sym_for_statement_repeat1, + STATE(2571), 2, sym_comment, sym_include, - [120697] = 10, + [120917] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3972), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3974), 1, - aux_sym_data_relation_token1, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2913), 1, - aux_sym_data_relation_repeat1, - STATE(4510), 1, - sym_data_relation, - STATE(2570), 2, + ACTIONS(3239), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2745), 1, + sym_on_quit_phrase, + STATE(3120), 1, + sym_on_stop_phrase, + STATE(3121), 1, + aux_sym_for_statement_repeat1, + STATE(2572), 2, sym_comment, sym_include, - [120729] = 9, + [120949] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3585), 1, + ACTIONS(3663), 1, sym__terminator, - STATE(2653), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2571), 2, + STATE(2573), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [120759] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2395), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2794), 1, - sym_on_quit_phrase, - STATE(3091), 1, - sym_on_stop_phrase, - STATE(3092), 1, - aux_sym_for_statement_repeat1, - STATE(2572), 2, - sym_comment, - sym_include, - [120791] = 8, + [120979] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3964), 1, + ACTIONS(4002), 1, aux_sym_field_definition_token1, - STATE(2562), 1, + STATE(2674), 1, aux_sym_widget_phrase_repeat1, - STATE(2972), 1, + STATE(2918), 1, sym_widget_field, - STATE(2573), 2, + STATE(2574), 2, sym_comment, sym_include, - ACTIONS(3976), 3, + ACTIONS(4000), 3, sym_identifier, aux_sym_input_expression_token2, aux_sym_do_block_token1, - [120819] = 10, + [121007] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2429), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2735), 1, - sym_on_quit_phrase, - STATE(3178), 1, - aux_sym_for_statement_repeat1, - STATE(3184), 1, - sym_on_stop_phrase, - STATE(2574), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4004), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2575), 2, sym_comment, sym_include, - [120851] = 10, + [121037] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3972), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3974), 1, - aux_sym_data_relation_token1, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2955), 1, - aux_sym_data_relation_repeat1, - STATE(4397), 1, - sym_data_relation, - STATE(2575), 2, + ACTIONS(2447), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2830), 1, + sym_on_quit_phrase, + STATE(3200), 1, + sym_on_stop_phrase, + STATE(3201), 1, + aux_sym_for_statement_repeat1, + STATE(2576), 2, sym_comment, sym_include, - [120883] = 10, + [121069] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3978), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(2820), 1, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2728), 1, sym_on_quit_phrase, - STATE(3222), 1, + STATE(3289), 1, sym_on_stop_phrase, - STATE(3225), 1, + STATE(3290), 1, aux_sym_for_statement_repeat1, - STATE(2576), 2, + STATE(2577), 2, sym_comment, sym_include, - [120915] = 10, + [121101] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3196), 1, + ACTIONS(2602), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2822), 1, + STATE(2832), 1, sym_on_quit_phrase, - STATE(3038), 1, + STATE(3198), 1, sym_on_stop_phrase, - STATE(3221), 1, + STATE(3199), 1, aux_sym_for_statement_repeat1, - STATE(2577), 2, + STATE(2578), 2, sym_comment, sym_include, - [120947] = 9, + [121133] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3980), 1, + ACTIONS(4006), 1, sym__terminator, - STATE(2540), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2578), 2, + STATE(2579), 2, sym_comment, sym_include, - [120977] = 9, + [121163] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3982), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3703), 1, sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2579), 2, + STATE(2566), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2580), 2, sym_comment, sym_include, - [121007] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [121193] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3878), 1, + ACTIONS(4008), 1, sym__terminator, - STATE(2691), 1, + STATE(2603), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2580), 2, + STATE(2581), 2, sym_comment, sym_include, - [121037] = 9, + [121223] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3675), 1, + ACTIONS(3703), 1, sym__terminator, - STATE(2553), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2581), 2, + STATE(2582), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [121067] = 10, + [121253] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2550), 1, + ACTIONS(2594), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2795), 1, + STATE(2773), 1, sym_on_quit_phrase, - STATE(3276), 1, + STATE(3122), 1, sym_on_stop_phrase, - STATE(3279), 1, + STATE(3123), 1, aux_sym_for_statement_repeat1, - STATE(2582), 2, + STATE(2583), 2, sym_comment, sym_include, - [121099] = 10, + [121285] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3924), 1, + ACTIONS(2598), 1, + anon_sym_COLON, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3984), 1, + STATE(2840), 1, + sym_on_quit_phrase, + STATE(3196), 1, + sym_on_stop_phrase, + STATE(3197), 1, + aux_sym_for_statement_repeat1, + STATE(2584), 2, + sym_comment, + sym_include, + [121317] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3316), 1, anon_sym_COLON, - STATE(2832), 1, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2847), 1, sym_on_quit_phrase, - STATE(3205), 1, + STATE(3191), 1, sym_on_stop_phrase, - STATE(3208), 1, + STATE(3192), 1, aux_sym_for_statement_repeat1, - STATE(2583), 2, + STATE(2585), 2, sym_comment, sym_include, - [121131] = 9, + [121349] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3852), 1, + ACTIONS(4010), 1, sym__terminator, - STATE(2527), 1, + STATE(2643), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2584), 2, + STATE(2586), 2, sym_comment, sym_include, - [121161] = 9, + [121379] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3906), 1, + ACTIONS(4012), 1, sym__terminator, - STATE(2604), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2585), 2, + STATE(2587), 2, sym_comment, sym_include, - [121191] = 9, + [121409] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3645), 1, + ACTIONS(3177), 1, sym__terminator, - STATE(2653), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2586), 2, + STATE(2588), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [121221] = 10, + [121439] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2411), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2852), 1, + sym_on_quit_phrase, + STATE(3233), 1, + sym_on_stop_phrase, + STATE(3236), 1, + aux_sym_for_statement_repeat1, + STATE(2589), 2, + sym_comment, + sym_include, + [121471] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2586), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2860), 1, + sym_on_quit_phrase, + STATE(3189), 1, + sym_on_stop_phrase, + STATE(3190), 1, + aux_sym_for_statement_repeat1, + STATE(2590), 2, + sym_comment, + sym_include, + [121503] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2548), 1, + ACTIONS(2409), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2807), 1, + STATE(2805), 1, sym_on_quit_phrase, - STATE(3259), 1, - sym_on_stop_phrase, - STATE(3263), 1, + STATE(3224), 1, aux_sym_for_statement_repeat1, - STATE(2587), 2, + STATE(3225), 1, + sym_on_stop_phrase, + STATE(2591), 2, sym_comment, sym_include, - [121253] = 10, + [121535] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3986), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2745), 1, + STATE(2863), 1, sym_on_quit_phrase, - STATE(3376), 1, + STATE(3186), 1, sym_on_stop_phrase, - STATE(3377), 1, + STATE(3187), 1, aux_sym_for_statement_repeat1, - STATE(2588), 2, + STATE(2592), 2, sym_comment, sym_include, - [121285] = 9, + [121567] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3675), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2589), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2864), 1, + sym_on_quit_phrase, + STATE(3244), 1, + aux_sym_for_statement_repeat1, + STATE(3245), 1, + sym_on_stop_phrase, + STATE(2593), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [121315] = 6, + [121599] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3988), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - STATE(2590), 3, + ACTIONS(3281), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2875), 1, + sym_on_quit_phrase, + STATE(3184), 1, + sym_on_stop_phrase, + STATE(3185), 1, + aux_sym_for_statement_repeat1, + STATE(2594), 2, sym_comment, sym_include, - aux_sym_data_relation_repeat1, - ACTIONS(3809), 4, - sym__terminator, - anon_sym_RPAREN, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [121339] = 10, + [121631] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3731), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3991), 1, - aux_sym__block_terminator_token1, - ACTIONS(3993), 1, - aux_sym_case_otherwise_branch_token1, - STATE(2887), 1, - aux_sym_case_body_repeat1, - STATE(3041), 1, - sym_case_when_branch, - STATE(4149), 1, - sym_case_otherwise_branch, - STATE(2591), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2425), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2759), 1, + sym_on_quit_phrase, + STATE(3301), 1, + aux_sym_for_statement_repeat1, + STATE(3303), 1, + sym_on_stop_phrase, + STATE(2595), 2, + sym_comment, + sym_include, + [121663] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4016), 1, + anon_sym_COLON, + STATE(2806), 1, + sym_on_quit_phrase, + STATE(3386), 1, + aux_sym_for_statement_repeat1, + STATE(3402), 1, + sym_on_stop_phrase, + STATE(2596), 2, sym_comment, sym_include, - [121371] = 9, + [121695] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3995), 1, + ACTIONS(3011), 1, sym__terminator, - STATE(2653), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2592), 2, + STATE(2597), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [121401] = 9, + [121725] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3585), 1, + ACTIONS(3011), 1, sym__terminator, - STATE(2690), 1, + STATE(2582), 1, aux_sym_temp_table_definition_repeat2, - STATE(2593), 2, + STATE(2598), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [121431] = 10, + [121755] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2562), 1, - anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2722), 1, + ACTIONS(4018), 1, + anon_sym_COLON, + STATE(2883), 1, sym_on_quit_phrase, - STATE(3152), 1, - aux_sym_for_statement_repeat1, - STATE(3292), 1, + STATE(3180), 1, sym_on_stop_phrase, - STATE(2594), 2, + STATE(3181), 1, + aux_sym_for_statement_repeat1, + STATE(2599), 2, sym_comment, sym_include, - [121463] = 9, + [121787] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3997), 1, - sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2595), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3247), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2784), 1, + sym_on_quit_phrase, + STATE(3413), 1, + aux_sym_for_statement_repeat1, + STATE(3418), 1, + sym_on_stop_phrase, + STATE(2600), 2, sym_comment, sym_include, - [121493] = 10, + [121819] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(2459), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2742), 1, + STATE(2760), 1, sym_on_quit_phrase, - STATE(3382), 1, - sym_on_stop_phrase, - STATE(3383), 1, + STATE(3275), 1, aux_sym_for_statement_repeat1, - STATE(2596), 2, + STATE(3277), 1, + sym_on_stop_phrase, + STATE(2601), 2, sym_comment, sym_include, - [121525] = 10, + [121851] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2542), 1, + ACTIONS(2592), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2776), 1, + STATE(2822), 1, sym_on_quit_phrase, - STATE(3313), 1, - aux_sym_for_statement_repeat1, - STATE(3314), 1, + STATE(3125), 1, sym_on_stop_phrase, - STATE(2597), 2, + STATE(3126), 1, + aux_sym_for_statement_repeat1, + STATE(2602), 2, sym_comment, sym_include, - [121557] = 9, + [121883] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3999), 1, + ACTIONS(4020), 1, sym__terminator, - STATE(2540), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2598), 2, - sym_comment, - sym_include, - [121587] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2599), 2, - sym_comment, - sym_include, - ACTIONS(4001), 6, - sym_identifier, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [121609] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2600), 2, - sym_comment, - sym_include, - ACTIONS(4003), 6, - sym_identifier, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [121631] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2720), 1, - sym_on_quit_phrase, - STATE(3302), 1, - aux_sym_for_statement_repeat1, - STATE(3303), 1, - sym_on_stop_phrase, - STATE(2601), 2, + STATE(2603), 2, sym_comment, sym_include, - [121663] = 9, + [121913] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4005), 1, + ACTIONS(4022), 1, sym__terminator, - STATE(2540), 1, + STATE(2545), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2602), 2, + STATE(2604), 2, sym_comment, sym_include, - [121693] = 10, + [121943] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4007), 1, + ACTIONS(4024), 1, anon_sym_COLON, - STATE(2739), 1, + STATE(2715), 1, sym_on_quit_phrase, - STATE(3385), 1, + STATE(3337), 1, sym_on_stop_phrase, - STATE(3387), 1, + STATE(3338), 1, aux_sym_for_statement_repeat1, - STATE(2603), 2, + STATE(2605), 2, sym_comment, sym_include, - [121725] = 9, + [121975] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4009), 1, - sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2604), 2, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(2606), 3, sym_comment, sym_include, - [121755] = 9, + aux_sym_data_relation_repeat1, + ACTIONS(3905), 4, + sym__terminator, + anon_sym_RPAREN, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [121999] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(4011), 1, + ACTIONS(3045), 1, sym__terminator, - STATE(2653), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2605), 2, + STATE(2607), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [121785] = 9, + [122029] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4029), 1, + sym_identifier, + STATE(2028), 1, + aux_sym_sort_clause_repeat1, + STATE(2621), 1, + sym_sort_column, + STATE(4296), 1, + sym_object_access, + STATE(2071), 2, + sym_qualified_name, + sym_function_call, + STATE(2608), 2, + sym_comment, + sym_include, + [122059] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2439), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2892), 1, + sym_on_quit_phrase, + STATE(3163), 1, + sym_on_stop_phrase, + STATE(3164), 1, + aux_sym_for_statement_repeat1, + STATE(2609), 2, + sym_comment, + sym_include, + [122091] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2610), 2, + sym_comment, + sym_include, + ACTIONS(4031), 6, + sym_identifier, + sym__terminator, + aux_sym_variable_definition_token5, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + aux_sym_index_tuning_token1, aux_sym_index_definition_token1, - ACTIONS(3645), 1, + [122113] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2999), 1, sym__terminator, - STATE(2536), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2606), 2, + STATE(2611), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [121815] = 9, + [122143] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3815), 1, + ACTIONS(3883), 1, sym__terminator, - STATE(2676), 1, + STATE(2575), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2607), 2, + STATE(2612), 2, sym_comment, sym_include, - [121845] = 9, + [122173] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4013), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3681), 1, sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2608), 2, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2613), 2, sym_comment, sym_include, - [121875] = 5, - ACTIONS(3), 1, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [122203] = 10, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2609), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3263), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2915), 1, + sym_on_quit_phrase, + STATE(3341), 1, + sym_on_stop_phrase, + STATE(3343), 1, + aux_sym_for_statement_repeat1, + STATE(2614), 2, sym_comment, sym_include, - ACTIONS(4015), 6, - sym_identifier, - sym__terminator, - aux_sym_variable_definition_token5, - aux_sym_field_definition_token1, - aux_sym_index_tuning_token1, - aux_sym_index_definition_token1, - [121897] = 9, + [122235] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4017), 1, + ACTIONS(3867), 1, sym__terminator, - STATE(2569), 1, + STATE(2712), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2610), 2, + STATE(2615), 2, + sym_comment, + sym_include, + [122265] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4035), 1, + aux_sym_do_tuning_token1, + STATE(2951), 1, + sym_do_tuning, + ACTIONS(4033), 3, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + STATE(2616), 3, sym_comment, sym_include, - [121927] = 10, + aux_sym_do_block_repeat1, + [122291] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4019), 1, + ACTIONS(4038), 1, anon_sym_COLON, - STATE(2810), 1, + STATE(2904), 1, sym_on_quit_phrase, - STATE(3512), 1, + STATE(3345), 1, sym_on_stop_phrase, - STATE(3514), 1, + STATE(3346), 1, aux_sym_for_statement_repeat1, - STATE(2611), 2, + STATE(2617), 2, sym_comment, sym_include, - [121959] = 9, + [122323] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3842), 1, + ACTIONS(4040), 1, sym__terminator, - STATE(2578), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, + ACTIONS(4042), 1, + aux_sym_query_definition_tuning_token1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(4045), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2612), 2, + STATE(2618), 3, sym_comment, sym_include, - [121989] = 10, + aux_sym_query_definition_repeat1, + [122351] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3200), 1, + ACTIONS(2451), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2706), 1, + STATE(2732), 1, sym_on_quit_phrase, - STATE(3455), 1, + STATE(3215), 1, aux_sym_for_statement_repeat1, - STATE(3456), 1, + STATE(3216), 1, sym_on_stop_phrase, - STATE(2613), 2, + STATE(2619), 2, sym_comment, sym_include, - [122021] = 10, + [122383] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3681), 1, + sym__terminator, + STATE(2711), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2620), 2, + sym_comment, + sym_include, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [122413] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2621), 2, + sym_comment, + sym_include, + ACTIONS(4048), 6, + sym_identifier, anon_sym_COMMA, - ACTIONS(3198), 1, anon_sym_COLON, - ACTIONS(3924), 1, aux_sym_on_error_phrase_token1, - STATE(2733), 1, - sym_on_quit_phrase, - STATE(3392), 1, - sym_on_stop_phrase, - STATE(3393), 1, - aux_sym_for_statement_repeat1, - STATE(2614), 2, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [122435] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4029), 1, + sym_identifier, + STATE(2033), 1, + aux_sym_sort_clause_repeat1, + STATE(2621), 1, + sym_sort_column, + STATE(4296), 1, + sym_object_access, + STATE(2071), 2, + sym_qualified_name, + sym_function_call, + STATE(2622), 2, sym_comment, sym_include, - [122053] = 9, + [122465] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3677), 1, + ACTIONS(4050), 1, sym__terminator, - STATE(2592), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2615), 2, + STATE(2623), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [122083] = 10, + [122495] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2411), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2698), 1, - sym_on_quit_phrase, - STATE(3442), 1, - aux_sym_for_statement_repeat1, - STATE(3444), 1, - sym_on_stop_phrase, - STATE(2616), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4052), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2624), 2, sym_comment, sym_include, - [122115] = 10, + [122525] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(2566), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2731), 1, - sym_on_quit_phrase, - STATE(3399), 1, - sym_on_stop_phrase, - STATE(3401), 1, - aux_sym_for_statement_repeat1, - STATE(2617), 2, + ACTIONS(3980), 1, + aux_sym_data_relation_token1, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2985), 1, + aux_sym_data_relation_repeat1, + STATE(4411), 1, + sym_data_relation, + STATE(2625), 2, sym_comment, sym_include, - [122147] = 9, + [122557] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3801), 1, + ACTIONS(4054), 1, sym__terminator, - STATE(2598), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2618), 2, + STATE(2626), 2, sym_comment, sym_include, - [122177] = 10, + [122587] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2568), 1, + ACTIONS(2596), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2729), 1, - sym_on_quit_phrase, - STATE(3403), 1, - sym_on_stop_phrase, - STATE(3404), 1, - aux_sym_for_statement_repeat1, - STATE(2619), 2, - sym_comment, - sym_include, - [122209] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3174), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2620), 2, + STATE(2900), 1, + sym_on_quit_phrase, + STATE(3349), 1, + sym_on_stop_phrase, + STATE(3350), 1, + aux_sym_for_statement_repeat1, + STATE(2627), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [122239] = 9, + [122619] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4021), 1, - sym__terminator, - STATE(2608), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2621), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3245), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2880), 1, + sym_on_quit_phrase, + STATE(3355), 1, + sym_on_stop_phrase, + STATE(3362), 1, + aux_sym_for_statement_repeat1, + STATE(2628), 2, sym_comment, sym_include, - [122269] = 10, + [122651] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2387), 1, + ACTIONS(2604), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2898), 1, + STATE(2816), 1, sym_on_quit_phrase, - STATE(3099), 1, + STATE(3295), 1, aux_sym_for_statement_repeat1, - STATE(3101), 1, + STATE(3317), 1, sym_on_stop_phrase, - STATE(2622), 2, + STATE(2629), 2, sym_comment, sym_include, - [122301] = 9, + [122683] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4023), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3158), 1, sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2623), 2, + STATE(2544), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2630), 2, sym_comment, sym_include, - [122331] = 8, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [122713] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4025), 1, + ACTIONS(4056), 1, sym_identifier, - ACTIONS(4030), 1, + ACTIONS(4061), 1, aux_sym_field_definition_token1, - STATE(2972), 1, + STATE(2918), 1, sym_widget_field, - ACTIONS(4028), 2, + ACTIONS(4059), 2, aux_sym_input_expression_token2, aux_sym_do_block_token1, - STATE(2624), 3, + STATE(2631), 3, sym_comment, sym_include, aux_sym_widget_phrase_repeat1, - [122359] = 10, + [122741] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2385), 1, + ACTIONS(2584), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2869), 1, + STATE(2868), 1, sym_on_quit_phrase, - STATE(3115), 1, - aux_sym_for_statement_repeat1, - STATE(3117), 1, + STATE(3364), 1, sym_on_stop_phrase, - STATE(2625), 2, + STATE(3369), 1, + aux_sym_for_statement_repeat1, + STATE(2632), 2, + sym_comment, + sym_include, + [122773] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4064), 1, + sym__terminator, + ACTIONS(4066), 1, + aux_sym_field_definition_token1, + ACTIONS(4069), 1, + aux_sym_index_definition_token1, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + STATE(2633), 3, sym_comment, sym_include, - [122391] = 9, + aux_sym_temp_table_definition_repeat2, + [122801] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4033), 1, + ACTIONS(4072), 1, sym__terminator, - STATE(2540), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2626), 2, + STATE(2634), 2, sym_comment, sym_include, - [122421] = 9, + [122831] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4035), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3697), 1, sym__terminator, STATE(2623), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2635), 2, + sym_comment, + sym_include, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [122861] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3790), 1, + sym__terminator, + STATE(2624), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2627), 2, + STATE(2636), 2, sym_comment, sym_include, - [122451] = 7, + [122891] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, - aux_sym_do_tuning_token1, - STATE(2924), 1, - sym_do_tuning, - ACTIONS(4037), 3, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - STATE(2628), 3, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3158), 1, + sym__terminator, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2637), 2, sym_comment, sym_include, - aux_sym_do_block_repeat1, - [122477] = 10, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [122921] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3697), 1, + sym__terminator, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2638), 2, + sym_comment, + sym_include, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [122951] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2425), 1, + ACTIONS(2590), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2728), 1, + STATE(2849), 1, sym_on_quit_phrase, - STATE(3407), 1, - sym_on_stop_phrase, - STATE(3408), 1, + STATE(3331), 1, aux_sym_for_statement_repeat1, - STATE(2629), 2, + STATE(3332), 1, + sym_on_stop_phrase, + STATE(2639), 2, sym_comment, sym_include, - [122509] = 9, + [122983] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3677), 1, + ACTIONS(3025), 1, sym__terminator, - STATE(2653), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2630), 2, + STATE(2640), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [122539] = 10, + [123013] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4042), 1, + ACTIONS(2580), 1, anon_sym_COLON, - STATE(2851), 1, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2856), 1, sym_on_quit_phrase, - STATE(3061), 1, + STATE(3370), 1, sym_on_stop_phrase, - STATE(3062), 1, + STATE(3371), 1, aux_sym_for_statement_repeat1, - STATE(2631), 2, + STATE(2641), 2, sym_comment, sym_include, - [122571] = 9, + [123045] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, - sym__terminator, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - STATE(2653), 1, + ACTIONS(3079), 1, + sym__terminator, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2632), 2, + STATE(2642), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [122601] = 9, + [123075] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3761), 1, + ACTIONS(4074), 1, sym__terminator, - STATE(2626), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2633), 2, + STATE(2643), 2, sym_comment, sym_include, - [122631] = 10, + [123105] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2572), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2717), 1, - sym_on_quit_phrase, - STATE(3461), 1, - aux_sym_for_statement_repeat1, - STATE(3464), 1, - sym_on_stop_phrase, - STATE(2634), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4076), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2644), 2, sym_comment, sym_include, - [122663] = 10, + [123135] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, ACTIONS(3257), 1, anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2785), 1, - sym_on_quit_phrase, - STATE(3501), 1, - aux_sym_for_statement_repeat1, - STATE(3502), 1, - sym_on_stop_phrase, - STATE(2635), 2, - sym_comment, - sym_include, - [122695] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2708), 1, + STATE(2874), 1, sym_on_quit_phrase, - STATE(3309), 1, + STATE(3325), 1, aux_sym_for_statement_repeat1, - STATE(3312), 1, - sym_on_stop_phrase, - STATE(2636), 2, - sym_comment, - sym_include, - [122727] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2570), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2727), 1, - sym_on_quit_phrase, - STATE(3412), 1, + STATE(3327), 1, sym_on_stop_phrase, - STATE(3413), 1, - aux_sym_for_statement_repeat1, - STATE(2637), 2, + STATE(2645), 2, sym_comment, sym_include, - [122759] = 9, + [123167] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(4044), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4078), 1, sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2638), 2, + STATE(2672), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2646), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [122789] = 10, + [123197] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3288), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2856), 1, - sym_on_quit_phrase, - STATE(3065), 1, - sym_on_stop_phrase, - STATE(3066), 1, - aux_sym_for_statement_repeat1, - STATE(2639), 2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4080), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2647), 2, sym_comment, sym_include, - [122821] = 9, + [123227] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4046), 1, + ACTIONS(4082), 1, sym__terminator, - STATE(2540), 1, + STATE(2647), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2640), 2, + STATE(2648), 2, sym_comment, sym_include, - [122851] = 9, + [123257] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2971), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4084), 1, sym__terminator, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - STATE(2550), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2641), 2, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2649), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [122881] = 10, + [123287] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4048), 1, + ACTIONS(4086), 1, anon_sym_COLON, - STATE(2857), 1, + STATE(2819), 1, sym_on_quit_phrase, - STATE(3067), 1, + STATE(3257), 1, sym_on_stop_phrase, - STATE(3068), 1, + STATE(3258), 1, aux_sym_for_statement_repeat1, - STATE(2642), 2, - sym_comment, - sym_include, - [122913] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3108), 1, - sym__terminator, - STATE(2586), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2643), 2, + STATE(2650), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [122943] = 9, + [123319] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4050), 1, + ACTIONS(4088), 1, sym__terminator, - STATE(2540), 1, + STATE(2644), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2644), 2, + STATE(2651), 2, sym_comment, sym_include, - [122973] = 9, + [123349] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3595), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4090), 1, sym__terminator, - STATE(2638), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2645), 2, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2652), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [123003] = 9, + [123379] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3745), 1, + ACTIONS(4092), 1, sym__terminator, - STATE(2640), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2646), 2, - sym_comment, - sym_include, - [123033] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(3974), 1, - aux_sym_data_relation_token1, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2942), 1, - aux_sym_data_relation_repeat1, - STATE(4497), 1, - sym_data_relation, - STATE(2647), 2, + STATE(2653), 2, sym_comment, sym_include, - [123065] = 10, + [123409] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4052), 1, - anon_sym_COLON, - STATE(2711), 1, - sym_on_quit_phrase, - STATE(3321), 1, - aux_sym_for_statement_repeat1, - STATE(3322), 1, - sym_on_stop_phrase, - STATE(2648), 2, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3707), 1, + sym__terminator, + STATE(2638), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2654), 2, sym_comment, sym_include, - [123097] = 10, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [123439] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2379), 1, + ACTIONS(2419), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2715), 1, + STATE(2734), 1, sym_on_quit_phrase, - STATE(3415), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(3417), 1, + STATE(3286), 1, sym_on_stop_phrase, - STATE(2649), 2, + STATE(2655), 2, sym_comment, sym_include, - [123129] = 10, + [123471] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3259), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2699), 1, - sym_on_quit_phrase, - STATE(3324), 1, - aux_sym_for_statement_repeat1, - STATE(3326), 1, - sym_on_stop_phrase, - STATE(2650), 2, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3707), 1, + sym__terminator, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2656), 2, sym_comment, sym_include, - [123161] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [123501] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4054), 1, + ACTIONS(4094), 1, sym__terminator, - STATE(2540), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2651), 2, + STATE(2657), 2, sym_comment, sym_include, - [123191] = 9, + [123531] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3108), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4096), 1, sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2652), 2, + STATE(2652), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2658), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [123221] = 8, + [123561] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4056), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4098), 1, sym__terminator, - ACTIONS(4058), 1, - aux_sym_field_definition_token1, - ACTIONS(4061), 1, - aux_sym_index_definition_token1, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - STATE(2653), 3, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2659), 2, sym_comment, sym_include, - aux_sym_temp_table_definition_repeat2, - [123249] = 9, + [123591] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4064), 1, + ACTIONS(4100), 1, sym__terminator, - STATE(2651), 1, + STATE(2649), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2654), 2, - sym_comment, - sym_include, - [123279] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2574), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2863), 1, - sym_on_quit_phrase, - STATE(3070), 1, - sym_on_stop_phrase, - STATE(3071), 1, - aux_sym_for_statement_repeat1, - STATE(2655), 2, + STATE(2660), 2, sym_comment, sym_include, - [123311] = 9, + [123621] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3044), 1, + ACTIONS(3079), 1, sym__terminator, - STATE(2692), 1, + STATE(2573), 1, aux_sym_temp_table_definition_repeat2, - STATE(2656), 2, + STATE(2661), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [123341] = 9, + [123651] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3044), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2657), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2465), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2857), 1, + sym_on_quit_phrase, + STATE(3128), 1, + sym_on_stop_phrase, + STATE(3129), 1, + aux_sym_for_statement_repeat1, + STATE(2662), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [123371] = 10, + [123683] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2417), 1, + ACTIONS(2443), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2716), 1, + STATE(2788), 1, sym_on_quit_phrase, - STATE(3421), 1, - sym_on_stop_phrase, - STATE(3422), 1, + STATE(3471), 1, aux_sym_for_statement_repeat1, - STATE(2658), 2, + STATE(3472), 1, + sym_on_stop_phrase, + STATE(2663), 2, sym_comment, sym_include, - [123403] = 9, - ACTIONS(59), 1, + [123715] = 9, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3595), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2659), 2, + ACTIONS(3756), 1, + sym_identifier, + ACTIONS(3762), 1, + aux_sym_function_parameter_token1, + STATE(3944), 1, + sym_function_parameter, + STATE(4013), 1, + sym_function_parameter_mode, + ACTIONS(3760), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2664), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [123433] = 9, + [123745] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4066), 1, + ACTIONS(3738), 1, sym__terminator, - STATE(2540), 1, + STATE(2659), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2660), 2, + STATE(2665), 2, sym_comment, sym_include, - [123463] = 10, + [123775] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4068), 1, - anon_sym_COLON, - STATE(2697), 1, - sym_on_quit_phrase, - STATE(3332), 1, - aux_sym_for_statement_repeat1, - STATE(3333), 1, - sym_on_stop_phrase, - STATE(2661), 2, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(4102), 1, + sym__terminator, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2666), 2, sym_comment, sym_include, - [123495] = 10, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [123805] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3232), 1, + ACTIONS(2453), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2864), 1, + STATE(2753), 1, sym_on_quit_phrase, - STATE(3075), 1, + STATE(3278), 1, sym_on_stop_phrase, - STATE(3077), 1, + STATE(3279), 1, aux_sym_for_statement_repeat1, - STATE(2662), 2, + STATE(2667), 2, sym_comment, sym_include, - [123527] = 9, + [123837] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4070), 1, + ACTIONS(4104), 1, sym__terminator, - STATE(2540), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2663), 2, + STATE(2668), 2, sym_comment, sym_include, - [123557] = 10, + [123867] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2373), 1, + ACTIONS(2461), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2806), 1, + STATE(2850), 1, sym_on_quit_phrase, - STATE(3265), 1, + STATE(3379), 1, sym_on_stop_phrase, - STATE(3268), 1, + STATE(3381), 1, aux_sym_for_statement_repeat1, - STATE(2664), 2, - sym_comment, - sym_include, - [123589] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3928), 1, - sym_identifier, - STATE(2092), 1, - aux_sym_sort_clause_repeat1, - STATE(2669), 1, - sym_sort_column, - STATE(4199), 1, - sym_object_access, - STATE(2064), 2, - sym_qualified_name, - sym_function_call, - STATE(2665), 2, + STATE(2669), 2, sym_comment, sym_include, - [123619] = 10, + [123899] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2813), 1, - sym_on_quit_phrase, - STATE(3102), 1, - sym_on_stop_phrase, - STATE(3103), 1, - aux_sym_for_statement_repeat1, - STATE(2666), 2, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3705), 1, + sym__terminator, + STATE(2699), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2670), 2, sym_comment, sym_include, - [123651] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [123929] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4072), 1, + ACTIONS(4106), 1, sym__terminator, - STATE(2540), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2667), 2, + STATE(2671), 2, sym_comment, sym_include, - [123681] = 9, + [123959] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4074), 1, + ACTIONS(4108), 1, sym__terminator, - STATE(2660), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2668), 2, + STATE(2672), 2, sym_comment, sym_include, - [123711] = 5, - ACTIONS(3), 1, + [123989] = 10, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2669), 2, - sym_comment, - sym_include, - ACTIONS(4076), 6, - sym_identifier, + ACTIONS(2097), 1, anon_sym_COMMA, + ACTIONS(2455), 1, anon_sym_COLON, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [123733] = 9, - ACTIONS(59), 1, + STATE(2721), 1, + sym_on_quit_phrase, + STATE(3428), 1, + sym_on_stop_phrase, + STATE(3434), 1, + aux_sym_for_statement_repeat1, + STATE(2673), 2, + sym_comment, + sym_include, + [124021] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(4002), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3637), 1, - sym__terminator, - STATE(2630), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2670), 2, + STATE(2631), 1, + aux_sym_widget_phrase_repeat1, + STATE(2918), 1, + sym_widget_field, + STATE(2674), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [123763] = 9, + ACTIONS(4110), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [124049] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3637), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2671), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2572), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2799), 1, + sym_on_quit_phrase, + STATE(3266), 1, + sym_on_stop_phrase, + STATE(3267), 1, + aux_sym_for_statement_repeat1, + STATE(2675), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [123793] = 10, + [124081] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2558), 1, + ACTIONS(2395), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2866), 1, + STATE(2724), 1, sym_on_quit_phrase, - STATE(3079), 1, - sym_on_stop_phrase, - STATE(3080), 1, + STATE(3146), 1, aux_sym_for_statement_repeat1, - STATE(2672), 2, + STATE(3148), 1, + sym_on_stop_phrase, + STATE(2676), 2, sym_comment, sym_include, - [123825] = 9, + [124113] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4078), 1, - sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2673), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4112), 1, + anon_sym_COLON, + STATE(2827), 1, + sym_on_quit_phrase, + STATE(3486), 1, + aux_sym_for_statement_repeat1, + STATE(3488), 1, + sym_on_stop_phrase, + STATE(2677), 2, sym_comment, sym_include, - [123855] = 10, + [124145] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(2578), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2840), 1, + STATE(2824), 1, sym_on_quit_phrase, - STATE(3142), 1, + STATE(3384), 1, sym_on_stop_phrase, - STATE(3299), 1, + STATE(3385), 1, aux_sym_for_statement_repeat1, - STATE(2674), 2, + STATE(2678), 2, sym_comment, sym_include, - [123887] = 9, + [124177] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4080), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3173), 1, sym__terminator, - STATE(2673), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2675), 2, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2679), 2, sym_comment, sym_include, - [123917] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [124207] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4082), 1, + ACTIONS(4114), 1, sym__terminator, - STATE(2540), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(3007), 1, + STATE(3029), 1, sym_query_definition_tuning, - ACTIONS(3574), 2, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2676), 2, + STATE(2680), 2, sym_comment, sym_include, - [123947] = 9, + [124237] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4084), 1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3173), 1, sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2677), 2, + STATE(2656), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2681), 2, sym_comment, sym_include, - [123977] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [124267] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3587), 1, + ACTIONS(3614), 1, sym__terminator, - STATE(2659), 1, + STATE(2666), 1, aux_sym_temp_table_definition_repeat2, - STATE(2678), 2, + STATE(2682), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [124007] = 9, + [124297] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3587), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3817), 1, sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2679), 2, + STATE(2657), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2683), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [124037] = 10, + [124327] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2538), 1, + ACTIONS(3285), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2870), 1, + STATE(2793), 1, sym_on_quit_phrase, - STATE(3082), 1, + STATE(3268), 1, sym_on_stop_phrase, - STATE(3083), 1, + STATE(3269), 1, aux_sym_for_statement_repeat1, - STATE(2680), 2, + STATE(2684), 2, sym_comment, sym_include, - [124069] = 9, + [124359] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3138), 1, + ACTIONS(3051), 1, sym__terminator, - STATE(2653), 1, + STATE(2706), 1, aux_sym_temp_table_definition_repeat2, - STATE(2681), 2, + STATE(2685), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [124099] = 9, + [124389] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3138), 1, + ACTIONS(3051), 1, sym__terminator, - STATE(2671), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2682), 2, + STATE(2686), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [124129] = 9, + [124419] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(3100), 1, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3952), 1, sym__terminator, - STATE(2679), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2683), 2, + STATE(2668), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2687), 2, sym_comment, sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [124159] = 9, + [124449] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3100), 1, + ACTIONS(3614), 1, sym__terminator, - STATE(2653), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2684), 2, + STATE(2688), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [124189] = 10, + [124479] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2421), 1, + ACTIONS(3269), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2883), 1, + STATE(2812), 1, sym_on_quit_phrase, - STATE(3087), 1, + STATE(3261), 1, sym_on_stop_phrase, - STATE(3088), 1, + STATE(3262), 1, aux_sym_for_statement_repeat1, - STATE(2685), 2, - sym_comment, - sym_include, - [124221] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(2989), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2686), 2, - sym_comment, - sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [124251] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3701), 1, - sym__terminator, - STATE(2667), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2687), 2, + STATE(2689), 2, sym_comment, sym_include, - [124281] = 10, + [124511] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2540), 1, + ACTIONS(2568), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2891), 1, + STATE(2807), 1, sym_on_quit_phrase, - STATE(3093), 1, - sym_on_stop_phrase, - STATE(3094), 1, + STATE(3308), 1, aux_sym_for_statement_repeat1, - STATE(2688), 2, + STATE(3310), 1, + sym_on_stop_phrase, + STATE(2690), 2, sym_comment, sym_include, - [124313] = 6, + [124543] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4086), 1, + ACTIONS(4116), 1, anon_sym_COMMA, - STATE(2689), 3, + STATE(2691), 3, sym_comment, sym_include, aux_sym_on_statement_repeat1, - ACTIONS(1423), 4, + ACTIONS(1435), 4, sym_identifier, aux_sym_input_expression_token2, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [124337] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - aux_sym_field_definition_token1, - ACTIONS(2981), 1, - aux_sym_index_definition_token1, - ACTIONS(4089), 1, - sym__terminator, - STATE(2653), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2690), 2, - sym_comment, - sym_include, - STATE(3121), 2, - sym_field_definition, - sym_index_definition, - [124367] = 9, + [124567] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4091), 1, - sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2691), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2570), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2775), 1, + sym_on_quit_phrase, + STATE(3271), 1, + sym_on_stop_phrase, + STATE(3272), 1, + aux_sym_for_statement_repeat1, + STATE(2692), 2, sym_comment, sym_include, - [124397] = 9, + [124599] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3603), 1, + ACTIONS(3116), 1, sym__terminator, - STATE(2653), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2692), 2, + STATE(2693), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [124427] = 10, + [124629] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4093), 1, - anon_sym_COLON, - STATE(2843), 1, - sym_on_quit_phrase, - STATE(3490), 1, - sym_on_stop_phrase, - STATE(3510), 1, - aux_sym_for_statement_repeat1, - STATE(2693), 2, + ACTIONS(3980), 1, + aux_sym_data_relation_token1, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2937), 1, + aux_sym_data_relation_repeat1, + STATE(4218), 1, + sym_data_relation, + STATE(2694), 2, sym_comment, sym_include, - [124459] = 9, + [124661] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(3007), 1, aux_sym_field_definition_token1, - ACTIONS(2981), 1, + ACTIONS(3009), 1, aux_sym_index_definition_token1, - ACTIONS(3603), 1, + ACTIONS(4119), 1, sym__terminator, - STATE(2589), 1, + STATE(2633), 1, aux_sym_temp_table_definition_repeat2, - STATE(2694), 2, + STATE(2695), 2, sym_comment, sym_include, - STATE(3121), 2, + STATE(3127), 2, sym_field_definition, sym_index_definition, - [124489] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3572), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4095), 1, - sym__terminator, - STATE(2540), 1, - aux_sym_query_definition_repeat1, - STATE(3007), 1, - sym_query_definition_tuning, - ACTIONS(3574), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2695), 2, - sym_comment, - sym_include, - [124519] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3130), 1, - anon_sym_COLON, - STATE(2696), 2, - sym_comment, - sym_include, - STATE(4284), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [124544] = 9, + [124691] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4097), 1, + ACTIONS(2413), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(3337), 1, + STATE(2796), 1, + sym_on_quit_phrase, + STATE(3407), 1, aux_sym_for_statement_repeat1, - STATE(3349), 1, + STATE(3416), 1, sym_on_stop_phrase, + STATE(2696), 2, + sym_comment, + sym_include, + [124723] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4121), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2697), 2, sym_comment, sym_include, - [124573] = 9, + [124753] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2417), 1, + ACTIONS(2582), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(3421), 1, + STATE(2767), 1, + sym_on_quit_phrase, + STATE(3273), 1, sym_on_stop_phrase, - STATE(3422), 1, + STATE(3274), 1, aux_sym_for_statement_repeat1, STATE(2698), 2, sym_comment, sym_include, - [124602] = 9, + [124785] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4068), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3332), 1, - aux_sym_for_statement_repeat1, - STATE(3333), 1, - sym_on_stop_phrase, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3695), 1, + sym__terminator, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, STATE(2699), 2, sym_comment, sym_include, - [124631] = 7, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [124815] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4105), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3772), 1, + sym__terminator, + STATE(2697), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2700), 2, sym_comment, sym_include, - ACTIONS(4103), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [124656] = 9, + [124845] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4107), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4123), 1, anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(4495), 1, - sym_inherits, + STATE(2802), 1, + sym_on_quit_phrase, + STATE(3263), 1, + sym_on_stop_phrase, + STATE(3264), 1, + aux_sym_for_statement_repeat1, STATE(2701), 2, sym_comment, sym_include, - [124685] = 5, + [124877] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2702), 2, - sym_comment, - sym_include, - ACTIONS(4109), 5, - sym__terminator, + ACTIONS(3606), 1, aux_sym_query_definition_tuning_token1, + ACTIONS(4125), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [124706] = 9, + STATE(2702), 2, + sym_comment, + sym_include, + [124907] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3693), 1, - anon_sym_COLON, - STATE(3033), 1, - sym_on_error_phrase, - STATE(3056), 1, - sym_on_quit_phrase, - STATE(4319), 1, - sym_on_stop_phrase, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3723), 1, + sym__terminator, + STATE(2688), 1, + aux_sym_temp_table_definition_repeat2, STATE(2703), 2, sym_comment, sym_include, - [124735] = 7, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [124937] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3368), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2574), 1, anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2744), 1, + sym_on_quit_phrase, + STATE(3281), 1, + sym_on_stop_phrase, + STATE(3282), 1, + aux_sym_for_statement_repeat1, STATE(2704), 2, sym_comment, sym_include, - STATE(4414), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [124760] = 8, + [124969] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2407), 1, + anon_sym_COLON, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2928), 1, + STATE(2800), 1, sym_on_quit_phrase, - STATE(3610), 1, + STATE(3135), 1, + aux_sym_for_statement_repeat1, + STATE(3136), 1, sym_on_stop_phrase, - ACTIONS(2580), 2, - anon_sym_COMMA, - anon_sym_COLON, STATE(2705), 2, sym_comment, sym_include, - [124787] = 9, + [125001] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4093), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3490), 1, - sym_on_stop_phrase, - STATE(3510), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3723), 1, + sym__terminator, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, STATE(2706), 2, sym_comment, sym_include, - [124816] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [125031] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(4111), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3474), 1, - aux_sym_data_relation_repeat1, + ACTIONS(3748), 1, + aux_sym_case_when_branch_token1, + ACTIONS(4127), 1, + aux_sym__block_terminator_token1, + ACTIONS(4129), 1, + aux_sym_case_otherwise_branch_token1, + STATE(2858), 1, + aux_sym_case_body_repeat1, + STATE(3145), 1, + sym_case_when_branch, + STATE(4242), 1, + sym_case_otherwise_branch, STATE(2707), 2, sym_comment, sym_include, - [124845] = 9, + [125063] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4052), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3321), 1, - aux_sym_for_statement_repeat1, - STATE(3322), 1, - sym_on_stop_phrase, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(3695), 1, + sym__terminator, + STATE(2695), 1, + aux_sym_temp_table_definition_repeat2, STATE(2708), 2, sym_comment, sym_include, - [124874] = 9, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [125093] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4113), 1, - anon_sym_COLON, - STATE(2952), 1, - sym_on_error_phrase, - STATE(3439), 1, - sym_on_quit_phrase, - STATE(4423), 1, - sym_on_stop_phrase, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4131), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2709), 2, sym_comment, sym_include, - [124903] = 7, + [125123] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3290), 1, - anon_sym_COLON, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3794), 1, + sym__terminator, + STATE(2587), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2710), 2, sym_comment, sym_include, - STATE(4075), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [124928] = 9, + [125153] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4115), 1, - anon_sym_COLON, - STATE(3327), 1, - aux_sym_for_statement_repeat1, - STATE(3329), 1, - sym_on_stop_phrase, + ACTIONS(3007), 1, + aux_sym_field_definition_token1, + ACTIONS(3009), 1, + aux_sym_index_definition_token1, + ACTIONS(4133), 1, + sym__terminator, + STATE(2633), 1, + aux_sym_temp_table_definition_repeat2, STATE(2711), 2, sym_comment, sym_include, - [124957] = 6, + STATE(3127), 2, + sym_field_definition, + sym_index_definition, + [125183] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4119), 1, - aux_sym_variable_definition_token2, + ACTIONS(3606), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4135), 1, + sym__terminator, + STATE(2618), 1, + aux_sym_query_definition_repeat1, + STATE(3029), 1, + sym_query_definition_tuning, + ACTIONS(3608), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, STATE(2712), 2, sym_comment, sym_include, - ACTIONS(4117), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [124980] = 9, + [125213] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2411), 1, + ACTIONS(2457), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(3442), 1, - aux_sym_for_statement_repeat1, - STATE(3444), 1, + STATE(2779), 1, + sym_on_quit_phrase, + STATE(3139), 1, sym_on_stop_phrase, + STATE(3140), 1, + aux_sym_for_statement_repeat1, STATE(2713), 2, sym_comment, sym_include, - [125009] = 9, + [125245] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(2379), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3415), 1, - aux_sym_for_statement_repeat1, - STATE(3417), 1, - sym_on_stop_phrase, + ACTIONS(4137), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3440), 1, + aux_sym_data_relation_repeat1, STATE(2714), 2, sym_comment, sym_include, - [125038] = 9, + [125274] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2425), 1, + ACTIONS(4139), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3407), 1, + STATE(3334), 1, sym_on_stop_phrase, - STATE(3408), 1, + STATE(3335), 1, aux_sym_for_statement_repeat1, STATE(2715), 2, sym_comment, sym_include, - [125067] = 9, + [125303] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2570), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4143), 1, anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3412), 1, - sym_on_stop_phrase, - STATE(3413), 1, - aux_sym_for_statement_repeat1, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(4588), 1, + sym_inherits, STATE(2716), 2, sym_comment, sym_include, - [125096] = 9, + [125332] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3257), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - STATE(3501), 1, - aux_sym_for_statement_repeat1, - STATE(3502), 1, - sym_on_stop_phrase, + ACTIONS(3334), 1, + anon_sym_COLON, STATE(2717), 2, sym_comment, sym_include, - [125125] = 9, + STATE(4246), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [125357] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3259), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3324), 1, - aux_sym_for_statement_repeat1, - STATE(3326), 1, - sym_on_stop_phrase, + ACTIONS(4147), 1, + aux_sym_variable_definition_token2, STATE(2718), 2, sym_comment, sym_include, - [125154] = 7, + ACTIONS(4145), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125380] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4121), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4125), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(4151), 1, + aux_sym_variable_definition_token2, STATE(2719), 2, sym_comment, sym_include, - ACTIONS(4123), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [125179] = 9, + ACTIONS(4149), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125403] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2720), 2, + sym_comment, + sym_include, + ACTIONS(4153), 5, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + aux_sym_query_definition_token3, + [125424] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2560), 1, + ACTIONS(2578), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3318), 1, + STATE(3384), 1, sym_on_stop_phrase, - STATE(2720), 2, + STATE(3385), 1, + aux_sym_for_statement_repeat1, + STATE(2721), 2, sym_comment, sym_include, - [125208] = 7, + [125453] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4127), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4131), 1, - aux_sym_on_error_phrase_token8, - STATE(2721), 2, + ACTIONS(4157), 1, + aux_sym_variable_definition_token2, + STATE(2722), 2, sym_comment, sym_include, - ACTIONS(4129), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [125233] = 9, + ACTIONS(4155), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125476] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3309), 1, - aux_sym_for_statement_repeat1, - STATE(3312), 1, - sym_on_stop_phrase, - STATE(2722), 2, + ACTIONS(4161), 1, + aux_sym_variable_definition_token2, + STATE(2723), 2, sym_comment, sym_include, - [125262] = 9, + ACTIONS(4159), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125499] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2572), 1, + ACTIONS(2457), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3461), 1, - aux_sym_for_statement_repeat1, - STATE(3464), 1, + STATE(3139), 1, sym_on_stop_phrase, - STATE(2723), 2, + STATE(3140), 1, + aux_sym_for_statement_repeat1, + STATE(2724), 2, sym_comment, sym_include, - [125291] = 7, + [125528] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3340), 1, + ACTIONS(3936), 1, anon_sym_COLON, - STATE(2724), 2, - sym_comment, - sym_include, - STATE(4186), 3, + STATE(3020), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(3137), 1, sym_on_quit_phrase, - [125316] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4135), 1, - aux_sym_widget_field_token1, + STATE(4394), 1, + sym_on_stop_phrase, STATE(2725), 2, sym_comment, sym_include, - ACTIONS(4133), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [125339] = 7, + [125557] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4137), 1, - anon_sym_COLON, + ACTIONS(4163), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4167), 1, + aux_sym_on_error_phrase_token8, STATE(2726), 2, sym_comment, sym_include, - STATE(4358), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [125364] = 9, + ACTIONS(4165), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [125582] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2568), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3403), 1, - sym_on_stop_phrase, - STATE(3404), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4171), 1, + aux_sym_variable_definition_token2, STATE(2727), 2, sym_comment, sym_include, - [125393] = 9, + ACTIONS(4169), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125605] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2566), 1, + ACTIONS(2574), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3399), 1, + STATE(3281), 1, sym_on_stop_phrase, - STATE(3401), 1, + STATE(3282), 1, aux_sym_for_statement_repeat1, STATE(2728), 2, sym_comment, sym_include, - [125422] = 9, + [125634] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - STATE(3392), 1, - sym_on_stop_phrase, - STATE(3393), 1, - aux_sym_for_statement_repeat1, + ACTIONS(3399), 1, + anon_sym_COLON, STATE(2729), 2, sym_comment, sym_include, - [125451] = 9, + STATE(4397), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [125659] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3455), 1, - aux_sym_for_statement_repeat1, - STATE(3456), 1, - sym_on_stop_phrase, + ACTIONS(4175), 1, + aux_sym_variable_definition_token2, STATE(2730), 2, sym_comment, sym_include, - [125480] = 9, + ACTIONS(4173), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125682] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2564), 1, + ACTIONS(2413), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3389), 1, - sym_on_stop_phrase, - STATE(3390), 1, + STATE(3407), 1, aux_sym_for_statement_repeat1, + STATE(3416), 1, + sym_on_stop_phrase, STATE(2731), 2, sym_comment, sym_include, - [125509] = 8, + [125711] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2926), 1, - sym_on_quit_phrase, - STATE(3699), 1, - sym_on_stop_phrase, - ACTIONS(2518), 2, + ACTIONS(2097), 1, anon_sym_COMMA, + ACTIONS(2576), 1, anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3244), 1, + aux_sym_for_statement_repeat1, + STATE(3245), 1, + sym_on_stop_phrase, STATE(2732), 2, sym_comment, sym_include, - [125536] = 9, + [125740] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4007), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - STATE(3385), 1, - sym_on_stop_phrase, - STATE(3387), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4177), 1, + anon_sym_COLON, STATE(2733), 2, sym_comment, sym_include, - [125565] = 9, + STATE(4424), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [125765] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(2453), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3382), 1, + STATE(3278), 1, sym_on_stop_phrase, - STATE(3383), 1, + STATE(3279), 1, aux_sym_for_statement_repeat1, STATE(2734), 2, sym_comment, sym_include, - [125594] = 9, + [125794] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2536), 1, + ACTIONS(2407), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3302), 1, + STATE(3135), 1, aux_sym_for_statement_repeat1, - STATE(3303), 1, + STATE(3136), 1, sym_on_stop_phrase, STATE(2735), 2, sym_comment, sym_include, - [125623] = 5, + [125823] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(4181), 1, + aux_sym_variable_definition_token2, STATE(2736), 2, sym_comment, sym_include, - ACTIONS(4139), 5, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [125644] = 8, + ACTIONS(4179), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125846] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3830), 1, - anon_sym_DQUOTE, - ACTIONS(3832), 1, - anon_sym_SQUOTE, - STATE(2261), 1, - sym__string_literal, - STATE(1795), 2, - sym_double_quoted_string, - sym_single_quoted_string, + ACTIONS(4183), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4187), 1, + aux_sym_on_error_phrase_token8, STATE(2737), 2, sym_comment, sym_include, - [125671] = 5, + ACTIONS(4185), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [125871] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4189), 1, + anon_sym_COLON, + STATE(3025), 1, + sym_on_error_phrase, + STATE(3144), 1, + sym_on_quit_phrase, + STATE(4366), 1, + sym_on_stop_phrase, STATE(2738), 2, sym_comment, sym_include, - ACTIONS(3809), 5, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [125692] = 9, + [125900] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4099), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4141), 1, - anon_sym_COLON, - STATE(3378), 1, - sym_on_stop_phrase, - STATE(3379), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4191), 1, + anon_sym_COLON, STATE(2739), 2, sym_comment, sym_include, - [125721] = 6, + STATE(4143), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [125925] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4145), 1, + ACTIONS(4195), 1, aux_sym_variable_definition_token2, STATE(2740), 2, sym_comment, sym_include, - ACTIONS(4143), 4, + ACTIONS(4193), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [125744] = 7, + [125948] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3069), 1, - anon_sym_COLON, + ACTIONS(4197), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4201), 1, + aux_sym_on_error_phrase_token8, STATE(2741), 2, sym_comment, sym_include, - STATE(4445), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [125769] = 9, + ACTIONS(4199), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [125973] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3986), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3376), 1, - sym_on_stop_phrase, - STATE(3377), 1, - aux_sym_for_statement_repeat1, + ACTIONS(4205), 1, + aux_sym_variable_definition_token2, STATE(2742), 2, sym_comment, sym_include, - [125798] = 9, + ACTIONS(4203), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [125996] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2562), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3152), 1, - aux_sym_for_statement_repeat1, - STATE(3292), 1, - sym_on_stop_phrase, + ACTIONS(4209), 1, + aux_sym_variable_definition_token2, STATE(2743), 2, sym_comment, sym_include, - [125827] = 7, + ACTIONS(4207), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [126019] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4147), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2582), 1, anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3273), 1, + sym_on_stop_phrase, + STATE(3274), 1, + aux_sym_for_statement_repeat1, STATE(2744), 2, sym_comment, sym_include, - STATE(4404), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [125852] = 9, + [126048] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4149), 1, + ACTIONS(3984), 1, anon_sym_COLON, - STATE(3373), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3115), 1, sym_on_stop_phrase, - STATE(3374), 1, + STATE(3116), 1, aux_sym_for_statement_repeat1, STATE(2745), 2, sym_comment, sym_include, - [125881] = 9, + [126077] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3858), 1, - anon_sym_COLON, - STATE(2970), 1, - sym_on_error_phrase, - STATE(3354), 1, - sym_on_quit_phrase, - STATE(4267), 1, - sym_on_stop_phrase, + ACTIONS(4213), 1, + aux_sym_variable_definition_token2, STATE(2746), 2, sym_comment, sym_include, - [125910] = 7, + ACTIONS(4211), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [126100] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4151), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4155), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3314), 1, + aux_sym_data_relation_repeat1, STATE(2747), 2, sym_comment, sym_include, - ACTIONS(4153), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [125935] = 6, + [126129] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4159), 1, - aux_sym_variable_definition_token2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3328), 1, + anon_sym_COLON, STATE(2748), 2, sym_comment, sym_include, - ACTIONS(4157), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [125958] = 7, + STATE(4371), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126154] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4161), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4165), 1, - aux_sym_on_error_phrase_token8, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3962), 1, + anon_sym_COLON, + STATE(2971), 1, + sym_on_error_phrase, + STATE(3518), 1, + sym_on_quit_phrase, + STATE(4532), 1, + sym_on_stop_phrase, STATE(2749), 2, sym_comment, sym_include, - ACTIONS(4163), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [125983] = 9, + [126183] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3773), 1, + ACTIONS(3152), 1, anon_sym_COLON, - STATE(2945), 1, - sym_on_error_phrase, - STATE(3451), 1, - sym_on_quit_phrase, - STATE(4453), 1, - sym_on_stop_phrase, STATE(2750), 2, sym_comment, sym_include, - [126012] = 7, + STATE(4482), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126208] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3104), 1, + ACTIONS(4217), 1, anon_sym_COLON, + STATE(2979), 1, + sym_on_error_phrase, + STATE(3169), 1, + sym_on_quit_phrase, + STATE(4276), 1, + sym_on_stop_phrase, STATE(2751), 2, sym_comment, sym_include, - STATE(4260), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [126037] = 6, + [126237] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4169), 1, - aux_sym_variable_definition_token2, + ACTIONS(4219), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4223), 1, + aux_sym_on_error_phrase_token8, STATE(2752), 2, sym_comment, sym_include, - ACTIONS(4167), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126060] = 9, + ACTIONS(4221), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [126262] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3972), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4171), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3430), 1, - aux_sym_data_relation_repeat1, + ACTIONS(2570), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3271), 1, + sym_on_stop_phrase, + STATE(3272), 1, + aux_sym_for_statement_repeat1, STATE(2753), 2, sym_comment, sym_include, - [126089] = 6, + [126291] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4175), 1, - aux_sym_variable_definition_token2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2441), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3205), 1, + aux_sym_for_statement_repeat1, + STATE(3207), 1, + sym_on_stop_phrase, STATE(2754), 2, sym_comment, sym_include, - ACTIONS(4173), 4, + [126320] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4227), 1, + aux_sym_variable_definition_token2, + STATE(2755), 2, + sym_comment, + sym_include, + ACTIONS(4225), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [126112] = 9, + [126343] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2429), 1, + ACTIONS(3231), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3178), 1, - aux_sym_for_statement_repeat1, - STATE(3184), 1, + STATE(3113), 1, sym_on_stop_phrase, - STATE(2755), 2, + STATE(3114), 1, + aux_sym_for_statement_repeat1, + STATE(2756), 2, sym_comment, sym_include, - [126141] = 9, + [126372] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(3972), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(4177), 1, + ACTIONS(4229), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3509), 1, + STATE(3353), 1, aux_sym_data_relation_repeat1, - STATE(2756), 2, + STATE(2757), 2, sym_comment, sym_include, - [126170] = 9, + [126401] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(4233), 1, + aux_sym_variable_definition_token2, + STATE(2758), 2, + sym_comment, + sym_include, + ACTIONS(4231), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [126424] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2556), 1, + ACTIONS(2463), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3416), 1, - aux_sym_for_statement_repeat1, - STATE(3418), 1, + STATE(3289), 1, sym_on_stop_phrase, - STATE(2757), 2, + STATE(3290), 1, + aux_sym_for_statement_repeat1, + STATE(2759), 2, sym_comment, sym_include, - [126199] = 9, + [126453] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3888), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2568), 1, anon_sym_COLON, - STATE(2975), 1, - sym_on_error_phrase, - STATE(3336), 1, - sym_on_quit_phrase, - STATE(4232), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3308), 1, + aux_sym_for_statement_repeat1, + STATE(3310), 1, sym_on_stop_phrase, - STATE(2758), 2, + STATE(2760), 2, sym_comment, sym_include, - [126228] = 9, + [126482] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(673), 1, - sym__namecolon, - ACTIONS(4179), 1, - anon_sym_EQ, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2905), 1, - aux_sym_object_access_repeat1, - STATE(2759), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4235), 1, + anon_sym_COLON, + STATE(2761), 2, sym_comment, sym_include, - [126257] = 7, + STATE(4149), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126507] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4181), 1, + ACTIONS(4197), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(4185), 1, + ACTIONS(4201), 1, aux_sym_on_error_phrase_token8, - STATE(2760), 2, + STATE(2762), 2, sym_comment, sym_include, - ACTIONS(4183), 3, + ACTIONS(4237), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [126282] = 7, + [126532] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3079), 1, + ACTIONS(3354), 1, anon_sym_COLON, - STATE(2761), 2, + STATE(2763), 2, sym_comment, sym_include, - STATE(4226), 3, + STATE(4393), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [126307] = 6, + [126557] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4189), 1, + STATE(2764), 2, + sym_comment, + sym_include, + ACTIONS(4239), 5, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_property_definition_token1, + [126578] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4243), 1, aux_sym_variable_definition_token2, - STATE(2762), 2, + STATE(2765), 2, sym_comment, sym_include, - ACTIONS(4187), 4, + ACTIONS(4241), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [126330] = 7, + [126601] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4191), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4195), 1, - aux_sym_on_error_phrase_token8, - STATE(2763), 2, + ACTIONS(4247), 1, + aux_sym_variable_definition_token2, + STATE(2766), 2, sym_comment, sym_include, - ACTIONS(4193), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [126355] = 9, + ACTIONS(4245), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [126624] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4197), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3285), 1, anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(4535), 1, - sym_inherits, - STATE(2764), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3268), 1, + sym_on_stop_phrase, + STATE(3269), 1, + aux_sym_for_statement_repeat1, + STATE(2767), 2, sym_comment, sym_include, - [126384] = 6, + [126653] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4201), 1, + ACTIONS(4251), 1, aux_sym_variable_definition_token2, - STATE(2765), 2, + STATE(2768), 2, sym_comment, sym_include, - ACTIONS(4199), 4, + ACTIONS(4249), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [126407] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4205), 1, - aux_sym_widget_field_token1, - STATE(2766), 2, - sym_comment, - sym_include, - ACTIONS(4203), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [126430] = 6, + [126676] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4209), 1, + ACTIONS(4255), 1, aux_sym_variable_definition_token2, - STATE(2767), 2, + STATE(2769), 2, sym_comment, sym_include, - ACTIONS(4207), 4, + ACTIONS(4253), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [126453] = 9, + [126699] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2377), 1, + ACTIONS(2395), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3315), 1, + STATE(3146), 1, aux_sym_for_statement_repeat1, - STATE(3319), 1, + STATE(3148), 1, sym_on_stop_phrase, - STATE(2768), 2, + STATE(2770), 2, sym_comment, sym_include, - [126482] = 9, + [126728] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3890), 1, + ACTIONS(3200), 1, anon_sym_COLON, - STATE(2943), 1, - sym_on_error_phrase, - STATE(3469), 1, - sym_on_quit_phrase, - STATE(4509), 1, - sym_on_stop_phrase, - STATE(2769), 2, + STATE(2771), 2, sym_comment, sym_include, - [126511] = 6, + STATE(4198), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [126753] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4213), 1, + ACTIONS(4259), 1, aux_sym_variable_definition_token2, - STATE(2770), 2, + STATE(2772), 2, sym_comment, sym_include, - ACTIONS(4211), 4, + ACTIONS(4257), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [126534] = 9, + [126776] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3978), 1, + ACTIONS(2600), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3222), 1, + STATE(3118), 1, sym_on_stop_phrase, - STATE(3225), 1, + STATE(3119), 1, aux_sym_for_statement_repeat1, - STATE(2771), 2, + STATE(2773), 2, + sym_comment, + sym_include, + [126805] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4263), 1, + aux_sym_variable_definition_token2, + STATE(2774), 2, sym_comment, sym_include, - [126563] = 9, + ACTIONS(4261), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [126828] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2554), 1, + ACTIONS(2572), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3174), 1, - aux_sym_for_statement_repeat1, - STATE(3175), 1, + STATE(3266), 1, sym_on_stop_phrase, - STATE(2772), 2, + STATE(3267), 1, + aux_sym_for_statement_repeat1, + STATE(2775), 2, sym_comment, sym_include, - [126592] = 9, + [126857] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4215), 1, - anon_sym_COLON, - STATE(2992), 1, - sym_on_error_phrase, - STATE(3311), 1, - sym_on_quit_phrase, - STATE(4202), 1, - sym_on_stop_phrase, - STATE(2773), 2, + ACTIONS(4267), 1, + aux_sym_variable_definition_token2, + STATE(2776), 2, sym_comment, sym_include, - [126621] = 7, - ACTIONS(3), 1, + ACTIONS(4265), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [126880] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4217), 1, - sym_identifier, - STATE(4229), 1, - sym_access_tuning, - STATE(2774), 2, + ACTIONS(4269), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4273), 1, + aux_sym_on_error_phrase_token8, + STATE(2777), 2, sym_comment, sym_include, - ACTIONS(4219), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - [126646] = 6, + ACTIONS(4271), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [126905] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4223), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(4275), 1, + aux_sym_data_relation_token2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3494), 1, + aux_sym_data_relation_repeat1, + STATE(2778), 2, + sym_comment, + sym_include, + [126934] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2588), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3130), 1, + sym_on_stop_phrase, + STATE(3131), 1, + aux_sym_for_statement_repeat1, + STATE(2779), 2, + sym_comment, + sym_include, + [126963] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, aux_sym_variable_definition_token2, - STATE(2775), 2, + STATE(2780), 2, sym_comment, sym_include, - ACTIONS(4221), 4, + ACTIONS(4277), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [126669] = 9, + [126986] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2552), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3395), 1, - aux_sym_for_statement_repeat1, - STATE(3396), 1, + ACTIONS(4281), 1, + anon_sym_COLON, + STATE(3111), 1, sym_on_stop_phrase, - STATE(2776), 2, + STATE(3112), 1, + aux_sym_for_statement_repeat1, + STATE(2781), 2, sym_comment, sym_include, - [126698] = 8, + [127015] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2994), 1, - sym_on_quit_phrase, - STATE(3536), 1, - sym_on_stop_phrase, - ACTIONS(2576), 2, + STATE(2782), 2, + sym_comment, + sym_include, + ACTIONS(4283), 5, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_property_definition_token1, + [127036] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, anon_sym_COMMA, + ACTIONS(2606), 1, anon_sym_COLON, - STATE(2777), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3202), 1, + sym_on_stop_phrase, + STATE(3203), 1, + aux_sym_for_statement_repeat1, + STATE(2783), 2, sym_comment, sym_include, - [126725] = 9, + [127065] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(4112), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3289), 1, - sym_on_stop_phrase, - STATE(3291), 1, + STATE(3486), 1, aux_sym_for_statement_repeat1, - STATE(2778), 2, + STATE(3488), 1, + sym_on_stop_phrase, + STATE(2784), 2, sym_comment, sym_include, - [126754] = 8, + [127094] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2960), 1, - sym_on_quit_phrase, - STATE(3812), 1, - sym_on_stop_phrase, - ACTIONS(2431), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2779), 2, + ACTIONS(4287), 1, + aux_sym_variable_definition_token2, + STATE(2785), 2, sym_comment, sym_include, - [126781] = 7, + ACTIONS(4285), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127117] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3344), 1, + ACTIONS(3415), 1, anon_sym_COLON, - STATE(2780), 2, + STATE(2786), 2, sym_comment, sym_include, - STATE(4154), 3, + STATE(4194), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [126806] = 9, + [127142] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2409), 1, + ACTIONS(3996), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3039), 1, - aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(3109), 1, sym_on_stop_phrase, - STATE(2781), 2, + STATE(3110), 1, + aux_sym_for_statement_repeat1, + STATE(2787), 2, sym_comment, sym_include, - [126835] = 9, + [127171] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2375), 1, + ACTIONS(2455), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3137), 1, + STATE(3428), 1, sym_on_stop_phrase, - STATE(3138), 1, + STATE(3434), 1, aux_sym_for_statement_repeat1, - STATE(2782), 2, + STATE(2788), 2, sym_comment, sym_include, - [126864] = 7, + [127200] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3134), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4289), 1, anon_sym_COLON, - STATE(2783), 2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(4555), 1, + sym_inherits, + STATE(2789), 2, sym_comment, sym_include, - STATE(4500), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [126889] = 9, + [127229] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4293), 1, + aux_sym_widget_field_token1, + STATE(2790), 2, + sym_comment, + sym_include, + ACTIONS(4291), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [127252] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4225), 1, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(2952), 1, + sym_on_quit_phrase, + STATE(3584), 1, + sym_on_stop_phrase, + ACTIONS(3401), 2, + anon_sym_COMMA, anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(4568), 1, - sym_inherits, - STATE(2784), 2, + STATE(2791), 2, + sym_comment, + sym_include, + [127279] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4297), 1, + aux_sym_variable_definition_token2, + STATE(2792), 2, sym_comment, sym_include, - [126918] = 9, + ACTIONS(4295), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127302] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4019), 1, + ACTIONS(4123), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3512), 1, + STATE(3263), 1, sym_on_stop_phrase, - STATE(3514), 1, + STATE(3264), 1, aux_sym_for_statement_repeat1, - STATE(2785), 2, + STATE(2793), 2, sym_comment, sym_include, - [126947] = 7, + [127331] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3342), 1, + STATE(2794), 2, + sym_comment, + sym_include, + ACTIONS(4299), 5, anon_sym_COLON, - STATE(2786), 2, + aux_sym_while_phrase_token1, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [127352] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4303), 1, + aux_sym_variable_definition_token2, + STATE(2795), 2, sym_comment, sym_include, - STATE(4377), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [126972] = 9, + ACTIONS(4301), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127375] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3972), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4227), 1, - aux_sym_data_relation_token2, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3508), 1, - aux_sym_data_relation_repeat1, - STATE(2787), 2, + ACTIONS(2461), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3379), 1, + sym_on_stop_phrase, + STATE(3381), 1, + aux_sym_for_statement_repeat1, + STATE(2796), 2, sym_comment, sym_include, - [127001] = 6, + [127404] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4231), 1, + ACTIONS(4307), 1, aux_sym_variable_definition_token2, - STATE(2788), 2, + STATE(2797), 2, sym_comment, sym_include, - ACTIONS(4229), 4, + ACTIONS(4305), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [127024] = 9, + [127427] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3950), 1, + anon_sym_COLON, + STATE(3039), 1, + sym_on_error_phrase, + STATE(3307), 1, + sym_on_quit_phrase, + STATE(4208), 1, + sym_on_stop_phrase, + STATE(2798), 2, + sym_comment, + sym_include, + [127456] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2550), 1, + ACTIONS(3269), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3276), 1, + STATE(3261), 1, sym_on_stop_phrase, - STATE(3279), 1, + STATE(3262), 1, aux_sym_for_statement_repeat1, - STATE(2789), 2, + STATE(2799), 2, sym_comment, sym_include, - [127053] = 9, + [127485] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2433), 1, + ACTIONS(2465), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3271), 1, + STATE(3128), 1, sym_on_stop_phrase, - STATE(3274), 1, + STATE(3129), 1, aux_sym_for_statement_repeat1, - STATE(2790), 2, + STATE(2800), 2, sym_comment, sym_include, - [127082] = 7, + [127514] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4233), 1, + ACTIONS(4309), 1, anon_sym_COLON, - STATE(2791), 2, + STATE(3106), 1, + sym_on_stop_phrase, + STATE(3107), 1, + aux_sym_for_statement_repeat1, + STATE(2801), 2, sym_comment, sym_include, - STATE(4119), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127107] = 6, + [127543] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4237), 1, - aux_sym_variable_definition_token2, - STATE(2792), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4311), 1, + anon_sym_COLON, + STATE(3259), 1, + sym_on_stop_phrase, + STATE(3260), 1, + aux_sym_for_statement_repeat1, + STATE(2802), 2, sym_comment, sym_include, - ACTIONS(4235), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127130] = 6, + [127572] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4241), 1, + ACTIONS(4315), 1, aux_sym_variable_definition_token2, - STATE(2793), 2, + STATE(2803), 2, sym_comment, sym_include, - ACTIONS(4239), 4, + ACTIONS(4313), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [127153] = 9, + [127595] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(2427), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3134), 1, - aux_sym_for_statement_repeat1, - STATE(3135), 1, - sym_on_stop_phrase, - STATE(2794), 2, + ACTIONS(4317), 1, + anon_sym_RPAREN, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3543), 1, + aux_sym_data_relation_repeat1, + STATE(2804), 2, sym_comment, sym_include, - [127182] = 9, + [127624] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2548), 1, + ACTIONS(2445), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3259), 1, + STATE(3210), 1, sym_on_stop_phrase, - STATE(3263), 1, + STATE(3211), 1, aux_sym_for_statement_repeat1, - STATE(2795), 2, + STATE(2805), 2, sym_comment, sym_include, - [127211] = 5, + [127653] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2796), 2, - sym_comment, - sym_include, - ACTIONS(4243), 5, + ACTIONS(2097), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [127232] = 9, + ACTIONS(4319), 1, + anon_sym_COLON, + STATE(3478), 1, + aux_sym_for_statement_repeat1, + STATE(3484), 1, + sym_on_stop_phrase, + STATE(2806), 2, + sym_comment, + sym_include, + [127682] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3972), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4245), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3499), 1, - aux_sym_data_relation_repeat1, - STATE(2797), 2, + ACTIONS(2590), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3331), 1, + aux_sym_for_statement_repeat1, + STATE(3332), 1, + sym_on_stop_phrase, + STATE(2807), 2, sym_comment, sym_include, - [127261] = 7, + [127711] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4247), 1, + ACTIONS(4321), 1, anon_sym_COLON, - STATE(2798), 2, + STATE(2808), 2, sym_comment, sym_include, - STATE(4271), 3, + STATE(4362), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [127286] = 9, + [127736] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2546), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - STATE(3253), 1, + ACTIONS(4323), 1, + anon_sym_COLON, + STATE(3028), 1, + sym_on_error_phrase, + STATE(3221), 1, + sym_on_quit_phrase, + STATE(4163), 1, sym_on_stop_phrase, - STATE(3255), 1, - aux_sym_for_statement_repeat1, - STATE(2799), 2, + STATE(2809), 2, sym_comment, sym_include, - [127315] = 6, + [127765] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4251), 1, - aux_sym_variable_definition_token2, - STATE(2800), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3411), 1, + anon_sym_COLON, + STATE(2810), 2, sym_comment, sym_include, - ACTIONS(4249), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127338] = 9, + STATE(4180), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [127790] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2393), 1, + ACTIONS(2419), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3084), 1, - sym_on_stop_phrase, - STATE(3085), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(2801), 2, + STATE(3286), 1, + sym_on_stop_phrase, + STATE(2811), 2, sym_comment, sym_include, - [127367] = 9, + [127819] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4253), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4086), 1, anon_sym_COLON, - STATE(3010), 1, - sym_on_error_phrase, - STATE(3110), 1, - sym_on_quit_phrase, - STATE(4346), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3257), 1, sym_on_stop_phrase, - STATE(2802), 2, + STATE(3258), 1, + aux_sym_for_statement_repeat1, + STATE(2812), 2, sym_comment, sym_include, - [127396] = 6, + [127848] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4257), 1, - aux_sym_variable_definition_token2, - STATE(2803), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3405), 1, + anon_sym_COLON, + STATE(2813), 2, sym_comment, sym_include, - ACTIONS(4255), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127419] = 6, + STATE(4168), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [127873] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4261), 1, + ACTIONS(4327), 1, aux_sym_variable_definition_token2, - STATE(2804), 2, + STATE(2814), 2, sym_comment, sym_include, - ACTIONS(4259), 4, + ACTIONS(4325), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [127442] = 6, + [127896] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4265), 1, - aux_sym_variable_definition_token2, - STATE(2805), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3348), 1, + anon_sym_COLON, + STATE(2815), 2, sym_comment, sym_include, - ACTIONS(4263), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127465] = 9, + STATE(4169), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [127921] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2413), 1, + ACTIONS(3257), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3351), 1, + STATE(3325), 1, aux_sym_for_statement_repeat1, - STATE(3353), 1, + STATE(3327), 1, sym_on_stop_phrase, - STATE(2806), 2, + STATE(2816), 2, sym_comment, sym_include, - [127494] = 9, + [127950] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3222), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - STATE(3240), 1, - sym_on_stop_phrase, - STATE(3244), 1, - aux_sym_for_statement_repeat1, - STATE(2807), 2, + ACTIONS(3192), 1, + anon_sym_COLON, + STATE(2817), 2, sym_comment, sym_include, - [127523] = 8, + STATE(4343), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [127975] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(2948), 1, + STATE(2955), 1, sym_on_quit_phrase, - STATE(3647), 1, + STATE(3742), 1, sym_on_stop_phrase, - ACTIONS(3396), 2, + ACTIONS(2614), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(2808), 2, - sym_comment, - sym_include, - [127550] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4267), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(4600), 1, - sym_inherits, - STATE(2809), 2, + STATE(2818), 2, sym_comment, sym_include, - [127579] = 9, + [128002] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4269), 1, + ACTIONS(4329), 1, anon_sym_COLON, - STATE(3465), 1, + STATE(3251), 1, sym_on_stop_phrase, - STATE(3467), 1, + STATE(3254), 1, aux_sym_for_statement_repeat1, - STATE(2810), 2, + STATE(2819), 2, sym_comment, sym_include, - [127608] = 9, + [128031] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2544), 1, + ACTIONS(2447), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3236), 1, + STATE(3200), 1, sym_on_stop_phrase, - STATE(3238), 1, + STATE(3201), 1, aux_sym_for_statement_repeat1, - STATE(2811), 2, + STATE(2820), 2, sym_comment, sym_include, - [127637] = 7, + [128060] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3366), 1, + ACTIONS(4331), 1, anon_sym_COLON, - STATE(2812), 2, - sym_comment, - sym_include, - STATE(4351), 3, + STATE(3055), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(3461), 1, sym_on_quit_phrase, - [127662] = 9, + STATE(4436), 1, + sym_on_stop_phrase, + STATE(2821), 2, + sym_comment, + sym_include, + [128089] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2540), 1, + ACTIONS(3239), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3093), 1, + STATE(3120), 1, sym_on_stop_phrase, - STATE(3094), 1, + STATE(3121), 1, aux_sym_for_statement_repeat1, - STATE(2813), 2, + STATE(2822), 2, sym_comment, sym_include, - [127691] = 7, + [128118] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4273), 1, + ACTIONS(4335), 1, aux_sym_input_expression_token2, - STATE(3106), 1, + STATE(3173), 1, sym_widget_phrase, - ACTIONS(4271), 2, + ACTIONS(4333), 2, sym_identifier, aux_sym_do_block_token1, - STATE(2814), 3, + STATE(2823), 3, sym_comment, sym_include, aux_sym_on_statement_repeat2, - [127716] = 6, + [128143] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4278), 1, - aux_sym_variable_definition_token2, - STATE(2815), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3370), 1, + sym_on_stop_phrase, + STATE(3371), 1, + aux_sym_for_statement_repeat1, + STATE(2824), 2, sym_comment, sym_include, - ACTIONS(4276), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127739] = 6, + [128172] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4282), 1, - aux_sym_variable_definition_token2, - STATE(2816), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4338), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(4620), 1, + sym_inherits, + STATE(2825), 2, sym_comment, sym_include, - ACTIONS(4280), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127762] = 6, + [128201] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4286), 1, - aux_sym_variable_definition_token2, - STATE(2817), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4340), 1, + anon_sym_COLON, + STATE(2826), 2, sym_comment, sym_include, - ACTIONS(4284), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127785] = 9, + STATE(4221), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [128226] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2395), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3091), 1, - sym_on_stop_phrase, - STATE(3092), 1, + ACTIONS(4342), 1, + anon_sym_COLON, + STATE(3520), 1, aux_sym_for_statement_repeat1, - STATE(2818), 2, + STATE(3521), 1, + sym_on_stop_phrase, + STATE(2827), 2, + sym_comment, + sym_include, + [128255] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4344), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4348), 1, + aux_sym_on_error_phrase_token8, + STATE(2828), 2, sym_comment, sym_include, - [127814] = 9, + ACTIONS(4346), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [128280] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3196), 1, + ACTIONS(2602), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3038), 1, + STATE(3198), 1, sym_on_stop_phrase, - STATE(3221), 1, + STATE(3199), 1, aux_sym_for_statement_repeat1, - STATE(2819), 2, + STATE(2829), 2, sym_comment, sym_include, - [127843] = 9, + [128309] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4288), 1, + ACTIONS(2598), 1, anon_sym_COLON, - STATE(3210), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3196), 1, sym_on_stop_phrase, - STATE(3211), 1, + STATE(3197), 1, aux_sym_for_statement_repeat1, - STATE(2820), 2, + STATE(2830), 2, sym_comment, sym_include, - [127872] = 9, + [128338] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(3972), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(4290), 1, - sym__terminator, - STATE(332), 1, + ACTIONS(4350), 1, + anon_sym_RPAREN, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3454), 1, + STATE(3538), 1, aux_sym_data_relation_repeat1, - STATE(2821), 2, + STATE(2831), 2, sym_comment, sym_include, - [127901] = 9, + [128367] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3984), 1, + ACTIONS(3316), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3205), 1, + STATE(3191), 1, sym_on_stop_phrase, - STATE(3208), 1, + STATE(3192), 1, aux_sym_for_statement_repeat1, - STATE(2822), 2, + STATE(2832), 2, sym_comment, sym_include, - [127930] = 7, + [128396] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3158), 1, + ACTIONS(3326), 1, anon_sym_COLON, - STATE(2823), 2, + STATE(2833), 2, sym_comment, sym_include, - STATE(4323), 3, + STATE(4430), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [127955] = 6, + [128421] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4294), 1, - aux_sym_variable_definition_token2, - STATE(2824), 2, + STATE(2834), 2, sym_comment, sym_include, - ACTIONS(4292), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127978] = 7, + ACTIONS(4352), 5, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + aux_sym_query_definition_token3, + [128442] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4296), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4300), 1, - aux_sym_on_error_phrase_token8, - STATE(2825), 2, + ACTIONS(4356), 1, + aux_sym_variable_definition_token2, + STATE(2835), 2, sym_comment, sym_include, - ACTIONS(4298), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128003] = 6, + ACTIONS(4354), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128465] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4304), 1, + ACTIONS(4360), 1, aux_sym_variable_definition_token2, - STATE(2826), 2, + STATE(2836), 2, sym_comment, sym_include, - ACTIONS(4302), 4, + ACTIONS(4358), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128026] = 9, + [128488] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3870), 1, + ACTIONS(4362), 1, anon_sym_COLON, - STATE(3029), 1, + STATE(3052), 1, sym_on_error_phrase, - STATE(3072), 1, + STATE(3298), 1, sym_on_quit_phrase, - STATE(4315), 1, + STATE(4183), 1, sym_on_stop_phrase, - STATE(2827), 2, + STATE(2837), 2, sym_comment, sym_include, - [128055] = 7, + [128517] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3065), 1, + ACTIONS(3144), 1, anon_sym_COLON, - STATE(2828), 2, + STATE(2838), 2, sym_comment, sym_include, - STATE(4408), 3, + STATE(4235), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [128080] = 7, + [128542] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3374), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2411), 1, anon_sym_COLON, - STATE(2829), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3233), 1, + sym_on_stop_phrase, + STATE(3236), 1, + aux_sym_for_statement_repeat1, + STATE(2839), 2, sym_comment, sym_include, - STATE(4080), 3, - sym_on_error_phrase, + [128571] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2586), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3189), 1, sym_on_stop_phrase, - sym_on_quit_phrase, - [128105] = 7, + STATE(3190), 1, + aux_sym_for_statement_repeat1, + STATE(2840), 2, + sym_comment, + sym_include, + [128600] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4306), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4310), 1, - aux_sym_on_error_phrase_token8, - STATE(2830), 2, + ACTIONS(4366), 1, + aux_sym_variable_definition_token2, + STATE(2841), 2, sym_comment, sym_include, - ACTIONS(4308), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128130] = 9, + ACTIONS(4364), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128623] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4312), 1, - anon_sym_COLON, - STATE(332), 1, + ACTIONS(681), 1, + sym__namecolon, + ACTIONS(4368), 1, + anon_sym_EQ, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(4421), 1, - sym_inherits, - STATE(2831), 2, + STATE(2967), 1, + aux_sym_object_access_repeat1, + STATE(2842), 2, sym_comment, sym_include, - [128159] = 9, + [128652] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4314), 1, + ACTIONS(2409), 1, anon_sym_COLON, - STATE(3191), 1, - sym_on_stop_phrase, - STATE(3195), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3224), 1, aux_sym_for_statement_repeat1, - STATE(2832), 2, + STATE(3225), 1, + sym_on_stop_phrase, + STATE(2843), 2, sym_comment, sym_include, - [128188] = 9, + [128681] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3850), 1, - anon_sym_COLON, - STATE(2980), 1, - sym_on_error_phrase, - STATE(3323), 1, - sym_on_quit_phrase, - STATE(4432), 1, - sym_on_stop_phrase, - STATE(2833), 2, + ACTIONS(4372), 1, + aux_sym_variable_definition_token2, + STATE(2844), 2, sym_comment, sym_include, - [128217] = 9, + ACTIONS(4370), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128704] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(673), 1, - sym__namecolon, - ACTIONS(4316), 1, - anon_sym_EQ, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2905), 1, - aux_sym_object_access_repeat1, - STATE(2834), 2, + ACTIONS(4376), 1, + aux_sym_variable_definition_token2, + STATE(2845), 2, sym_comment, sym_include, - [128246] = 9, + ACTIONS(4374), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128727] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3846), 1, + ACTIONS(3881), 1, anon_sym_COLON, - STATE(3006), 1, + STATE(2970), 1, sym_on_error_phrase, - STATE(3136), 1, + STATE(3505), 1, sym_on_quit_phrase, - STATE(4078), 1, + STATE(4481), 1, sym_on_stop_phrase, - STATE(2835), 2, + STATE(2846), 2, + sym_comment, + sym_include, + [128756] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3186), 1, + sym_on_stop_phrase, + STATE(3187), 1, + aux_sym_for_statement_repeat1, + STATE(2847), 2, sym_comment, sym_include, - [128275] = 7, + [128785] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4318), 1, + ACTIONS(4378), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(4322), 1, + ACTIONS(4382), 1, aux_sym_on_error_phrase_token8, - STATE(2836), 2, + STATE(2848), 2, sym_comment, sym_include, - ACTIONS(4320), 3, + ACTIONS(4380), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [128300] = 7, + [128810] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3132), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3247), 1, anon_sym_COLON, - STATE(2837), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3413), 1, + aux_sym_for_statement_repeat1, + STATE(3418), 1, + sym_on_stop_phrase, + STATE(2849), 2, sym_comment, sym_include, - STATE(4086), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [128325] = 6, + [128839] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4326), 1, - aux_sym_variable_definition_token2, - STATE(2838), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2584), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3364), 1, + sym_on_stop_phrase, + STATE(3369), 1, + aux_sym_for_statement_repeat1, + STATE(2850), 2, sym_comment, sym_include, - ACTIONS(4324), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128348] = 7, + [128868] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4127), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4131), 1, - aux_sym_on_error_phrase_token8, - STATE(2839), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4384), 1, + anon_sym_COLON, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(4515), 1, + sym_inherits, + STATE(2851), 2, sym_comment, sym_include, - ACTIONS(4328), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128373] = 9, + [128897] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2542), 1, + ACTIONS(2459), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3313), 1, + STATE(3275), 1, aux_sym_for_statement_repeat1, - STATE(3314), 1, + STATE(3277), 1, sym_on_stop_phrase, - STATE(2840), 2, + STATE(2852), 2, sym_comment, sym_include, - [128402] = 6, + [128926] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4332), 1, + ACTIONS(4388), 1, aux_sym_variable_definition_token2, - STATE(2841), 2, + STATE(2853), 2, sym_comment, sym_include, - ACTIONS(4330), 4, + ACTIONS(4386), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128425] = 9, + [128949] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3811), 1, - anon_sym_COLON, - STATE(3013), 1, - sym_on_error_phrase, - STATE(3123), 1, - sym_on_quit_phrase, - STATE(4112), 1, - sym_on_stop_phrase, - STATE(2842), 2, + ACTIONS(4392), 1, + aux_sym_variable_definition_token2, + STATE(2854), 2, sym_comment, sym_include, - [128454] = 9, + ACTIONS(4390), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128972] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4334), 1, - anon_sym_COLON, - STATE(3520), 1, - sym_on_stop_phrase, - STATE(3523), 1, - aux_sym_for_statement_repeat1, - STATE(2843), 2, + ACTIONS(4396), 1, + aux_sym_variable_definition_token2, + STATE(2855), 2, sym_comment, sym_include, - [128483] = 8, + ACTIONS(4394), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128995] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(2950), 1, - sym_on_quit_phrase, - STATE(3834), 1, - sym_on_stop_phrase, - ACTIONS(4336), 2, + ACTIONS(2097), 1, anon_sym_COMMA, + ACTIONS(3245), 1, anon_sym_COLON, - STATE(2844), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3355), 1, + sym_on_stop_phrase, + STATE(3362), 1, + aux_sym_for_statement_repeat1, + STATE(2856), 2, sym_comment, sym_include, - [128510] = 7, + [129024] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4338), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4342), 1, - aux_sym_on_error_phrase_token8, - STATE(2845), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2594), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3122), 1, + sym_on_stop_phrase, + STATE(3123), 1, + aux_sym_for_statement_repeat1, + STATE(2857), 2, sym_comment, sym_include, - ACTIONS(4340), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128535] = 7, + [129053] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3026), 1, - anon_sym_COLON, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - STATE(2846), 2, + ACTIONS(4400), 1, + aux_sym_case_when_branch_token1, + STATE(3145), 1, + sym_case_when_branch, + ACTIONS(4398), 2, + aux_sym__block_terminator_token1, + aux_sym_case_otherwise_branch_token1, + STATE(2858), 3, sym_comment, sym_include, - STATE(4120), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [128560] = 7, + aux_sym_case_body_repeat1, + [129078] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3048), 1, + ACTIONS(3742), 1, anon_sym_COLON, - STATE(2847), 2, - sym_comment, - sym_include, - STATE(4289), 3, + STATE(3040), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(3154), 1, sym_on_quit_phrase, - [128585] = 9, + STATE(4335), 1, + sym_on_stop_phrase, + STATE(2859), 2, + sym_comment, + sym_include, + [129107] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4344), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3281), 1, anon_sym_COLON, - STATE(3014), 1, - sym_on_error_phrase, - STATE(3098), 1, - sym_on_quit_phrase, - STATE(4179), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3184), 1, sym_on_stop_phrase, - STATE(2848), 2, + STATE(3185), 1, + aux_sym_for_statement_repeat1, + STATE(2860), 2, sym_comment, sym_include, - [128614] = 7, + [129136] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4346), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4350), 1, - aux_sym_on_error_phrase_token8, - STATE(2849), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(4403), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3527), 1, + aux_sym_data_relation_repeat1, + STATE(2861), 2, sym_comment, sym_include, - ACTIONS(4348), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128639] = 9, + [129165] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2094), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3805), 1, - anon_sym_COLON, - STATE(3037), 1, - sym_on_error_phrase, - STATE(3285), 1, + STATE(2994), 1, sym_on_quit_phrase, - STATE(4281), 1, + STATE(3801), 1, sym_on_stop_phrase, - STATE(2850), 2, + ACTIONS(2608), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2862), 2, sym_comment, sym_include, - [128668] = 9, + [129192] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4352), 1, + ACTIONS(4405), 1, anon_sym_COLON, - STATE(3058), 1, + STATE(3182), 1, sym_on_stop_phrase, - STATE(3059), 1, + STATE(3183), 1, aux_sym_for_statement_repeat1, - STATE(2851), 2, + STATE(2863), 2, sym_comment, sym_include, - [128697] = 9, + [129221] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2385), 1, + ACTIONS(2604), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3115), 1, + STATE(3295), 1, aux_sym_for_statement_repeat1, - STATE(3117), 1, + STATE(3317), 1, sym_on_stop_phrase, - STATE(2852), 2, + STATE(2864), 2, sym_comment, sym_include, - [128726] = 6, + [129250] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4356), 1, - aux_sym_variable_definition_token2, - STATE(2853), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(3009), 1, + sym_on_quit_phrase, + STATE(3632), 1, + sym_on_stop_phrase, + ACTIONS(4407), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2865), 2, sym_comment, sym_include, - ACTIONS(4354), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128749] = 6, + [129277] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4360), 1, + ACTIONS(4411), 1, aux_sym_variable_definition_token2, - STATE(2854), 2, + STATE(2866), 2, sym_comment, sym_include, - ACTIONS(4358), 4, + ACTIONS(4409), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128772] = 5, + [129300] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2855), 2, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3855), 1, + anon_sym_COLON, + STATE(2935), 1, + sym_on_error_phrase, + STATE(3239), 1, + sym_on_quit_phrase, + STATE(4098), 1, + sym_on_stop_phrase, + STATE(2867), 2, sym_comment, sym_include, - ACTIONS(4362), 5, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_property_definition_token1, - [128793] = 9, + [129329] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4042), 1, + ACTIONS(2596), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3061), 1, + STATE(3349), 1, sym_on_stop_phrase, - STATE(3062), 1, + STATE(3350), 1, aux_sym_for_statement_repeat1, - STATE(2856), 2, + STATE(2868), 2, sym_comment, sym_include, - [128822] = 9, + [129358] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4364), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(3063), 1, - sym_on_stop_phrase, - STATE(3064), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3471), 1, aux_sym_for_statement_repeat1, - STATE(2857), 2, + STATE(3472), 1, + sym_on_stop_phrase, + STATE(2869), 2, sym_comment, sym_include, - [128851] = 6, + [129387] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4368), 1, - aux_sym_variable_definition_token2, - STATE(2858), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(3053), 1, + sym_on_quit_phrase, + STATE(3972), 1, + sym_on_stop_phrase, + ACTIONS(2449), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2870), 2, sym_comment, sym_include, - ACTIONS(4366), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128874] = 6, + [129414] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4372), 1, - aux_sym_variable_definition_token2, - STATE(2859), 2, + ACTIONS(4413), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4417), 1, + aux_sym_on_error_phrase_token8, + STATE(2871), 2, sym_comment, sym_include, - ACTIONS(4370), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128897] = 6, + ACTIONS(4415), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [129439] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4376), 1, - aux_sym_variable_definition_token2, - STATE(2860), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3332), 1, + anon_sym_COLON, + STATE(2872), 2, sym_comment, sym_include, - ACTIONS(4374), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128920] = 6, + STATE(4137), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [129464] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4380), 1, + ACTIONS(4421), 1, aux_sym_variable_definition_token2, - STATE(2861), 2, + STATE(2873), 2, sym_comment, sym_include, - ACTIONS(4378), 4, + ACTIONS(4419), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128943] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3030), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3352), 1, - anon_sym_COLON, - STATE(2862), 2, - sym_comment, - sym_include, - STATE(4148), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [128968] = 9, + [129487] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3288), 1, + ACTIONS(4016), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3065), 1, - sym_on_stop_phrase, - STATE(3066), 1, + STATE(3386), 1, aux_sym_for_statement_repeat1, - STATE(2863), 2, + STATE(3402), 1, + sym_on_stop_phrase, + STATE(2874), 2, sym_comment, sym_include, - [128997] = 9, + [129516] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4048), 1, + ACTIONS(4018), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3067), 1, + STATE(3180), 1, sym_on_stop_phrase, - STATE(3068), 1, + STATE(3181), 1, aux_sym_for_statement_repeat1, - STATE(2864), 2, - sym_comment, - sym_include, - [129026] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2094), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4382), 1, - anon_sym_COLON, - STATE(3019), 1, - sym_on_error_phrase, - STATE(3112), 1, - sym_on_quit_phrase, - STATE(4143), 1, - sym_on_stop_phrase, - STATE(2865), 2, + STATE(2875), 2, sym_comment, sym_include, - [129055] = 9, + [129545] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2574), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3070), 1, - sym_on_stop_phrase, - STATE(3071), 1, - aux_sym_for_statement_repeat1, - STATE(2866), 2, + ACTIONS(4425), 1, + aux_sym_variable_definition_token2, + STATE(2876), 2, sym_comment, sym_include, - [129084] = 6, + ACTIONS(4423), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [129568] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4386), 1, - aux_sym_variable_definition_token2, - STATE(2867), 2, + ACTIONS(4427), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4431), 1, + aux_sym_on_error_phrase_token8, + STATE(2877), 2, sym_comment, sym_include, - ACTIONS(4384), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129107] = 9, + ACTIONS(4429), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [129593] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2373), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - STATE(3265), 1, - sym_on_stop_phrase, - STATE(3268), 1, - aux_sym_for_statement_repeat1, - STATE(2868), 2, + ACTIONS(3120), 1, + anon_sym_COLON, + STATE(2878), 2, sym_comment, sym_include, - [129136] = 9, + STATE(4498), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [129618] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + STATE(2879), 2, + sym_comment, + sym_include, + ACTIONS(4433), 5, anon_sym_COMMA, - ACTIONS(2415), 1, anon_sym_COLON, - ACTIONS(4099), 1, aux_sym_on_error_phrase_token1, - STATE(3102), 1, - sym_on_stop_phrase, - STATE(3103), 1, - aux_sym_for_statement_repeat1, - STATE(2869), 2, - sym_comment, - sym_include, - [129165] = 9, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [129639] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3232), 1, + ACTIONS(4038), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3075), 1, + STATE(3345), 1, sym_on_stop_phrase, - STATE(3077), 1, + STATE(3346), 1, aux_sym_for_statement_repeat1, - STATE(2870), 2, + STATE(2880), 2, sym_comment, sym_include, - [129194] = 5, + [129668] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2871), 2, - sym_comment, - sym_include, - ACTIONS(4388), 5, + ACTIONS(3065), 1, anon_sym_COLON, - aux_sym_while_phrase_token1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [129215] = 9, + STATE(2881), 2, + sym_comment, + sym_include, + STATE(4478), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [129693] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(3972), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4390), 1, - anon_sym_RPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3400), 1, - aux_sym_data_relation_repeat1, - STATE(2872), 2, + ACTIONS(2425), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3301), 1, + aux_sym_for_statement_repeat1, + STATE(3303), 1, + sym_on_stop_phrase, + STATE(2882), 2, sym_comment, sym_include, - [129244] = 7, + [129722] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3315), 1, + ACTIONS(4435), 1, anon_sym_COLON, - STATE(2873), 2, + STATE(3177), 1, + sym_on_stop_phrase, + STATE(3178), 1, + aux_sym_for_statement_repeat1, + STATE(2883), 2, sym_comment, sym_include, - STATE(4174), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [129269] = 9, + [129751] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2419), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3142), 1, - sym_on_stop_phrase, - STATE(3299), 1, - aux_sym_for_statement_repeat1, - STATE(2874), 2, + ACTIONS(3825), 1, + anon_sym_DQUOTE, + ACTIONS(3827), 1, + anon_sym_SQUOTE, + STATE(2276), 1, + sym__string_literal, + STATE(1818), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2884), 2, sym_comment, sym_include, - [129298] = 7, + [129778] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3354), 1, + ACTIONS(3114), 1, anon_sym_COLON, - STATE(2875), 2, + STATE(2885), 2, sym_comment, sym_include, - STATE(4096), 3, + STATE(4140), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [129323] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4394), 1, - aux_sym_variable_definition_token2, - STATE(2876), 2, - sym_comment, - sym_include, - ACTIONS(4392), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129346] = 6, + [129803] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4398), 1, - aux_sym_variable_definition_token2, - STATE(2877), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(4437), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3508), 1, + aux_sym_data_relation_repeat1, + STATE(2886), 2, sym_comment, sym_include, - ACTIONS(4396), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129369] = 7, + [129832] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(4439), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(4105), 1, + ACTIONS(4443), 1, aux_sym_on_error_phrase_token8, - STATE(2878), 2, + STATE(2887), 2, sym_comment, sym_include, - ACTIONS(4400), 3, + ACTIONS(4441), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [129394] = 6, + [129857] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4404), 1, + ACTIONS(4447), 1, aux_sym_variable_definition_token2, - STATE(2879), 2, + STATE(2888), 2, sym_comment, sym_include, - ACTIONS(4402), 4, + ACTIONS(4445), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [129417] = 6, + [129880] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4408), 1, - aux_sym_variable_definition_token2, - STATE(2880), 2, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3804), 1, + anon_sym_COLON, + STATE(3018), 1, + sym_on_error_phrase, + STATE(3319), 1, + sym_on_quit_phrase, + STATE(4244), 1, + sym_on_stop_phrase, + STATE(2889), 2, sym_comment, sym_include, - ACTIONS(4406), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129440] = 6, + [129909] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4412), 1, + ACTIONS(4451), 1, aux_sym_variable_definition_token2, - STATE(2881), 2, + STATE(2890), 2, sym_comment, sym_include, - ACTIONS(4410), 4, + ACTIONS(4449), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [129463] = 9, + [129932] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4453), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4457), 1, + aux_sym_on_error_phrase_token8, + STATE(2891), 2, + sym_comment, + sym_include, + ACTIONS(4455), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [129957] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2387), 1, + ACTIONS(2451), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3099), 1, + STATE(3215), 1, aux_sym_for_statement_repeat1, - STATE(3101), 1, + STATE(3216), 1, sym_on_stop_phrase, - STATE(2882), 2, + STATE(2892), 2, sym_comment, sym_include, - [129492] = 9, + [129986] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2558), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, - STATE(3079), 1, + ACTIONS(3782), 1, + anon_sym_COLON, + STATE(2983), 1, + sym_on_error_phrase, + STATE(3230), 1, + sym_on_quit_phrase, + STATE(4132), 1, sym_on_stop_phrase, - STATE(3080), 1, - aux_sym_for_statement_repeat1, - STATE(2883), 2, + STATE(2893), 2, sym_comment, sym_include, - [129521] = 9, + [130015] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(4414), 1, - anon_sym_RPAREN, - STATE(332), 1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4459), 1, + anon_sym_COLON, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3384), 1, - aux_sym_data_relation_repeat1, - STATE(2884), 2, + STATE(4517), 1, + sym_inherits, + STATE(2894), 2, sym_comment, sym_include, - [129550] = 6, + [130044] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4418), 1, + ACTIONS(4463), 1, aux_sym_variable_definition_token2, - STATE(2885), 2, + STATE(2895), 2, sym_comment, sym_include, - ACTIONS(4416), 4, + ACTIONS(4461), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [129573] = 6, + [130067] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4422), 1, - aux_sym_variable_definition_token2, - STATE(2886), 2, + ACTIONS(2101), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3948), 1, + anon_sym_COLON, + STATE(2960), 1, + sym_on_error_phrase, + STATE(3162), 1, + sym_on_quit_phrase, + STATE(4301), 1, + sym_on_stop_phrase, + STATE(2896), 2, sym_comment, sym_include, - ACTIONS(4420), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129596] = 7, + [130096] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4426), 1, - aux_sym_case_when_branch_token1, - STATE(3041), 1, - sym_case_when_branch, - ACTIONS(4424), 2, - aux_sym__block_terminator_token1, - aux_sym_case_otherwise_branch_token1, - STATE(2887), 3, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2439), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3163), 1, + sym_on_stop_phrase, + STATE(3164), 1, + aux_sym_for_statement_repeat1, + STATE(2897), 2, sym_comment, sym_include, - aux_sym_case_body_repeat1, - [129621] = 6, + [130125] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4431), 1, - aux_sym_variable_definition_token2, - STATE(2888), 2, + ACTIONS(4465), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4469), 1, + aux_sym_on_error_phrase_token8, + STATE(2898), 2, sym_comment, sym_include, - ACTIONS(4429), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129644] = 5, + ACTIONS(4467), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [130150] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2889), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3162), 1, + anon_sym_COLON, + STATE(2899), 2, sym_comment, sym_include, - ACTIONS(4433), 5, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_property_definition_token1, - [129665] = 6, + STATE(4309), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [130175] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4437), 1, - aux_sym_variable_definition_token2, - STATE(2890), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3263), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3341), 1, + sym_on_stop_phrase, + STATE(3343), 1, + aux_sym_for_statement_repeat1, + STATE(2900), 2, sym_comment, sym_include, - ACTIONS(4435), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129688] = 9, + [130204] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2538), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(3082), 1, + STATE(2975), 1, + sym_on_quit_phrase, + STATE(3875), 1, sym_on_stop_phrase, - STATE(3083), 1, - aux_sym_for_statement_repeat1, - STATE(2891), 2, + ACTIONS(2560), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2901), 2, sym_comment, sym_include, - [129717] = 6, + [130231] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4441), 1, + ACTIONS(4473), 1, aux_sym_variable_definition_token2, - STATE(2892), 2, + STATE(2902), 2, sym_comment, sym_include, - ACTIONS(4439), 4, + ACTIONS(4471), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [129740] = 7, + [130254] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3030), 1, + ACTIONS(3069), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4443), 1, + ACTIONS(3126), 1, anon_sym_COLON, - STATE(2893), 2, + STATE(2903), 2, sym_comment, sym_include, - STATE(4201), 3, + STATE(4106), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [129765] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4447), 1, - aux_sym_variable_definition_token2, - STATE(2894), 2, - sym_comment, - sym_include, - ACTIONS(4445), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129788] = 6, + [130279] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4451), 1, - aux_sym_variable_definition_token2, - STATE(2895), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4475), 1, + anon_sym_COLON, + STATE(3339), 1, + sym_on_stop_phrase, + STATE(3340), 1, + aux_sym_for_statement_repeat1, + STATE(2904), 2, sym_comment, sym_include, - ACTIONS(4449), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129811] = 6, + [130308] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4455), 1, - aux_sym_variable_definition_token2, - STATE(2896), 2, + ACTIONS(4219), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4223), 1, + aux_sym_on_error_phrase_token8, + STATE(2905), 2, sym_comment, sym_include, - ACTIONS(4453), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129834] = 6, + ACTIONS(4477), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [130333] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4459), 1, + ACTIONS(4481), 1, aux_sym_variable_definition_token2, - STATE(2897), 2, + STATE(2906), 2, sym_comment, sym_include, - ACTIONS(4457), 4, + ACTIONS(4479), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [129857] = 9, + [130356] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2421), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(2101), 1, aux_sym_on_error_phrase_token1, + ACTIONS(3873), 1, + anon_sym_COLON, + STATE(3002), 1, + sym_on_error_phrase, STATE(3087), 1, + sym_on_quit_phrase, + STATE(4533), 1, sym_on_stop_phrase, - STATE(3088), 1, - aux_sym_for_statement_repeat1, - STATE(2898), 2, - sym_comment, - sym_include, - [129886] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4463), 1, - anon_sym_SQUOTE, - STATE(3004), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2899), 2, + STATE(2907), 2, sym_comment, sym_include, - [129910] = 6, + [130385] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4465), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(2900), 2, + ACTIONS(3069), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3142), 1, + anon_sym_COLON, + STATE(2908), 2, sym_comment, sym_include, - ACTIONS(4467), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [129932] = 8, + STATE(4363), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [130410] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4469), 1, - aux_sym_using_statement_token2, - ACTIONS(4471), 1, - aux_sym_stream_definition_token1, - ACTIONS(4473), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4475), 1, - aux_sym_input_close_statement_token2, - STATE(2901), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(681), 1, + sym__namecolon, + ACTIONS(4483), 1, + anon_sym_EQ, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2967), 1, + aux_sym_object_access_repeat1, + STATE(2909), 2, sym_comment, sym_include, - [129958] = 8, + [130439] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4477), 1, - aux_sym_stream_definition_token1, - ACTIONS(4479), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4481), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4483), 1, - aux_sym_output_stream_statement_token1, - STATE(2902), 2, + STATE(2910), 2, sym_comment, sym_include, - [129984] = 7, + ACTIONS(3905), 5, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [130460] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4485), 1, - anon_sym_DQUOTE, - STATE(2944), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2903), 2, + ACTIONS(4487), 1, + aux_sym_widget_field_token1, + STATE(2911), 2, sym_comment, sym_include, - [130008] = 7, + ACTIONS(4485), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [130483] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -149618,11184 +150530,11333 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(7), 1, anon_sym_LBRACE, ACTIONS(4489), 1, - anon_sym_SQUOTE, - STATE(2946), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2904), 2, + sym_identifier, + STATE(4319), 1, + sym_access_tuning, + STATE(2912), 2, sym_comment, sym_include, - [130032] = 7, + ACTIONS(4491), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + [130508] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(673), 1, - sym__namecolon, - STATE(2954), 1, - aux_sym_object_access_repeat1, - ACTIONS(103), 2, - anon_sym_LPAREN, - anon_sym_EQ, - STATE(2905), 2, + ACTIONS(4495), 1, + aux_sym_variable_definition_token2, + STATE(2913), 2, sym_comment, sym_include, - [130056] = 8, + ACTIONS(4493), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [130531] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3850), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2592), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3323), 1, - sym_on_quit_phrase, - STATE(4432), 1, + STATE(3125), 1, sym_on_stop_phrase, - STATE(2906), 2, + STATE(3126), 1, + aux_sym_for_statement_repeat1, + STATE(2914), 2, + sym_comment, + sym_include, + [130560] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4024), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3337), 1, + sym_on_stop_phrase, + STATE(3338), 1, + aux_sym_for_statement_repeat1, + STATE(2915), 2, + sym_comment, + sym_include, + [130589] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4499), 1, + aux_sym_variable_definition_token2, + STATE(2916), 2, sym_comment, sym_include, - [130082] = 7, + ACTIONS(4497), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [130612] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2917), 2, + sym_comment, + sym_include, + ACTIONS(4501), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [130632] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4491), 1, - anon_sym_DQUOTE, - STATE(3002), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2907), 2, + STATE(2918), 2, sym_comment, sym_include, - [130106] = 7, + ACTIONS(4503), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [130652] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4493), 1, + ACTIONS(4507), 1, anon_sym_SQUOTE, - STATE(2899), 1, + STATE(3016), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, + ACTIONS(4505), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(2908), 2, + STATE(2919), 2, sym_comment, sym_include, - [130130] = 7, + [130676] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4495), 1, + ACTIONS(4509), 1, anon_sym_DQUOTE, - STATE(2907), 1, + STATE(3010), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, + ACTIONS(4511), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(2909), 2, + STATE(2920), 2, sym_comment, sym_include, - [130154] = 7, + [130700] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4497), 1, + ACTIONS(4513), 1, anon_sym_DQUOTE, - STATE(2914), 1, + STATE(2981), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, + ACTIONS(4511), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(2910), 2, + STATE(2921), 2, sym_comment, sym_include, - [130178] = 7, + [130724] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4499), 1, + ACTIONS(4515), 1, anon_sym_SQUOTE, - STATE(2915), 1, + STATE(2919), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, + ACTIONS(4505), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(2911), 2, + STATE(2922), 2, sym_comment, sym_include, - [130202] = 5, - ACTIONS(3), 1, + [130748] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2912), 2, + ACTIONS(3873), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(3087), 1, + sym_on_quit_phrase, + STATE(4533), 1, + sym_on_stop_phrase, + STATE(2923), 2, sym_comment, sym_include, - ACTIONS(4501), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [130222] = 8, - ACTIONS(59), 1, + [130774] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(3974), 1, - aux_sym_data_relation_token1, - STATE(2590), 1, - aux_sym_data_relation_repeat1, - STATE(4616), 1, - sym_data_relation, - STATE(2913), 2, + ACTIONS(4517), 1, + anon_sym_SQUOTE, + STATE(3016), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(2924), 2, sym_comment, sym_include, - [130248] = 7, + [130798] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4503), 1, + ACTIONS(4519), 1, anon_sym_DQUOTE, - STATE(3002), 1, + STATE(3010), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, + ACTIONS(4511), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(2914), 2, + STATE(2925), 2, sym_comment, sym_include, - [130272] = 7, - ACTIONS(3), 1, + [130822] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4505), 1, - anon_sym_SQUOTE, - STATE(3004), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2915), 2, + STATE(3857), 1, + sym_for_phrase, + STATE(2926), 2, sym_comment, sym_include, - [130296] = 5, - ACTIONS(3), 1, + ACTIONS(4521), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [130844] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2916), 2, + ACTIONS(4523), 1, + aux_sym_stream_definition_token1, + ACTIONS(4525), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4527), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4529), 1, + aux_sym_output_stream_statement_token1, + STATE(2927), 2, sym_comment, sym_include, - ACTIONS(4507), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [130316] = 7, - ACTIONS(3), 1, + [130870] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4509), 1, - anon_sym_DQUOTE, - STATE(2919), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2917), 2, + ACTIONS(4531), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(2928), 2, + sym_comment, + sym_include, + ACTIONS(4533), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [130892] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2929), 2, sym_comment, sym_include, - [130340] = 7, + ACTIONS(4535), 4, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [130912] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4511), 1, - anon_sym_SQUOTE, - STATE(2921), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2918), 2, + ACTIONS(4537), 1, + sym_identifier, + STATE(2930), 2, + sym_comment, + sym_include, + ACTIONS(4539), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [130934] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4541), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(2931), 2, sym_comment, sym_include, - [130364] = 7, + ACTIONS(4543), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [130956] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4513), 1, + ACTIONS(4545), 1, anon_sym_DQUOTE, - STATE(3002), 1, + STATE(3010), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, + ACTIONS(4511), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(2919), 2, + STATE(2932), 2, sym_comment, sym_include, - [130388] = 8, + [130980] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4515), 1, - sym__terminator, - ACTIONS(4517), 1, - aux_sym_using_statement_token2, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(2920), 2, + ACTIONS(3948), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(3162), 1, + sym_on_quit_phrase, + STATE(4301), 1, + sym_on_stop_phrase, + STATE(2933), 2, sym_comment, sym_include, - [130414] = 7, + [131006] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4519), 1, - anon_sym_SQUOTE, - STATE(3004), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2921), 2, + ACTIONS(217), 1, + sym_identifier, + STATE(2934), 2, sym_comment, sym_include, - [130438] = 7, - ACTIONS(3), 1, + ACTIONS(215), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [131026] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4521), 1, - anon_sym_DQUOTE, - STATE(2927), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2922), 2, + ACTIONS(3782), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(3230), 1, + sym_on_quit_phrase, + STATE(4132), 1, + sym_on_stop_phrase, + STATE(2935), 2, sym_comment, sym_include, - [130462] = 5, + [131052] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2923), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4547), 1, + sym__terminator, + ACTIONS(4549), 1, + aux_sym_using_statement_token2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2936), 2, sym_comment, sym_include, - ACTIONS(4523), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [130482] = 5, + [131078] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2924), 2, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(3980), 1, + aux_sym_data_relation_token1, + STATE(2606), 1, + aux_sym_data_relation_repeat1, + STATE(4322), 1, + sym_data_relation, + STATE(2937), 2, sym_comment, sym_include, - ACTIONS(4525), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [130502] = 7, + [131104] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4527), 1, - anon_sym_DQUOTE, - STATE(3002), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2925), 2, + ACTIONS(4551), 1, + sym_identifier, + STATE(287), 1, + sym_qualified_name, + ACTIONS(4553), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(2938), 2, sym_comment, sym_include, - [130526] = 7, - ACTIONS(59), 1, + [131128] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3610), 1, - sym_on_stop_phrase, - ACTIONS(2580), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2926), 2, + ACTIONS(205), 1, + sym_identifier, + STATE(2939), 2, sym_comment, sym_include, - [130550] = 7, + ACTIONS(203), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [131148] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4529), 1, - anon_sym_DQUOTE, - STATE(3002), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2927), 2, + ACTIONS(4555), 1, + sym_identifier, + STATE(291), 1, + sym_qualified_name, + ACTIONS(4557), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(2940), 2, sym_comment, sym_include, - [130574] = 7, + [131172] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(3804), 1, + anon_sym_COLON, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(3536), 1, + STATE(3319), 1, + sym_on_quit_phrase, + STATE(4244), 1, sym_on_stop_phrase, - ACTIONS(2576), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2928), 2, + STATE(2941), 2, sym_comment, sym_include, - [130598] = 8, - ACTIONS(59), 1, + [131198] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1453), 1, - anon_sym_COMMA, - ACTIONS(4531), 1, - aux_sym_of_token1, - ACTIONS(4533), 1, - aux_sym_on_statement_token1, - STATE(3036), 1, - aux_sym_on_statement_repeat1, - STATE(2929), 2, + ACTIONS(4559), 1, + sym_identifier, + ACTIONS(4561), 1, + sym__terminator, + ACTIONS(4563), 1, + aux_sym_query_definition_token1, + STATE(3280), 1, + sym_qualified_name, + STATE(2942), 2, sym_comment, sym_include, - [130624] = 8, + [131224] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4535), 1, - aux_sym_using_statement_token2, - ACTIONS(4537), 1, + ACTIONS(4565), 1, aux_sym_stream_definition_token1, - ACTIONS(4539), 1, + ACTIONS(4567), 1, aux_sym_input_close_statement_token1, - ACTIONS(4541), 1, + ACTIONS(4569), 1, aux_sym_input_close_statement_token2, - STATE(2930), 2, + ACTIONS(4571), 1, + aux_sym_output_stream_statement_token1, + STATE(2943), 2, sym_comment, sym_include, - [130650] = 8, + [131250] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4543), 1, + ACTIONS(4573), 1, + aux_sym_using_statement_token2, + ACTIONS(4575), 1, aux_sym_stream_definition_token1, - ACTIONS(4545), 1, + ACTIONS(4577), 1, aux_sym_input_close_statement_token1, - ACTIONS(4547), 1, + ACTIONS(4579), 1, aux_sym_input_close_statement_token2, - ACTIONS(4549), 1, - aux_sym_output_stream_statement_token1, - STATE(2931), 2, + STATE(2944), 2, sym_comment, sym_include, - [130676] = 5, + [131276] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4551), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4581), 1, sym_identifier, - STATE(2932), 2, + STATE(2945), 2, sym_comment, sym_include, - ACTIONS(4553), 4, + ACTIONS(4583), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [131298] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [130696] = 5, + STATE(2946), 2, + sym_comment, + sym_include, + ACTIONS(4585), 4, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [131318] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4555), 1, - sym_identifier, - STATE(2933), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4587), 1, + anon_sym_SQUOTE, + STATE(3016), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(2947), 2, sym_comment, sym_include, - ACTIONS(4557), 4, + [131342] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4589), 1, anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [130716] = 5, + STATE(3010), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(2948), 2, + sym_comment, + sym_include, + [131366] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4559), 1, - sym_identifier, - STATE(2934), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4591), 1, + anon_sym_DQUOTE, + STATE(2957), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(2949), 2, sym_comment, sym_include, - ACTIONS(4561), 4, + [131390] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [130736] = 8, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(3980), 1, + aux_sym_data_relation_token1, + STATE(2606), 1, + aux_sym_data_relation_repeat1, + STATE(4411), 1, + sym_data_relation, + STATE(2950), 2, + sym_comment, + sym_include, + [131416] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3890), 1, + STATE(2951), 2, + sym_comment, + sym_include, + ACTIONS(4593), 4, anon_sym_COLON, - ACTIONS(3924), 1, aux_sym_on_error_phrase_token1, - STATE(3469), 1, - sym_on_quit_phrase, - STATE(4509), 1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [131436] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3632), 1, sym_on_stop_phrase, - STATE(2935), 2, + ACTIONS(4407), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2952), 2, sym_comment, sym_include, - [130762] = 5, - ACTIONS(3), 1, + [131460] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(4563), 1, - sym_identifier, - STATE(2936), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3855), 1, + anon_sym_COLON, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(3239), 1, + sym_on_quit_phrase, + STATE(4098), 1, + sym_on_stop_phrase, + STATE(2953), 2, sym_comment, sym_include, - ACTIONS(4565), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [130782] = 8, + [131486] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(3974), 1, + ACTIONS(3980), 1, aux_sym_data_relation_token1, - STATE(2913), 1, + STATE(2985), 1, aux_sym_data_relation_repeat1, - STATE(4510), 1, + STATE(4411), 1, sym_data_relation, - STATE(2937), 2, + STATE(2954), 2, sym_comment, sym_include, - [130808] = 7, - ACTIONS(3), 1, + [131512] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4567), 1, - sym_identifier, - STATE(290), 1, - sym_qualified_name, - ACTIONS(4569), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(2938), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3584), 1, + sym_on_stop_phrase, + ACTIONS(3401), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2955), 2, sym_comment, sym_include, - [130832] = 8, + [131536] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1453), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3972), 1, + sym_on_stop_phrase, + ACTIONS(2449), 2, anon_sym_COMMA, - ACTIONS(4571), 1, - aux_sym_of_token1, - ACTIONS(4573), 1, - aux_sym_on_statement_token1, - STATE(3036), 1, - aux_sym_on_statement_repeat1, - STATE(2939), 2, + anon_sym_COLON, + STATE(2956), 2, + sym_comment, + sym_include, + [131560] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4595), 1, + anon_sym_DQUOTE, + STATE(3010), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(2957), 2, sym_comment, sym_include, - [130858] = 7, + [131584] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4575), 1, + ACTIONS(4597), 1, anon_sym_SQUOTE, - STATE(2959), 1, + STATE(2947), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, + ACTIONS(4505), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(2940), 2, + STATE(2958), 2, sym_comment, sym_include, - [130882] = 7, + [131608] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4577), 1, + ACTIONS(4599), 1, anon_sym_DQUOTE, - STATE(2925), 1, + STATE(2948), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, + ACTIONS(4511), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(2941), 2, - sym_comment, - sym_include, - [130906] = 8, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(3974), 1, - aux_sym_data_relation_token1, - STATE(2590), 1, - aux_sym_data_relation_repeat1, - STATE(4510), 1, - sym_data_relation, - STATE(2942), 2, + STATE(2959), 2, sym_comment, sym_include, - [130932] = 8, + [131632] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3773), 1, + ACTIONS(3742), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(3451), 1, + STATE(3154), 1, sym_on_quit_phrase, - STATE(4453), 1, + STATE(4335), 1, sym_on_stop_phrase, - STATE(2943), 2, + STATE(2960), 2, sym_comment, sym_include, - [130958] = 7, + [131658] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4579), 1, - anon_sym_DQUOTE, - STATE(3002), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, - aux_sym_double_quoted_string_token1, + ACTIONS(4601), 1, + anon_sym_SQUOTE, + STATE(2924), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, aux_sym_double_quoted_string_token2, - STATE(2944), 2, + aux_sym_single_quoted_string_token1, + STATE(2961), 2, + sym_comment, + sym_include, + [131682] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4603), 1, + sym_identifier, + STATE(2962), 2, sym_comment, sym_include, - [130982] = 8, + ACTIONS(4605), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [131704] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4113), 1, + STATE(2963), 2, + sym_comment, + sym_include, + ACTIONS(4607), 4, + sym__terminator, + anon_sym_COMMA, anon_sym_COLON, - STATE(3439), 1, - sym_on_quit_phrase, - STATE(4423), 1, - sym_on_stop_phrase, - STATE(2945), 2, + aux_sym_on_error_phrase_token1, + [131724] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4609), 1, + sym__terminator, + ACTIONS(4611), 1, + aux_sym_using_statement_token2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(2964), 2, sym_comment, sym_include, - [131008] = 7, + [131750] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4581), 1, + ACTIONS(4613), 1, anon_sym_SQUOTE, - STATE(3004), 1, + STATE(3016), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, + ACTIONS(4505), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(2946), 2, + STATE(2965), 2, sym_comment, sym_include, - [131032] = 8, + [131774] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4583), 1, - sym_identifier, - ACTIONS(4585), 1, - sym__terminator, - ACTIONS(4587), 1, - aux_sym_query_definition_token1, - STATE(3472), 1, - sym_qualified_name, - STATE(2947), 2, + ACTIONS(4615), 1, + anon_sym_DQUOTE, + STATE(3010), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(2966), 2, sym_comment, sym_include, - [131058] = 7, + [131798] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3834), 1, - sym_on_stop_phrase, - ACTIONS(4336), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2948), 2, + ACTIONS(681), 1, + sym__namecolon, + STATE(3023), 1, + aux_sym_object_access_repeat1, + ACTIONS(107), 2, + anon_sym_LPAREN, + anon_sym_EQ, + STATE(2967), 2, sym_comment, sym_include, - [131082] = 8, + [131822] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1453), 1, + ACTIONS(1470), 1, anon_sym_COMMA, - ACTIONS(4589), 1, + ACTIONS(4617), 1, aux_sym_of_token1, - ACTIONS(4591), 1, + ACTIONS(4619), 1, aux_sym_on_statement_token1, - STATE(3036), 1, + STATE(3050), 1, aux_sym_on_statement_repeat1, - STATE(2949), 2, + STATE(2968), 2, sym_comment, sym_include, - [131108] = 7, - ACTIONS(59), 1, + [131848] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3792), 1, - sym_on_stop_phrase, - ACTIONS(4593), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2950), 2, + ACTIONS(4621), 1, + sym_identifier, + STATE(2969), 2, sym_comment, sym_include, - [131132] = 8, + ACTIONS(4623), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [131868] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(3974), 1, - aux_sym_data_relation_token1, - STATE(2942), 1, - aux_sym_data_relation_repeat1, - STATE(4497), 1, - sym_data_relation, - STATE(2951), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4331), 1, + anon_sym_COLON, + STATE(3461), 1, + sym_on_quit_phrase, + STATE(4436), 1, + sym_on_stop_phrase, + STATE(2970), 2, sym_comment, sym_include, - [131158] = 8, + [131894] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4595), 1, + ACTIONS(3881), 1, anon_sym_COLON, - STATE(3414), 1, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(3505), 1, sym_on_quit_phrase, - STATE(4394), 1, + STATE(4481), 1, sym_on_stop_phrase, - STATE(2952), 2, + STATE(2971), 2, sym_comment, sym_include, - [131184] = 7, + [131920] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4597), 1, + ACTIONS(4625), 1, sym_identifier, - STATE(289), 1, - sym_qualified_name, - ACTIONS(4599), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(2953), 2, + STATE(2972), 2, sym_comment, sym_include, - [131208] = 6, - ACTIONS(59), 1, + ACTIONS(4627), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [131940] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4601), 1, - sym__namecolon, - ACTIONS(92), 2, - anon_sym_LPAREN, - anon_sym_EQ, - STATE(2954), 3, + ACTIONS(4629), 1, + anon_sym_DQUOTE, + STATE(2932), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(2973), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - [131230] = 8, + [131964] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4631), 1, + sym_identifier, + STATE(2974), 2, + sym_comment, + sym_include, + ACTIONS(4633), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [131984] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3801), 1, + sym_on_stop_phrase, + ACTIONS(2608), 2, anon_sym_COMMA, - ACTIONS(3974), 1, - aux_sym_data_relation_token1, - STATE(2590), 1, - aux_sym_data_relation_repeat1, - STATE(4497), 1, - sym_data_relation, - STATE(2955), 2, + anon_sym_COLON, + STATE(2975), 2, + sym_comment, + sym_include, + [132008] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4635), 1, + sym_identifier, + STATE(2976), 2, sym_comment, sym_include, - [131256] = 5, + ACTIONS(4637), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [132028] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2956), 2, + STATE(2977), 2, sym_comment, sym_include, - ACTIONS(4604), 4, + ACTIONS(4639), 4, sym__terminator, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, - [131276] = 5, + [132048] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4641), 1, + sym_identifier, + STATE(293), 1, + sym_qualified_name, + ACTIONS(4643), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(2978), 2, + sym_comment, + sym_include, + [132072] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2957), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4645), 1, + anon_sym_COLON, + STATE(3238), 1, + sym_on_quit_phrase, + STATE(4159), 1, + sym_on_stop_phrase, + STATE(2979), 2, sym_comment, sym_include, - ACTIONS(4606), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [131296] = 8, + [132098] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1453), 1, + ACTIONS(1470), 1, anon_sym_COMMA, - ACTIONS(4608), 1, + ACTIONS(4647), 1, aux_sym_of_token1, - ACTIONS(4610), 1, + ACTIONS(4649), 1, aux_sym_on_statement_token1, - STATE(3036), 1, + STATE(3050), 1, aux_sym_on_statement_repeat1, - STATE(2958), 2, + STATE(2980), 2, sym_comment, sym_include, - [131322] = 7, + [132124] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4612), 1, - anon_sym_SQUOTE, - STATE(3004), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, + ACTIONS(4651), 1, + anon_sym_DQUOTE, + STATE(3010), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2959), 2, + STATE(2981), 2, sym_comment, sym_include, - [131346] = 7, + [132148] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3699), 1, - sym_on_stop_phrase, - ACTIONS(2518), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2960), 2, + STATE(2982), 2, sym_comment, sym_include, - [131370] = 8, + ACTIONS(4653), 4, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [132168] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4614), 1, - aux_sym_using_statement_token2, - ACTIONS(4616), 1, - aux_sym_stream_definition_token1, - ACTIONS(4618), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4620), 1, - aux_sym_input_close_statement_token2, - STATE(2961), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4323), 1, + anon_sym_COLON, + STATE(3221), 1, + sym_on_quit_phrase, + STATE(4163), 1, + sym_on_stop_phrase, + STATE(2983), 2, sym_comment, sym_include, - [131396] = 8, + [132194] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4622), 1, - aux_sym_stream_definition_token1, - ACTIONS(4624), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4626), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4628), 1, - aux_sym_output_stream_statement_token1, - STATE(2962), 2, + STATE(2984), 2, sym_comment, sym_include, - [131422] = 8, + ACTIONS(4655), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [132214] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3858), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(3354), 1, - sym_on_quit_phrase, - STATE(4267), 1, - sym_on_stop_phrase, - STATE(2963), 2, - sym_comment, - sym_include, - [131448] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4630), 1, - sym_identifier, - ACTIONS(4632), 1, - sym__terminator, - ACTIONS(4634), 1, - aux_sym_query_definition_token1, - STATE(3438), 1, - sym_qualified_name, - STATE(2964), 2, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(3980), 1, + aux_sym_data_relation_token1, + STATE(2606), 1, + aux_sym_data_relation_repeat1, + STATE(4367), 1, + sym_data_relation, + STATE(2985), 2, sym_comment, sym_include, - [131474] = 7, + [132240] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4636), 1, - sym_identifier, - STATE(283), 1, - sym_qualified_name, - ACTIONS(4638), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(2965), 2, + ACTIONS(4657), 1, + anon_sym_SQUOTE, + STATE(3011), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(2986), 2, sym_comment, sym_include, - [131498] = 5, - ACTIONS(3), 1, + [132264] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2966), 2, + ACTIONS(4659), 1, + aux_sym_using_statement_token2, + ACTIONS(4661), 1, + aux_sym_stream_definition_token1, + ACTIONS(4663), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4665), 1, + aux_sym_input_close_statement_token2, + STATE(2987), 2, sym_comment, sym_include, - ACTIONS(4076), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [131518] = 7, + [132290] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4640), 1, - sym_identifier, - STATE(285), 1, - sym_qualified_name, - ACTIONS(4642), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(2967), 2, + ACTIONS(4667), 1, + anon_sym_DQUOTE, + STATE(2920), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(2988), 2, sym_comment, sym_include, - [131542] = 7, + [132314] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4644), 1, + ACTIONS(4669), 1, sym_identifier, - STATE(296), 1, + STATE(298), 1, sym_qualified_name, - ACTIONS(4646), 2, + ACTIONS(4671), 2, aux_sym_for_phrase_token2, aux_sym_for_phrase_token3, - STATE(2968), 2, + STATE(2989), 2, sym_comment, sym_include, - [131566] = 8, + [132338] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(3974), 1, - aux_sym_data_relation_token1, - STATE(2955), 1, - aux_sym_data_relation_repeat1, - STATE(4397), 1, - sym_data_relation, - STATE(2969), 2, + ACTIONS(4673), 1, + aux_sym_using_statement_token2, + ACTIONS(4675), 1, + aux_sym_stream_definition_token1, + ACTIONS(4677), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4679), 1, + aux_sym_input_close_statement_token2, + STATE(2990), 2, sym_comment, sym_include, - [131592] = 8, + [132364] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3888), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(3336), 1, - sym_on_quit_phrase, - STATE(4232), 1, - sym_on_stop_phrase, - STATE(2970), 2, + ACTIONS(4681), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(2991), 2, sym_comment, sym_include, - [131618] = 5, + ACTIONS(4683), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [132386] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2971), 2, + ACTIONS(4685), 1, + anon_sym_SQUOTE, + STATE(3016), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(2992), 2, sym_comment, sym_include, - ACTIONS(4001), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [131638] = 5, + [132410] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2972), 2, + ACTIONS(4687), 1, + anon_sym_SQUOTE, + STATE(2992), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(2993), 2, sym_comment, sym_include, - ACTIONS(4648), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [131658] = 5, - ACTIONS(3), 1, + [132434] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2973), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3742), 1, + sym_on_stop_phrase, + ACTIONS(2614), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2994), 2, sym_comment, sym_include, - ACTIONS(4003), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [131678] = 5, - ACTIONS(3), 1, + [132458] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 1, - sym_identifier, - STATE(2974), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1470), 1, + anon_sym_COMMA, + ACTIONS(4689), 1, + aux_sym_of_token1, + ACTIONS(4691), 1, + aux_sym_on_statement_token1, + STATE(3050), 1, + aux_sym_on_statement_repeat1, + STATE(2995), 2, sym_comment, sym_include, - ACTIONS(119), 4, + [132484] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4693), 1, anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [131698] = 8, - ACTIONS(59), 1, + STATE(2925), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(2996), 2, + sym_comment, + sym_include, + [132508] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4215), 1, - anon_sym_COLON, - STATE(3311), 1, - sym_on_quit_phrase, - STATE(4202), 1, - sym_on_stop_phrase, - STATE(2975), 2, + ACTIONS(4695), 1, + sym_identifier, + STATE(288), 1, + sym_qualified_name, + ACTIONS(4697), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(2997), 2, sym_comment, sym_include, - [131724] = 6, + [132532] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4650), 1, - sym_identifier, - STATE(2976), 2, + ACTIONS(4699), 1, + anon_sym_SQUOTE, + STATE(2965), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(2998), 2, sym_comment, sym_include, - ACTIONS(4652), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [131746] = 5, + [132556] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2977), 2, + ACTIONS(4701), 1, + aux_sym_using_statement_token2, + ACTIONS(4703), 1, + aux_sym_stream_definition_token1, + ACTIONS(4705), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4707), 1, + aux_sym_input_close_statement_token2, + STATE(2999), 2, sym_comment, sym_include, - ACTIONS(4654), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [131766] = 5, + [132582] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(133), 1, - sym_identifier, - STATE(2978), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4709), 1, + anon_sym_DQUOTE, + STATE(2966), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3000), 2, sym_comment, sym_include, - ACTIONS(131), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [131786] = 5, + [132606] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2979), 2, + ACTIONS(4711), 1, + aux_sym_stream_definition_token1, + ACTIONS(4713), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4715), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4717), 1, + aux_sym_output_stream_statement_token1, + STATE(3001), 2, sym_comment, sym_include, - ACTIONS(4656), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [131806] = 8, + [132632] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, + ACTIONS(3936), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(3056), 1, + STATE(3137), 1, sym_on_quit_phrase, - STATE(4319), 1, + STATE(4394), 1, sym_on_stop_phrase, - STATE(2980), 2, + STATE(3002), 2, sym_comment, sym_include, - [131832] = 5, + [132658] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(129), 1, - sym_identifier, - STATE(2981), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(3003), 2, sym_comment, sym_include, - ACTIONS(127), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [131852] = 5, + ACTIONS(4719), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [132678] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2982), 2, + ACTIONS(1470), 1, + anon_sym_COMMA, + ACTIONS(4721), 1, + aux_sym_of_token1, + ACTIONS(4723), 1, + aux_sym_on_statement_token1, + STATE(3050), 1, + aux_sym_on_statement_repeat1, + STATE(3004), 2, sym_comment, sym_include, - ACTIONS(4658), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [131872] = 7, + [132704] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4660), 1, - anon_sym_SQUOTE, - STATE(3004), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2983), 2, + ACTIONS(4725), 1, + sym_identifier, + STATE(295), 1, + sym_qualified_name, + ACTIONS(4727), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(3005), 2, sym_comment, sym_include, - [131896] = 7, + [132728] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4662), 1, - anon_sym_DQUOTE, - STATE(3002), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2984), 2, - sym_comment, - sym_include, - [131920] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(173), 1, + ACTIONS(4729), 1, sym_identifier, - STATE(2985), 2, + STATE(290), 1, + sym_qualified_name, + ACTIONS(4731), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(3006), 2, sym_comment, sym_include, - ACTIONS(171), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [131940] = 6, + [132752] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4664), 1, - sym_identifier, - STATE(2986), 2, - sym_comment, - sym_include, - ACTIONS(4666), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [131962] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3812), 1, - sym_on_stop_phrase, - ACTIONS(2431), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2987), 2, - sym_comment, - sym_include, - [131986] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2988), 2, + STATE(3007), 2, sym_comment, sym_include, - ACTIONS(4668), 4, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - [132006] = 7, + ACTIONS(4733), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [132772] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4670), 1, + ACTIONS(4735), 1, anon_sym_SQUOTE, - STATE(2983), 1, + STATE(3038), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, + ACTIONS(4505), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(2989), 2, + STATE(3008), 2, sym_comment, sym_include, - [132030] = 8, + [132796] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1453), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(3598), 1, + sym_on_stop_phrase, + ACTIONS(4737), 2, anon_sym_COMMA, - ACTIONS(4672), 1, - aux_sym_of_token1, - ACTIONS(4674), 1, - aux_sym_on_statement_token1, - STATE(3036), 1, - aux_sym_on_statement_repeat1, - STATE(2990), 2, + anon_sym_COLON, + STATE(3009), 2, sym_comment, sym_include, - [132056] = 7, + [132820] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4676), 1, + ACTIONS(4739), 1, anon_sym_DQUOTE, - STATE(2984), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, + ACTIONS(4741), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(2991), 2, - sym_comment, - sym_include, - [132080] = 8, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4678), 1, - anon_sym_COLON, - STATE(3281), 1, - sym_on_quit_phrase, - STATE(4160), 1, - sym_on_stop_phrase, - STATE(2992), 2, + STATE(3010), 3, sym_comment, sym_include, - [132106] = 8, + aux_sym_double_quoted_string_repeat1, + [132842] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4680), 1, - sym_identifier, - ACTIONS(4682), 1, - sym__terminator, - ACTIONS(4684), 1, - aux_sym_query_definition_token1, - STATE(3361), 1, - sym_qualified_name, - STATE(2993), 2, + ACTIONS(4744), 1, + anon_sym_SQUOTE, + STATE(3016), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3011), 2, sym_comment, sym_include, - [132132] = 7, + [132866] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(3647), 1, - sym_on_stop_phrase, - ACTIONS(3396), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2994), 2, + ACTIONS(4681), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3012), 2, sym_comment, sym_include, - [132156] = 8, + ACTIONS(4746), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [132888] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4686), 1, - aux_sym_using_statement_token2, - ACTIONS(4688), 1, + ACTIONS(4748), 1, aux_sym_stream_definition_token1, - ACTIONS(4690), 1, + ACTIONS(4750), 1, aux_sym_input_close_statement_token1, - ACTIONS(4692), 1, + ACTIONS(4752), 1, aux_sym_input_close_statement_token2, - STATE(2995), 2, + ACTIONS(4754), 1, + aux_sym_output_stream_statement_token1, + STATE(3013), 2, sym_comment, sym_include, - [132182] = 8, - ACTIONS(59), 1, + [132914] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4694), 1, - aux_sym_stream_definition_token1, - ACTIONS(4696), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4698), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4700), 1, - aux_sym_output_stream_statement_token1, - STATE(2996), 2, + ACTIONS(4756), 1, + anon_sym_SQUOTE, + STATE(3016), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3014), 2, sym_comment, sym_include, - [132208] = 6, + [132938] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4702), 1, + ACTIONS(4758), 1, sym_identifier, - STATE(2997), 2, + STATE(3015), 2, sym_comment, sym_include, - ACTIONS(4704), 3, + ACTIONS(4760), 3, anon_sym_COMMA, anon_sym_COLON, aux_sym_on_error_phrase_token1, - [132230] = 6, - ACTIONS(59), 1, + [132960] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4706), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(2998), 2, + ACTIONS(4765), 1, + anon_sym_SQUOTE, + ACTIONS(4762), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3016), 3, sym_comment, sym_include, - ACTIONS(4708), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [132252] = 8, + aux_sym_single_quoted_string_repeat1, + [132982] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(125), 1, + sym_identifier, + STATE(3017), 2, + sym_comment, + sym_include, + ACTIONS(123), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [133002] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3846), 1, + ACTIONS(3950), 1, anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(3136), 1, + STATE(3307), 1, sym_on_quit_phrase, - STATE(4078), 1, + STATE(4208), 1, sym_on_stop_phrase, - STATE(2999), 2, + STATE(3018), 2, sym_comment, sym_include, - [132278] = 6, + [133028] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4710), 1, + ACTIONS(4767), 1, aux_sym_procedure_parameter_definition_token1, - STATE(3000), 2, + STATE(3019), 2, sym_comment, sym_include, - ACTIONS(4712), 3, + ACTIONS(4769), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [132300] = 5, + [133050] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3001), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4217), 1, + anon_sym_COLON, + STATE(3169), 1, + sym_on_quit_phrase, + STATE(4276), 1, + sym_on_stop_phrase, + STATE(3020), 2, sym_comment, sym_include, - ACTIONS(4714), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [132320] = 6, + [133076] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4716), 1, - anon_sym_DQUOTE, - ACTIONS(4718), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(3002), 3, + STATE(3021), 2, sym_comment, sym_include, - aux_sym_double_quoted_string_repeat1, - [132342] = 6, + ACTIONS(3988), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [133096] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4721), 1, - sym_identifier, - STATE(3003), 2, + STATE(3022), 2, sym_comment, sym_include, - ACTIONS(4723), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [132364] = 6, - ACTIONS(3), 1, + ACTIONS(3990), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [133116] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4728), 1, - anon_sym_SQUOTE, - ACTIONS(4725), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(3004), 3, + ACTIONS(4771), 1, + sym__namecolon, + ACTIONS(93), 2, + anon_sym_LPAREN, + anon_sym_EQ, + STATE(3023), 3, sym_comment, sym_include, - aux_sym_single_quoted_string_repeat1, - [132386] = 7, + aux_sym_object_access_repeat1, + [133138] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4730), 1, + ACTIONS(4774), 1, sym_identifier, - STATE(294), 1, + ACTIONS(4776), 1, + sym__terminator, + ACTIONS(4778), 1, + aux_sym_query_definition_token1, + STATE(3352), 1, sym_qualified_name, - ACTIONS(4732), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(3005), 2, + STATE(3024), 2, sym_comment, sym_include, - [132410] = 8, + [133164] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3811), 1, - anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - STATE(3123), 1, + ACTIONS(4780), 1, + anon_sym_COLON, + STATE(3133), 1, sym_on_quit_phrase, - STATE(4112), 1, + STATE(4396), 1, sym_on_stop_phrase, - STATE(3006), 2, + STATE(3025), 2, + sym_comment, + sym_include, + [133190] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4782), 1, + anon_sym_DQUOTE, + STATE(3010), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4511), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3026), 2, sym_comment, sym_include, - [132436] = 5, + [133214] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3007), 2, + STATE(3027), 2, sym_comment, sym_include, - ACTIONS(4734), 4, + ACTIONS(4784), 4, sym__terminator, aux_sym_query_definition_tuning_token1, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - [132456] = 5, + [133234] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3008), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4786), 1, + anon_sym_COLON, + STATE(3204), 1, + sym_on_quit_phrase, + STATE(4193), 1, + sym_on_stop_phrase, + STATE(3028), 2, + sym_comment, + sym_include, + [133260] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3029), 2, sym_comment, sym_include, - ACTIONS(4736), 4, + ACTIONS(4788), 4, sym__terminator, aux_sym_query_definition_tuning_token1, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - [132476] = 7, + [133280] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4738), 1, + ACTIONS(4790), 1, anon_sym_DQUOTE, - STATE(3016), 1, + STATE(3037), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, + ACTIONS(4511), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(3009), 2, + STATE(3030), 2, sym_comment, sym_include, - [132500] = 8, + [133304] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4740), 1, - anon_sym_COLON, - STATE(3153), 1, - sym_on_quit_phrase, - STATE(4376), 1, - sym_on_stop_phrase, - STATE(3010), 2, + ACTIONS(4792), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3031), 2, sym_comment, sym_include, - [132526] = 7, - ACTIONS(3), 1, + ACTIONS(4794), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [133326] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4742), 1, - anon_sym_SQUOTE, - STATE(3017), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(3011), 2, + STATE(3032), 2, sym_comment, sym_include, - [132550] = 8, - ACTIONS(59), 1, + ACTIONS(4796), 4, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [133346] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4744), 1, - sym__terminator, - ACTIONS(4746), 1, - aux_sym_using_statement_token2, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3012), 2, + ACTIONS(4798), 1, + sym_identifier, + STATE(3033), 2, sym_comment, sym_include, - [132576] = 8, + ACTIONS(4800), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [133368] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4382), 1, - anon_sym_COLON, - STATE(3112), 1, - sym_on_quit_phrase, - STATE(4143), 1, - sym_on_stop_phrase, - STATE(3013), 2, + ACTIONS(4804), 1, + aux_sym_variable_definition_token2, + STATE(3034), 2, sym_comment, sym_include, - [132602] = 8, - ACTIONS(59), 1, + ACTIONS(4802), 3, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + [133390] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4748), 1, - anon_sym_COLON, - STATE(3270), 1, - sym_on_quit_phrase, - STATE(4076), 1, - sym_on_stop_phrase, - STATE(3014), 2, + STATE(3035), 2, sym_comment, sym_include, - [132628] = 6, - ACTIONS(59), 1, + ACTIONS(4048), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [133410] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4706), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(3015), 2, + ACTIONS(4806), 1, + anon_sym_SQUOTE, + STATE(3014), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4505), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3036), 2, sym_comment, sym_include, - ACTIONS(4750), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [132650] = 7, + [133434] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4752), 1, + ACTIONS(4808), 1, anon_sym_DQUOTE, - STATE(3002), 1, + STATE(3010), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, + ACTIONS(4511), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(3016), 2, + STATE(3037), 2, sym_comment, sym_include, - [132674] = 7, + [133458] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4754), 1, + ACTIONS(4810), 1, anon_sym_SQUOTE, - STATE(3004), 1, + STATE(3016), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, + ACTIONS(4505), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(3017), 2, + STATE(3038), 2, sym_comment, sym_include, - [132698] = 6, + [133482] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3935), 1, - sym_for_phrase, - STATE(3018), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4362), 1, + anon_sym_COLON, + STATE(3298), 1, + sym_on_quit_phrase, + STATE(4183), 1, + sym_on_stop_phrase, + STATE(3039), 2, sym_comment, sym_include, - ACTIONS(4756), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [132720] = 8, + [133508] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3976), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4758), 1, + ACTIONS(4189), 1, anon_sym_COLON, - STATE(3095), 1, + STATE(3144), 1, sym_on_quit_phrase, - STATE(4173), 1, + STATE(4366), 1, sym_on_stop_phrase, - STATE(3019), 2, + STATE(3040), 2, sym_comment, sym_include, - [132746] = 6, + [133534] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4465), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(3020), 2, - sym_comment, - sym_include, - ACTIONS(4760), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [132768] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4762), 1, - anon_sym_SQUOTE, - STATE(3004), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(3021), 2, + ACTIONS(1470), 1, + anon_sym_COMMA, + ACTIONS(4812), 1, + aux_sym_of_token1, + ACTIONS(4814), 1, + aux_sym_on_statement_token1, + STATE(3050), 1, + aux_sym_on_statement_repeat1, + STATE(3041), 2, sym_comment, sym_include, - [132792] = 7, - ACTIONS(3), 1, + [133560] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4764), 1, - anon_sym_DQUOTE, - STATE(3002), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(3022), 2, + ACTIONS(4541), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3042), 2, sym_comment, sym_include, - [132816] = 6, - ACTIONS(3), 1, + ACTIONS(4816), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [133582] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4766), 1, - sym_identifier, - STATE(3023), 2, + ACTIONS(4818), 1, + aux_sym_stream_definition_token1, + ACTIONS(4820), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4822), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4824), 1, + aux_sym_output_stream_statement_token1, + STATE(3043), 2, sym_comment, sym_include, - ACTIONS(4768), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [132838] = 6, + [133608] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4770), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(3024), 2, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(3980), 1, + aux_sym_data_relation_token1, + STATE(2950), 1, + aux_sym_data_relation_repeat1, + STATE(4322), 1, + sym_data_relation, + STATE(3044), 2, sym_comment, sym_include, - ACTIONS(4772), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [132860] = 6, + [133634] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4774), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(3025), 2, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(3980), 1, + aux_sym_data_relation_token1, + STATE(2937), 1, + aux_sym_data_relation_repeat1, + STATE(4218), 1, + sym_data_relation, + STATE(3045), 2, sym_comment, sym_include, - ACTIONS(4776), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [132882] = 7, + [133660] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4778), 1, - anon_sym_SQUOTE, - STATE(3021), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4461), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(3026), 2, + ACTIONS(147), 1, + sym_identifier, + STATE(3046), 2, sym_comment, sym_include, - [132906] = 7, + ACTIONS(145), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [133680] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4780), 1, + ACTIONS(4826), 1, anon_sym_DQUOTE, - STATE(3022), 1, + STATE(3026), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4487), 2, + ACTIONS(4511), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(3027), 2, + STATE(3047), 2, sym_comment, sym_include, - [132930] = 6, + [133704] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4774), 1, + ACTIONS(4767), 1, aux_sym_procedure_parameter_definition_token1, - STATE(3028), 2, + STATE(3048), 2, sym_comment, sym_include, - ACTIONS(4782), 3, + ACTIONS(4828), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [132952] = 8, + [133726] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4830), 1, + sym_identifier, + ACTIONS(4832), 1, + sym__terminator, + ACTIONS(4834), 1, + aux_sym_query_definition_token1, + STATE(3316), 1, + sym_qualified_name, + STATE(3049), 2, + sym_comment, + sym_include, + [133752] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4253), 1, - anon_sym_COLON, - STATE(3110), 1, - sym_on_quit_phrase, - STATE(4346), 1, - sym_on_stop_phrase, - STATE(3029), 2, + ACTIONS(4836), 1, + anon_sym_COMMA, + ACTIONS(1513), 2, + aux_sym_of_token1, + aux_sym_on_statement_token1, + STATE(3050), 3, sym_comment, sym_include, - [132978] = 8, + aux_sym_on_statement_repeat1, + [133774] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4784), 1, + ACTIONS(4839), 1, aux_sym_using_statement_token2, - ACTIONS(4786), 1, + ACTIONS(4841), 1, aux_sym_stream_definition_token1, - ACTIONS(4788), 1, + ACTIONS(4843), 1, aux_sym_input_close_statement_token1, - ACTIONS(4790), 1, + ACTIONS(4845), 1, aux_sym_input_close_statement_token2, - STATE(3030), 2, + STATE(3051), 2, sym_comment, sym_include, - [133004] = 8, + [133800] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4792), 1, - aux_sym_stream_definition_token1, - ACTIONS(4794), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4796), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4798), 1, - aux_sym_output_stream_statement_token1, - STATE(3031), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4847), 1, + anon_sym_COLON, + STATE(3283), 1, + sym_on_quit_phrase, + STATE(4170), 1, + sym_on_stop_phrase, + STATE(3052), 2, sym_comment, sym_include, - [133030] = 8, + [133826] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3805), 1, - anon_sym_COLON, - ACTIONS(3924), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(3285), 1, - sym_on_quit_phrase, - STATE(4281), 1, + STATE(3875), 1, sym_on_stop_phrase, - STATE(3032), 2, + ACTIONS(2560), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3053), 2, sym_comment, sym_include, - [133056] = 8, + [133850] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4344), 1, + ACTIONS(3962), 1, anon_sym_COLON, - STATE(3098), 1, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + STATE(3518), 1, sym_on_quit_phrase, - STATE(4179), 1, + STATE(4532), 1, sym_on_stop_phrase, - STATE(3033), 2, + STATE(3054), 2, sym_comment, sym_include, - [133082] = 7, - ACTIONS(3), 1, + [133876] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4800), 1, - sym_identifier, - STATE(286), 1, - sym_qualified_name, - ACTIONS(4802), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(3034), 2, + ACTIONS(3976), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4849), 1, + anon_sym_COLON, + STATE(3395), 1, + sym_on_quit_phrase, + STATE(4395), 1, + sym_on_stop_phrase, + STATE(3055), 2, sym_comment, sym_include, - [133106] = 6, + [133902] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4806), 1, - aux_sym_variable_definition_token2, - STATE(3035), 2, + STATE(3056), 2, sym_comment, sym_include, - ACTIONS(4804), 3, + ACTIONS(1868), 3, aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - [133128] = 6, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [133921] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4808), 1, + ACTIONS(4851), 1, + anon_sym_RPAREN, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(1493), 2, - aux_sym_of_token1, - aux_sym_on_statement_token1, - STATE(3036), 3, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3057), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat1, - [133150] = 8, + [133944] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3870), 1, - anon_sym_COLON, - ACTIONS(3924), 1, - aux_sym_on_error_phrase_token1, - STATE(3072), 1, - sym_on_quit_phrase, - STATE(4315), 1, - sym_on_stop_phrase, - STATE(3037), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4855), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3058), 2, sym_comment, sym_include, - [133176] = 7, + [133967] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3984), 1, - anon_sym_COLON, - STATE(3208), 1, - aux_sym_for_statement_repeat1, - STATE(3038), 2, + STATE(3059), 2, sym_comment, sym_include, - [133199] = 7, + ACTIONS(4857), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [133986] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2433), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3039), 2, + STATE(3060), 2, sym_comment, sym_include, - [133222] = 7, - ACTIONS(59), 1, + ACTIONS(4859), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134005] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2395), 1, - anon_sym_COLON, - STATE(3092), 1, - aux_sym_for_statement_repeat1, - STATE(3040), 2, + ACTIONS(4861), 1, + sym_identifier, + ACTIONS(4863), 1, + anon_sym_AMP, + ACTIONS(4865), 1, + sym__integer_literal, + STATE(3061), 2, sym_comment, sym_include, - [133245] = 5, + [134028] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3041), 2, + STATE(3062), 2, sym_comment, sym_include, - ACTIONS(4811), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [133264] = 7, + ACTIONS(4867), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134047] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4813), 1, + ACTIONS(4869), 1, sym_identifier, - ACTIONS(4815), 1, - aux_sym_buffer_definition_token3, - STATE(4328), 1, + ACTIONS(4871), 1, + aux_sym_input_expression_token2, + STATE(569), 1, sym_qualified_name, - STATE(3042), 2, + STATE(3063), 2, sym_comment, sym_include, - [133287] = 7, + [134070] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3791), 1, - aux_sym__block_terminator_token1, - STATE(1289), 1, - sym__case_terminator, - STATE(1432), 1, - sym__block_terminator, - STATE(3043), 2, + STATE(3064), 2, sym_comment, sym_include, - [133310] = 7, - ACTIONS(59), 1, + ACTIONS(4873), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134089] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4817), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3044), 2, + ACTIONS(839), 1, + anon_sym_LPAREN, + ACTIONS(4875), 1, + sym_identifier, + STATE(561), 1, + sym_parenthesized_expression, + STATE(3065), 2, sym_comment, sym_include, - [133333] = 7, + [134112] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4819), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3045), 2, + STATE(3066), 2, sym_comment, sym_include, - [133356] = 7, + ACTIONS(4877), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134131] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4821), 1, - anon_sym_LPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3046), 2, + STATE(3067), 2, sym_comment, sym_include, - [133379] = 7, + ACTIONS(4879), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134150] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4823), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3047), 2, - sym_comment, - sym_include, - [133402] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4825), 1, - anon_sym_RPAREN, - ACTIONS(4827), 1, - anon_sym_, - STATE(3113), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3048), 2, + STATE(3068), 2, sym_comment, sym_include, - [133425] = 6, + ACTIONS(4881), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134169] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4829), 1, - anon_sym_RPAREN, - ACTIONS(4831), 1, - anon_sym_COMMA, - STATE(3049), 3, + ACTIONS(4883), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(4885), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(4887), 1, + aux_sym_on_quit_phrase_token1, + STATE(3069), 2, sym_comment, sym_include, - aux_sym__function_call_arguments_repeat1, - [133446] = 7, + [134192] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3805), 1, + ACTIONS(3873), 1, anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(4281), 1, + STATE(4533), 1, sym_on_stop_phrase, - STATE(3050), 2, + STATE(3070), 2, sym_comment, sym_include, - [133469] = 6, + [134215] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4834), 1, - aux_sym__block_terminator_token1, - STATE(1340), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(3051), 2, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4459), 1, + anon_sym_COLON, + STATE(4517), 1, + sym_inherits, + STATE(3071), 2, sym_comment, sym_include, - [133490] = 7, + [134238] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4836), 1, + STATE(3072), 2, + sym_comment, + sym_include, + ACTIONS(4889), 3, sym_identifier, - ACTIONS(4838), 1, - aux_sym_input_expression_token2, - STATE(30), 1, + sym__terminator, + anon_sym_NO_DASHERROR, + [134257] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4891), 1, + sym_identifier, + ACTIONS(4893), 1, + aux_sym_primitive_type_token19, + STATE(4528), 1, sym_qualified_name, - STATE(3052), 2, + STATE(3073), 2, sym_comment, sym_include, - [133513] = 7, + [134280] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4840), 1, - sym__integer_literal, - STATE(807), 1, - sym__decimal_literal, - STATE(1873), 1, - sym_number_literal, - STATE(3053), 2, + STATE(3074), 2, sym_comment, sym_include, - [133536] = 7, - ACTIONS(3), 1, + ACTIONS(4895), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134299] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4842), 1, - sym_identifier, - ACTIONS(4844), 1, - anon_sym_AMP, - ACTIONS(4846), 1, - sym__integer_literal, - STATE(3054), 2, + STATE(3075), 2, sym_comment, sym_include, - [133559] = 7, + ACTIONS(4897), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134318] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2395), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3055), 2, + STATE(3076), 2, sym_comment, sym_include, - [133582] = 7, + ACTIONS(4899), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134337] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4344), 1, - anon_sym_COLON, - STATE(4179), 1, - sym_on_stop_phrase, - STATE(3056), 2, + STATE(3077), 2, + sym_comment, + sym_include, + ACTIONS(117), 3, + sym__namecolon, + anon_sym_LPAREN, + anon_sym_EQ, + [134356] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(3078), 2, + sym_comment, + sym_include, + ACTIONS(4901), 3, + anon_sym_DQUOTE, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + [134375] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(3079), 2, sym_comment, sym_include, - [133605] = 7, + ACTIONS(4903), 3, + aux_sym_double_quoted_string_token2, + anon_sym_SQUOTE, + aux_sym_single_quoted_string_token1, + [134394] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4905), 1, + sym_identifier, + ACTIONS(4907), 1, + aux_sym_input_expression_token2, + STATE(14), 1, + sym_qualified_name, + STATE(3080), 2, + sym_comment, + sym_include, + [134417] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4848), 1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4338), 1, anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3057), 2, + STATE(4620), 1, + sym_inherits, + STATE(3081), 2, sym_comment, sym_include, - [133628] = 7, + [134440] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(4909), 1, + anon_sym_RPAREN, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(4850), 1, - anon_sym_COLON, - STATE(3057), 1, - aux_sym_for_statement_repeat1, - STATE(3058), 2, + STATE(3117), 1, + aux_sym__function_call_arguments_repeat1, + STATE(3082), 2, sym_comment, sym_include, - [133651] = 7, + [134463] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4850), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3059), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4913), 1, + anon_sym_LPAREN, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3083), 2, sym_comment, sym_include, - [133674] = 7, + [134486] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4852), 1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4143), 1, anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3060), 2, + STATE(4588), 1, + sym_inherits, + STATE(3084), 2, sym_comment, sym_include, - [133697] = 7, + [134509] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4352), 1, - anon_sym_COLON, - STATE(3059), 1, - aux_sym_for_statement_repeat1, - STATE(3061), 2, + ACTIONS(4915), 1, + aux_sym_buffer_definition_token2, + ACTIONS(4917), 1, + aux_sym_repeat_statement_token1, + ACTIONS(4919), 1, + aux_sym_do_block_token1, + STATE(3085), 2, sym_comment, sym_include, - [133720] = 7, + [134532] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4352), 1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4289), 1, anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3062), 2, + STATE(4555), 1, + sym_inherits, + STATE(3086), 2, sym_comment, sym_include, - [133743] = 7, + [134555] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(3936), 1, anon_sym_COLON, - STATE(3060), 1, - aux_sym_for_statement_repeat1, - STATE(3063), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(4394), 1, + sym_on_stop_phrase, + STATE(3087), 2, sym_comment, sym_include, - [133766] = 7, + [134578] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4854), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4921), 1, anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3064), 2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3088), 2, sym_comment, sym_include, - [133789] = 7, + [134601] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4042), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4923), 1, anon_sym_COLON, - STATE(3062), 1, - aux_sym_for_statement_repeat1, - STATE(3065), 2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3089), 2, sym_comment, sym_include, - [133812] = 7, + [134624] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4042), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3066), 2, + ACTIONS(4925), 1, + aux_sym_buffer_definition_token2, + ACTIONS(4927), 1, + aux_sym_repeat_statement_token1, + ACTIONS(4929), 1, + aux_sym_do_block_token1, + STATE(3090), 2, sym_comment, sym_include, - [133835] = 7, + [134647] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4364), 1, + ACTIONS(2690), 1, + aux_sym_inherits_token1, + ACTIONS(4384), 1, anon_sym_COLON, - STATE(3064), 1, - aux_sym_for_statement_repeat1, - STATE(3067), 2, + STATE(4515), 1, + sym_inherits, + STATE(3091), 2, sym_comment, sym_include, - [133858] = 7, + [134670] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4364), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3068), 2, + ACTIONS(4885), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(4931), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(4933), 1, + aux_sym_on_quit_phrase_token1, + STATE(3092), 2, sym_comment, sym_include, - [133881] = 7, + [134693] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(4856), 1, - sym__terminator, - STATE(332), 1, + ACTIONS(4935), 1, + anon_sym_LPAREN, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3069), 2, + STATE(3093), 2, sym_comment, sym_include, - [133904] = 7, - ACTIONS(59), 1, + [134716] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3288), 1, - anon_sym_COLON, - STATE(3066), 1, - aux_sym_for_statement_repeat1, - STATE(3070), 2, + ACTIONS(4937), 1, + sym_identifier, + ACTIONS(4939), 1, + aux_sym_input_expression_token2, + STATE(1587), 1, + sym_qualified_name, + STATE(3094), 2, sym_comment, sym_include, - [133927] = 7, + [134739] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3288), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3071), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4941), 1, + anon_sym_LPAREN, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3095), 2, sym_comment, sym_include, - [133950] = 7, - ACTIONS(59), 1, + [134762] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4253), 1, - anon_sym_COLON, - STATE(4346), 1, - sym_on_stop_phrase, - STATE(3072), 2, + ACTIONS(973), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + sym_identifier, + STATE(1603), 1, + sym_parenthesized_expression, + STATE(3096), 2, sym_comment, sym_include, - [133973] = 7, + [134785] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_, - ACTIONS(4858), 1, - anon_sym_RPAREN, - STATE(3119), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3073), 2, + ACTIONS(4945), 1, + sym_identifier, + ACTIONS(4947), 1, + anon_sym_AMP, + ACTIONS(4949), 1, + sym__integer_literal, + STATE(3097), 2, sym_comment, sym_include, - [133996] = 7, + [134808] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4860), 1, + ACTIONS(4951), 1, sym_identifier, - ACTIONS(4862), 1, - aux_sym_input_expression_token2, - STATE(1585), 1, + ACTIONS(4953), 1, + aux_sym_primitive_type_token19, + STATE(4349), 1, sym_qualified_name, - STATE(3074), 2, + STATE(3098), 2, sym_comment, sym_include, - [134019] = 7, + [134831] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4048), 1, - anon_sym_COLON, - STATE(3068), 1, - aux_sym_for_statement_repeat1, - STATE(3075), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4955), 1, + anon_sym_LPAREN, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3099), 2, sym_comment, sym_include, - [134042] = 7, + [134854] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(965), 1, - anon_sym_LPAREN, - ACTIONS(4864), 1, + ACTIONS(4957), 1, sym_identifier, - STATE(1588), 1, - sym_parenthesized_expression, - STATE(3076), 2, + ACTIONS(4959), 1, + anon_sym_AMP, + ACTIONS(4961), 1, + sym__integer_literal, + STATE(3100), 2, sym_comment, sym_include, - [134065] = 7, + [134877] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4048), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3077), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4963), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3101), 2, + sym_comment, + sym_include, + [134900] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4965), 1, + anon_sym_LPAREN, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3102), 2, sym_comment, sym_include, - [134088] = 7, + [134923] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4967), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3103), 2, + sym_comment, + sym_include, + [134946] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4866), 1, + ACTIONS(4969), 1, sym_identifier, - ACTIONS(4868), 1, - aux_sym_buffer_definition_token3, - STATE(4073), 1, - sym_qualified_name, - STATE(3078), 2, + ACTIONS(4971), 1, + anon_sym_AMP, + ACTIONS(4973), 1, + sym__integer_literal, + STATE(3104), 2, sym_comment, sym_include, - [134111] = 7, + [134969] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2574), 1, + ACTIONS(4975), 1, anon_sym_COLON, - STATE(3071), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3079), 2, + STATE(3105), 2, sym_comment, sym_include, - [134134] = 7, + [134992] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2574), 1, + ACTIONS(4977), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3105), 1, aux_sym_for_statement_repeat1, - STATE(3080), 2, + STATE(3106), 2, sym_comment, sym_include, - [134157] = 7, + [135015] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4870), 1, - aux_sym_buffer_definition_token2, - ACTIONS(4872), 1, - aux_sym_repeat_statement_token1, - ACTIONS(4874), 1, - aux_sym_do_block_token1, - STATE(3081), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4977), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3107), 2, sym_comment, sym_include, - [134180] = 7, + [135038] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3232), 1, + ACTIONS(4979), 1, anon_sym_COLON, - STATE(3077), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3082), 2, + STATE(3108), 2, sym_comment, sym_include, - [134203] = 7, + [135061] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3232), 1, + ACTIONS(4309), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3107), 1, aux_sym_for_statement_repeat1, - STATE(3083), 2, + STATE(3109), 2, sym_comment, sym_include, - [134226] = 7, + [135084] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(4309), 1, anon_sym_COLON, - STATE(3299), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3084), 2, + STATE(3110), 2, sym_comment, sym_include, - [134249] = 7, + [135107] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2419), 1, + ACTIONS(4981), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3108), 1, aux_sym_for_statement_repeat1, - STATE(3085), 2, + STATE(3111), 2, sym_comment, sym_include, - [134272] = 6, + [135130] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4876), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4879), 1, + ACTIONS(4981), 1, anon_sym_COLON, - STATE(3086), 3, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3112), 2, sym_comment, sym_include, - aux_sym_for_statement_repeat1, - [134293] = 7, + [135153] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2558), 1, + ACTIONS(3996), 1, anon_sym_COLON, - STATE(3080), 1, + STATE(3110), 1, aux_sym_for_statement_repeat1, - STATE(3087), 2, + STATE(3113), 2, sym_comment, sym_include, - [134316] = 7, + [135176] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2558), 1, + ACTIONS(3996), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3088), 2, + STATE(3114), 2, sym_comment, sym_include, - [134339] = 7, + [135199] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2393), 1, + ACTIONS(4281), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3112), 1, aux_sym_for_statement_repeat1, - STATE(3089), 2, + STATE(3115), 2, sym_comment, sym_include, - [134362] = 7, - ACTIONS(3), 1, + [135222] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4881), 1, - sym_identifier, - ACTIONS(4883), 1, - aux_sym_buffer_definition_token3, - STATE(4411), 1, - sym_qualified_name, - STATE(3090), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4281), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3116), 2, sym_comment, sym_include, - [134385] = 7, + [135245] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(4911), 1, anon_sym_COMMA, - ACTIONS(2427), 1, - anon_sym_COLON, - STATE(3134), 1, - aux_sym_for_statement_repeat1, - STATE(3091), 2, + ACTIONS(4983), 1, + anon_sym_RPAREN, + STATE(3153), 1, + aux_sym__function_call_arguments_repeat1, + STATE(3117), 2, sym_comment, sym_include, - [134408] = 7, + [135268] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2427), 1, + ACTIONS(3231), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3114), 1, aux_sym_for_statement_repeat1, - STATE(3092), 2, + STATE(3118), 2, sym_comment, sym_include, - [134431] = 7, + [135291] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2538), 1, + ACTIONS(3231), 1, anon_sym_COLON, - STATE(3083), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3093), 2, + STATE(3119), 2, sym_comment, sym_include, - [134454] = 7, + [135314] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2538), 1, + ACTIONS(3984), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3116), 1, aux_sym_for_statement_repeat1, - STATE(3094), 2, + STATE(3120), 2, sym_comment, sym_include, - [134477] = 7, + [135337] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4885), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3984), 1, anon_sym_COLON, - STATE(4200), 1, - sym_on_stop_phrase, - STATE(3095), 2, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3121), 2, sym_comment, sym_include, - [134500] = 7, + [135360] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4887), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3096), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2600), 1, + anon_sym_COLON, + STATE(3119), 1, + aux_sym_for_statement_repeat1, + STATE(3122), 2, sym_comment, sym_include, - [134523] = 7, + [135383] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4840), 1, - sym__integer_literal, - STATE(807), 1, - sym__decimal_literal, - STATE(2871), 1, - sym_number_literal, - STATE(3097), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2600), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3123), 2, sym_comment, sym_include, - [134546] = 7, - ACTIONS(59), 1, + [135406] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4748), 1, - anon_sym_COLON, - STATE(4076), 1, - sym_on_stop_phrase, - STATE(3098), 2, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4987), 1, + aux_sym_buffer_definition_token3, + STATE(4312), 1, + sym_qualified_name, + STATE(3124), 2, sym_comment, sym_include, - [134569] = 7, + [135429] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2421), 1, + ACTIONS(3239), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3121), 1, aux_sym_for_statement_repeat1, - STATE(3099), 2, + STATE(3125), 2, sym_comment, sym_include, - [134592] = 6, + [135452] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4834), 1, - aux_sym__block_terminator_token1, - STATE(1252), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(3100), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3239), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3126), 2, sym_comment, sym_include, - [134613] = 7, + [135475] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2421), 1, - anon_sym_COLON, - STATE(3088), 1, - aux_sym_for_statement_repeat1, - STATE(3101), 2, + STATE(3127), 2, sym_comment, sym_include, - [134636] = 7, + ACTIONS(4989), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [135494] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2540), 1, + ACTIONS(2594), 1, anon_sym_COLON, - STATE(3094), 1, + STATE(3123), 1, aux_sym_for_statement_repeat1, - STATE(3102), 2, + STATE(3128), 2, sym_comment, sym_include, - [134659] = 7, + [135517] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2540), 1, + ACTIONS(2594), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3103), 2, + STATE(3129), 2, sym_comment, sym_include, - [134682] = 7, + [135540] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2393), 1, + ACTIONS(2592), 1, anon_sym_COLON, - STATE(3085), 1, + STATE(3126), 1, aux_sym_for_statement_repeat1, - STATE(3104), 2, + STATE(3130), 2, sym_comment, sym_include, - [134705] = 7, + [135563] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2387), 1, + ACTIONS(2592), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3105), 2, - sym_comment, - sym_include, - [134728] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(3106), 2, + STATE(3131), 2, sym_comment, sym_include, - ACTIONS(4889), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [134747] = 7, + [135586] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2387), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(3099), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3107), 2, + STATE(3132), 2, sym_comment, sym_include, - [134770] = 7, - ACTIONS(3), 1, + [135609] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_, - ACTIONS(4891), 1, - anon_sym_RPAREN, - STATE(3258), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3108), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4991), 1, + anon_sym_COLON, + STATE(4423), 1, + sym_on_stop_phrase, + STATE(3133), 2, sym_comment, sym_include, - [134793] = 7, + [135632] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4893), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3109), 2, + ACTIONS(4993), 1, + aux_sym_buffer_definition_token2, + ACTIONS(4995), 1, + aux_sym_repeat_statement_token1, + ACTIONS(4997), 1, + aux_sym_do_block_token1, + STATE(3134), 2, sym_comment, sym_include, - [134816] = 7, + [135655] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4740), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(4376), 1, - sym_on_stop_phrase, - STATE(3110), 2, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3135), 2, sym_comment, sym_include, - [134839] = 7, + [135678] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4895), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3111), 2, + STATE(3129), 1, + aux_sym_for_statement_repeat1, + STATE(3136), 2, sym_comment, sym_include, - [134862] = 7, + [135701] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4758), 1, + ACTIONS(4217), 1, anon_sym_COLON, - STATE(4173), 1, + STATE(4276), 1, sym_on_stop_phrase, - STATE(3112), 2, + STATE(3137), 2, sym_comment, sym_include, - [134885] = 7, - ACTIONS(3), 1, + [135724] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_, - ACTIONS(4897), 1, - anon_sym_RPAREN, - STATE(3258), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3113), 2, + ACTIONS(4999), 1, + aux_sym__block_terminator_token1, + STATE(1311), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(3138), 2, sym_comment, sym_include, - [134908] = 7, + [135745] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2373), 1, + ACTIONS(2588), 1, anon_sym_COLON, - STATE(3268), 1, + STATE(3131), 1, aux_sym_for_statement_repeat1, - STATE(3114), 2, + STATE(3139), 2, sym_comment, sym_include, - [134931] = 7, + [135768] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2415), 1, + ACTIONS(2588), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3115), 2, + STATE(3140), 2, sym_comment, sym_include, - [134954] = 7, + [135791] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2373), 1, + ACTIONS(2407), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3116), 2, + STATE(3141), 2, sym_comment, sym_include, - [134977] = 7, + [135814] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2415), 1, + ACTIONS(2407), 1, anon_sym_COLON, - STATE(3103), 1, + STATE(3135), 1, aux_sym_for_statement_repeat1, - STATE(3117), 2, - sym_comment, - sym_include, - [135000] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4899), 1, - sym_identifier, - ACTIONS(4901), 1, - aux_sym_buffer_definition_token3, - STATE(4083), 1, - sym_qualified_name, - STATE(3118), 2, + STATE(3142), 2, sym_comment, sym_include, - [135023] = 7, + [135837] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_, - ACTIONS(4903), 1, + ACTIONS(5001), 1, anon_sym_RPAREN, - STATE(3258), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3119), 2, - sym_comment, - sym_include, - [135046] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4827), 1, + ACTIONS(5003), 1, anon_sym_, - ACTIONS(4905), 1, - anon_sym_RPAREN, - STATE(3108), 1, + STATE(3232), 1, aux_sym_accumulate_statement_repeat1, - STATE(3120), 2, - sym_comment, - sym_include, - [135069] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(3121), 2, - sym_comment, - sym_include, - ACTIONS(4907), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [135088] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2375), 1, - anon_sym_COLON, - STATE(3138), 1, - aux_sym_for_statement_repeat1, - STATE(3122), 2, + STATE(3143), 2, sym_comment, sym_include, - [135111] = 7, + [135860] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4382), 1, + ACTIONS(4780), 1, anon_sym_COLON, - STATE(4143), 1, + STATE(4396), 1, sym_on_stop_phrase, - STATE(3123), 2, + STATE(3144), 2, sym_comment, sym_include, - [135134] = 7, + [135883] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2385), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3124), 2, - sym_comment, - sym_include, - [135157] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(337), 1, - anon_sym_LPAREN, - ACTIONS(4909), 1, - sym_identifier, - STATE(37), 1, - sym_parenthesized_expression, - STATE(3125), 2, + STATE(3145), 2, sym_comment, sym_include, - [135180] = 7, + ACTIONS(5005), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [135902] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2385), 1, + ACTIONS(2457), 1, anon_sym_COLON, - STATE(3115), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3126), 2, - sym_comment, - sym_include, - [135203] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4911), 1, - sym_identifier, - ACTIONS(4913), 1, - aux_sym_buffer_definition_token3, - STATE(4130), 1, - sym_qualified_name, - STATE(3127), 2, + STATE(3146), 2, sym_comment, sym_include, - [135226] = 7, - ACTIONS(3), 1, + [135925] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(107), 1, - sym_identifier, - ACTIONS(4915), 1, - sym__namedot, - STATE(3141), 1, - aux_sym_qualified_name_repeat1, - STATE(3128), 2, + ACTIONS(3879), 1, + aux_sym__block_terminator_token1, + STATE(1419), 1, + sym__case_terminator, + STATE(1538), 1, + sym__block_terminator, + STATE(3147), 2, sym_comment, sym_include, - [135249] = 7, + [135948] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4917), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3129), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2457), 1, + anon_sym_COLON, + STATE(3140), 1, + aux_sym_for_statement_repeat1, + STATE(3148), 2, sym_comment, sym_include, - [135272] = 7, + [135971] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4919), 1, + ACTIONS(5007), 1, sym_identifier, - ACTIONS(4921), 1, + ACTIONS(5009), 1, aux_sym_buffer_definition_token3, - STATE(4218), 1, + STATE(4420), 1, sym_qualified_name, - STATE(3130), 2, + STATE(3149), 2, sym_comment, sym_include, - [135295] = 5, + [135994] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3131), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2439), 1, + anon_sym_COLON, + STATE(3164), 1, + aux_sym_for_statement_repeat1, + STATE(3150), 2, sym_comment, sym_include, - ACTIONS(4923), 3, - aux_sym_index_tuning_token2, - aux_sym_index_tuning_token3, - aux_sym_index_tuning_token4, - [135314] = 7, - ACTIONS(59), 1, + [136017] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2375), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3132), 2, + ACTIONS(5003), 1, + anon_sym_, + ACTIONS(5011), 1, + anon_sym_RPAREN, + STATE(3143), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3151), 2, sym_comment, sym_include, - [135337] = 7, + [136040] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5003), 1, + anon_sym_, + ACTIONS(5013), 1, + anon_sym_RPAREN, + STATE(3193), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3152), 2, + sym_comment, + sym_include, + [136063] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4840), 1, - sym__integer_literal, - STATE(807), 1, - sym__decimal_literal, - STATE(2988), 1, - sym_number_literal, - STATE(3133), 2, + ACTIONS(5015), 1, + anon_sym_RPAREN, + ACTIONS(5017), 1, + anon_sym_COMMA, + STATE(3153), 3, sym_comment, sym_include, - [135360] = 7, + aux_sym__function_call_arguments_repeat1, + [136084] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2554), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4189), 1, anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3134), 2, + STATE(4366), 1, + sym_on_stop_phrase, + STATE(3154), 2, sym_comment, sym_include, - [135383] = 7, + [136107] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2554), 1, + ACTIONS(2395), 1, anon_sym_COLON, - STATE(3174), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3135), 2, + STATE(3155), 2, sym_comment, sym_include, - [135406] = 7, + [136130] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3811), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5020), 1, anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(4112), 1, - sym_on_stop_phrase, - STATE(3136), 2, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3156), 2, sym_comment, sym_include, - [135429] = 7, + [136153] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2429), 1, - anon_sym_COLON, - STATE(3178), 1, - aux_sym_for_statement_repeat1, - STATE(3137), 2, + ACTIONS(5022), 1, + sym__integer_literal, + STATE(819), 1, + sym__decimal_literal, + STATE(1885), 1, + sym_number_literal, + STATE(3157), 2, sym_comment, sym_include, - [135452] = 7, + [136176] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2429), 1, + ACTIONS(2395), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3146), 1, aux_sym_for_statement_repeat1, - STATE(3138), 2, + STATE(3158), 2, sym_comment, sym_include, - [135475] = 7, - ACTIONS(59), 1, + [136199] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4925), 1, - anon_sym_LPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3139), 2, + ACTIONS(5024), 1, + sym_identifier, + ACTIONS(5026), 1, + aux_sym_buffer_definition_token3, + STATE(4388), 1, + sym_qualified_name, + STATE(3159), 2, sym_comment, sym_include, - [135498] = 7, + [136222] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(4927), 1, + ACTIONS(5028), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3140), 2, + STATE(3160), 2, sym_comment, sym_include, - [135521] = 6, + [136245] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(5030), 1, sym_identifier, - ACTIONS(4929), 1, - sym__namedot, - STATE(3141), 3, + ACTIONS(5032), 1, + aux_sym_buffer_definition_token3, + STATE(4176), 1, + sym_qualified_name, + STATE(3161), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - [135542] = 7, + [136268] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2542), 1, + ACTIONS(3742), 1, anon_sym_COLON, - STATE(3313), 1, - aux_sym_for_statement_repeat1, - STATE(3142), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(4335), 1, + sym_on_stop_phrase, + STATE(3162), 2, sym_comment, sym_include, - [135565] = 5, + [136291] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3143), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2451), 1, + anon_sym_COLON, + STATE(3215), 1, + aux_sym_for_statement_repeat1, + STATE(3163), 2, sym_comment, sym_include, - ACTIONS(2047), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135584] = 5, + [136314] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3144), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2451), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3164), 2, sym_comment, sym_include, - ACTIONS(2001), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135603] = 7, + [136337] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4932), 1, - anon_sym_RPAREN, - ACTIONS(4934), 1, - anon_sym_COMMA, - STATE(3049), 1, - aux_sym__function_call_arguments_repeat1, - STATE(3145), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5034), 1, + anon_sym_LPAREN, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3165), 2, sym_comment, sym_include, - [135626] = 5, + [136360] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3146), 2, + ACTIONS(5036), 1, + anon_sym_COMMA, + ACTIONS(5039), 1, + anon_sym_COLON, + STATE(3166), 3, sym_comment, sym_include, - ACTIONS(2003), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135645] = 5, + aux_sym_for_statement_repeat1, + [136381] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3147), 2, + ACTIONS(5022), 1, + sym__integer_literal, + STATE(819), 1, + sym__decimal_literal, + STATE(2794), 1, + sym_number_literal, + STATE(3167), 2, sym_comment, sym_include, - ACTIONS(2005), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135664] = 5, + [136404] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3148), 2, + ACTIONS(3948), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(4301), 1, + sym_on_stop_phrase, + STATE(3168), 2, sym_comment, sym_include, - ACTIONS(2007), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135683] = 5, + [136427] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3149), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4645), 1, + anon_sym_COLON, + STATE(4159), 1, + sym_on_stop_phrase, + STATE(3169), 2, sym_comment, sym_include, - ACTIONS(2009), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135702] = 5, + [136450] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3150), 2, + ACTIONS(4999), 1, + aux_sym__block_terminator_token1, + STATE(1184), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(3170), 2, sym_comment, sym_include, - ACTIONS(2011), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135721] = 5, - ACTIONS(59), 1, + [136471] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3151), 2, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(5041), 1, + sym_identifier, + STATE(1382), 1, + sym_parenthesized_expression, + STATE(3171), 2, sym_comment, sym_include, - ACTIONS(2013), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135740] = 7, - ACTIONS(59), 1, + [136494] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3152), 2, + ACTIONS(5043), 1, + sym_identifier, + ACTIONS(5045), 1, + anon_sym_AMP, + ACTIONS(5047), 1, + sym__integer_literal, + STATE(3172), 2, sym_comment, sym_include, - [135763] = 7, - ACTIONS(59), 1, + [136517] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4936), 1, - anon_sym_COLON, - STATE(4403), 1, - sym_on_stop_phrase, - STATE(3153), 2, + STATE(3173), 2, sym_comment, sym_include, - [135786] = 5, - ACTIONS(59), 1, + ACTIONS(5049), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [136536] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3154), 2, + ACTIONS(5051), 1, + sym_identifier, + ACTIONS(5053), 1, + aux_sym_input_expression_token2, + STATE(1386), 1, + sym_qualified_name, + STATE(3174), 2, sym_comment, sym_include, - ACTIONS(2015), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135805] = 5, + [136559] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3155), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5055), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3175), 2, sym_comment, sym_include, - ACTIONS(2017), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135824] = 7, + [136582] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(4938), 1, + ACTIONS(5057), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3156), 2, + STATE(3176), 2, sym_comment, sym_include, - [135847] = 6, - ACTIONS(3), 1, + [136605] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4940), 1, - sym_identifier, - ACTIONS(4942), 2, + ACTIONS(2097), 1, anon_sym_COMMA, + ACTIONS(5059), 1, anon_sym_COLON, - STATE(3157), 2, + STATE(3175), 1, + aux_sym_for_statement_repeat1, + STATE(3177), 2, sym_comment, sym_include, - [135868] = 5, + [136628] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3158), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5059), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3178), 2, sym_comment, sym_include, - ACTIONS(2019), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135887] = 5, + [136651] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3159), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5061), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3179), 2, sym_comment, sym_include, - ACTIONS(2021), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135906] = 5, + [136674] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3160), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4435), 1, + anon_sym_COLON, + STATE(3178), 1, + aux_sym_for_statement_repeat1, + STATE(3180), 2, sym_comment, sym_include, - ACTIONS(2023), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135925] = 5, + [136697] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3161), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4435), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3181), 2, sym_comment, sym_include, - ACTIONS(2025), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135944] = 5, + [136720] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3162), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5063), 1, + anon_sym_COLON, + STATE(3179), 1, + aux_sym_for_statement_repeat1, + STATE(3182), 2, sym_comment, sym_include, - ACTIONS(2027), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [135963] = 5, + [136743] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3163), 2, - sym_comment, - sym_include, - ACTIONS(4944), 3, + ACTIONS(2097), 1, anon_sym_COMMA, + ACTIONS(5063), 1, anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [135982] = 5, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3183), 2, + sym_comment, + sym_include, + [136766] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3164), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4018), 1, + anon_sym_COLON, + STATE(3181), 1, + aux_sym_for_statement_repeat1, + STATE(3184), 2, sym_comment, sym_include, - ACTIONS(2029), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136001] = 5, + [136789] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3165), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4018), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3185), 2, sym_comment, sym_include, - ACTIONS(2031), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136020] = 7, + [136812] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3846), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4405), 1, anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(4078), 1, - sym_on_stop_phrase, - STATE(3166), 2, + STATE(3183), 1, + aux_sym_for_statement_repeat1, + STATE(3186), 2, sym_comment, sym_include, - [136043] = 5, + [136835] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3167), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4405), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3187), 2, sym_comment, sym_include, - ACTIONS(2033), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136062] = 7, + [136858] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(4946), 1, - sym__terminator, - STATE(332), 1, + ACTIONS(5065), 1, + anon_sym_COLON, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3168), 2, + STATE(3188), 2, sym_comment, sym_include, - [136085] = 5, + [136881] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3169), 2, - sym_comment, - sym_include, - ACTIONS(4948), 3, + ACTIONS(2097), 1, anon_sym_COMMA, + ACTIONS(3281), 1, anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [136104] = 5, + STATE(3185), 1, + aux_sym_for_statement_repeat1, + STATE(3189), 2, + sym_comment, + sym_include, + [136904] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3170), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3281), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3190), 2, sym_comment, sym_include, - ACTIONS(2035), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136123] = 5, + [136927] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3171), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(3187), 1, + aux_sym_for_statement_repeat1, + STATE(3191), 2, sym_comment, sym_include, - ACTIONS(2037), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136142] = 5, + [136950] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3172), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3192), 2, sym_comment, sym_include, - ACTIONS(2039), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136161] = 5, - ACTIONS(59), 1, + [136973] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3173), 2, + ACTIONS(5003), 1, + anon_sym_, + ACTIONS(5067), 1, + anon_sym_RPAREN, + STATE(3232), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3193), 2, sym_comment, sym_include, - ACTIONS(2041), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136180] = 7, + [136996] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2562), 1, + ACTIONS(2411), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3236), 1, aux_sym_for_statement_repeat1, - STATE(3174), 2, + STATE(3194), 2, sym_comment, sym_include, - [136203] = 7, + [137019] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2562), 1, + ACTIONS(2411), 1, anon_sym_COLON, - STATE(3152), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3175), 2, + STATE(3195), 2, sym_comment, sym_include, - [136226] = 7, - ACTIONS(3), 1, + [137042] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4950), 1, - sym_identifier, - ACTIONS(4952), 1, - anon_sym_AMP, - ACTIONS(4954), 1, - sym__integer_literal, - STATE(3176), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2586), 1, + anon_sym_COLON, + STATE(3190), 1, + aux_sym_for_statement_repeat1, + STATE(3196), 2, sym_comment, sym_include, - [136249] = 5, + [137065] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3177), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2586), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3197), 2, sym_comment, sym_include, - ACTIONS(2043), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136268] = 7, + [137088] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2536), 1, + ACTIONS(3316), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3192), 1, aux_sym_for_statement_repeat1, - STATE(3178), 2, + STATE(3198), 2, sym_comment, sym_include, - [136291] = 5, + [137111] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3179), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3316), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3199), 2, sym_comment, sym_include, - ACTIONS(2045), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136310] = 5, + [137134] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3180), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, + anon_sym_COLON, + STATE(3197), 1, + aux_sym_for_statement_repeat1, + STATE(3200), 2, sym_comment, sym_include, - ACTIONS(1942), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136329] = 5, + [137157] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3181), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3201), 2, sym_comment, sym_include, - ACTIONS(2049), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136348] = 5, + [137180] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3182), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2602), 1, + anon_sym_COLON, + STATE(3199), 1, + aux_sym_for_statement_repeat1, + STATE(3202), 2, sym_comment, sym_include, - ACTIONS(2051), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136367] = 5, + [137203] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3183), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2602), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3203), 2, sym_comment, sym_include, - ACTIONS(1497), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136386] = 7, + [137226] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2536), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5069), 1, anon_sym_COLON, - STATE(3302), 1, - aux_sym_for_statement_repeat1, - STATE(3184), 2, + STATE(4220), 1, + sym_on_stop_phrase, + STATE(3204), 2, sym_comment, sym_include, - [136409] = 5, + [137249] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3185), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2447), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3205), 2, sym_comment, sym_include, - ACTIONS(1999), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136428] = 5, + [137272] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3186), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5071), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3206), 2, sym_comment, sym_include, - ACTIONS(1997), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136447] = 5, + [137295] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3187), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2447), 1, + anon_sym_COLON, + STATE(3201), 1, + aux_sym_for_statement_repeat1, + STATE(3207), 2, sym_comment, sym_include, - ACTIONS(1995), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136466] = 5, + [137318] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3188), 2, + STATE(3208), 2, sym_comment, sym_include, - ACTIONS(1993), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136485] = 5, + ACTIONS(5073), 3, + aux_sym_index_tuning_token2, + aux_sym_index_tuning_token3, + aux_sym_index_tuning_token4, + [137337] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3189), 2, + ACTIONS(5022), 1, + sym__integer_literal, + STATE(819), 1, + sym__decimal_literal, + STATE(2984), 1, + sym_number_literal, + STATE(3209), 2, sym_comment, sym_include, - ACTIONS(1991), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136504] = 7, + [137360] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4956), 1, + ACTIONS(2606), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3203), 1, aux_sym_for_statement_repeat1, - STATE(3190), 2, + STATE(3210), 2, sym_comment, sym_include, - [136527] = 7, + [137383] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4958), 1, + ACTIONS(2606), 1, anon_sym_COLON, - STATE(3190), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3191), 2, + STATE(3211), 2, sym_comment, sym_include, - [136550] = 5, + [137406] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3192), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2441), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3212), 2, sym_comment, sym_include, - ACTIONS(1989), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136569] = 5, + [137429] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3193), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5075), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3213), 2, sym_comment, sym_include, - ACTIONS(1987), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136588] = 7, + [137452] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(4960), 1, + ACTIONS(5077), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3194), 2, + STATE(3214), 2, sym_comment, sym_include, - [136611] = 7, + [137475] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4958), 1, + ACTIONS(2576), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3195), 2, + STATE(3215), 2, sym_comment, sym_include, - [136634] = 5, + [137498] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3196), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_COLON, + STATE(3244), 1, + aux_sym_for_statement_repeat1, + STATE(3216), 2, sym_comment, sym_include, - ACTIONS(1985), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136653] = 5, + [137521] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3197), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2441), 1, + anon_sym_COLON, + STATE(3205), 1, + aux_sym_for_statement_repeat1, + STATE(3217), 2, sym_comment, sym_include, - ACTIONS(1983), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136672] = 5, - ACTIONS(59), 1, + [137544] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3198), 2, + ACTIONS(5003), 1, + anon_sym_, + ACTIONS(5079), 1, + anon_sym_RPAREN, + STATE(3232), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3218), 2, sym_comment, sym_include, - ACTIONS(1978), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136691] = 5, - ACTIONS(59), 1, + [137567] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3199), 2, + ACTIONS(5081), 1, + sym_identifier, + ACTIONS(5083), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3219), 2, sym_comment, sym_include, - ACTIONS(1976), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136710] = 5, + [137588] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3200), 2, + STATE(3220), 2, sym_comment, sym_include, - ACTIONS(1974), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136729] = 5, + ACTIONS(5085), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [137607] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3201), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4786), 1, + anon_sym_COLON, + STATE(4193), 1, + sym_on_stop_phrase, + STATE(3221), 2, sym_comment, sym_include, - ACTIONS(1972), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136748] = 7, + [137630] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(4962), 1, + ACTIONS(5087), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3202), 2, + STATE(3222), 2, sym_comment, sym_include, - [136771] = 7, + [137653] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4964), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3203), 2, + STATE(3223), 2, sym_comment, sym_include, - [136794] = 5, + ACTIONS(5089), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [137672] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3204), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2445), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3224), 2, sym_comment, sym_include, - ACTIONS(1970), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136813] = 7, + [137695] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4314), 1, + ACTIONS(2445), 1, anon_sym_COLON, - STATE(3195), 1, + STATE(3211), 1, aux_sym_for_statement_repeat1, - STATE(3205), 2, + STATE(3225), 2, sym_comment, sym_include, - [136836] = 5, - ACTIONS(59), 1, + [137718] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3206), 2, + ACTIONS(5091), 1, + sym_identifier, + ACTIONS(5093), 1, + aux_sym_buffer_definition_token3, + STATE(4162), 1, + sym_qualified_name, + STATE(3226), 2, sym_comment, sym_include, - ACTIONS(1968), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136855] = 5, + [137741] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3207), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5095), 1, + anon_sym_RPAREN, + STATE(3265), 1, + aux_sym_function_statement_repeat1, + STATE(3227), 2, sym_comment, sym_include, - ACTIONS(1966), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136874] = 7, - ACTIONS(59), 1, + [137764] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4314), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3208), 2, + ACTIONS(5003), 1, + anon_sym_, + ACTIONS(5097), 1, + anon_sym_RPAREN, + STATE(3218), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3228), 2, sym_comment, sym_include, - [136897] = 5, + [137787] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3209), 2, + STATE(3229), 2, sym_comment, sym_include, - ACTIONS(1962), 3, + ACTIONS(5099), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [136916] = 7, + [137806] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4966), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4323), 1, anon_sym_COLON, - STATE(3203), 1, - aux_sym_for_statement_repeat1, - STATE(3210), 2, + STATE(4163), 1, + sym_on_stop_phrase, + STATE(3230), 2, sym_comment, sym_include, - [136939] = 7, + [137829] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4966), 1, + ACTIONS(2409), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3211), 2, + STATE(3231), 2, + sym_comment, + sym_include, + [137852] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5101), 1, + anon_sym_RPAREN, + ACTIONS(5103), 1, + anon_sym_, + STATE(3232), 3, sym_comment, sym_include, - [136962] = 5, + aux_sym_accumulate_statement_repeat1, + [137873] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3212), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2459), 1, + anon_sym_COLON, + STATE(3275), 1, + aux_sym_for_statement_repeat1, + STATE(3233), 2, sym_comment, sym_include, - ACTIONS(1960), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136981] = 5, + [137896] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3213), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2409), 1, + anon_sym_COLON, + STATE(3224), 1, + aux_sym_for_statement_repeat1, + STATE(3234), 2, sym_comment, sym_include, - ACTIONS(1958), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137000] = 5, + [137919] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3214), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5106), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3235), 2, sym_comment, sym_include, - ACTIONS(1956), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137019] = 5, + [137942] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3215), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2459), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3236), 2, sym_comment, sym_include, - ACTIONS(1954), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137038] = 7, + [137965] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4968), 1, + ACTIONS(5108), 1, sym_identifier, - ACTIONS(4970), 1, - aux_sym_primitive_type_token19, - STATE(4265), 1, + ACTIONS(5110), 1, + aux_sym_buffer_definition_token3, + STATE(4258), 1, sym_qualified_name, - STATE(3216), 2, + STATE(3237), 2, sym_comment, sym_include, - [137061] = 5, + [137988] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3217), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5112), 1, + anon_sym_COLON, + STATE(4146), 1, + sym_on_stop_phrase, + STATE(3238), 2, sym_comment, sym_include, - ACTIONS(1952), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137080] = 5, + [138011] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3218), 2, + ACTIONS(3782), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(4132), 1, + sym_on_stop_phrase, + STATE(3239), 2, sym_comment, sym_include, - ACTIONS(1950), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137099] = 5, + [138034] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3219), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5114), 1, + anon_sym_LPAREN, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3240), 2, sym_comment, sym_include, - ACTIONS(1948), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137118] = 5, + [138057] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3220), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5116), 1, + anon_sym_RPAREN, + STATE(3288), 1, + aux_sym_function_statement_repeat1, + STATE(3241), 2, sym_comment, sym_include, - ACTIONS(1946), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137137] = 7, + [138080] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3984), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3221), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5118), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3242), 2, sym_comment, sym_include, - [137160] = 7, + [138103] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4288), 1, + ACTIONS(3855), 1, anon_sym_COLON, - STATE(3211), 1, - aux_sym_for_statement_repeat1, - STATE(3222), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(4098), 1, + sym_on_stop_phrase, + STATE(3243), 2, sym_comment, sym_include, - [137183] = 5, + [138126] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3223), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2604), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3244), 2, sym_comment, sym_include, - ACTIONS(1944), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137202] = 5, + [138149] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3224), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2604), 1, + anon_sym_COLON, + STATE(3295), 1, + aux_sym_for_statement_repeat1, + STATE(3245), 2, sym_comment, sym_include, - ACTIONS(1626), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137221] = 7, - ACTIONS(59), 1, + [138172] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5120), 1, + sym_identifier, + ACTIONS(5122), 1, + anon_sym_AMP, + ACTIONS(5124), 1, + sym__integer_literal, + STATE(3246), 2, + sym_comment, + sym_include, + [138195] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(5126), 1, + sym_identifier, + ACTIONS(5128), 2, anon_sym_COMMA, - ACTIONS(4288), 1, anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3225), 2, + STATE(3247), 2, sym_comment, sym_include, - [137244] = 5, + [138216] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3226), 2, + STATE(3248), 2, sym_comment, sym_include, - ACTIONS(1940), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137263] = 5, + ACTIONS(5130), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [138235] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3227), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5132), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3249), 2, sym_comment, sym_include, - ACTIONS(1938), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137282] = 5, + [138258] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3228), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5134), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3250), 2, sym_comment, sym_include, - ACTIONS(1934), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137301] = 5, + [138281] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3229), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5136), 1, + anon_sym_COLON, + STATE(3249), 1, + aux_sym_for_statement_repeat1, + STATE(3251), 2, sym_comment, sym_include, - ACTIONS(1932), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137320] = 5, + [138304] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3230), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5138), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3252), 2, sym_comment, sym_include, - ACTIONS(1930), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137339] = 5, + [138327] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3231), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5140), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3253), 2, sym_comment, sym_include, - ACTIONS(1928), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137358] = 5, + [138350] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3232), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5136), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3254), 2, sym_comment, sym_include, - ACTIONS(1926), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137377] = 7, + [138373] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4972), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3233), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5142), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3255), 2, sym_comment, sym_include, - [137400] = 7, + [138396] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4974), 1, - anon_sym_RPAREN, - ACTIONS(4976), 1, - anon_sym_COMMA, - STATE(3345), 1, - aux_sym_function_statement_repeat1, - STATE(3234), 2, + STATE(3256), 2, sym_comment, sym_include, - [137423] = 5, + ACTIONS(5144), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [138415] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3235), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4329), 1, + anon_sym_COLON, + STATE(3254), 1, + aux_sym_for_statement_repeat1, + STATE(3257), 2, sym_comment, sym_include, - ACTIONS(1924), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137442] = 7, + [138438] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3196), 1, + ACTIONS(4329), 1, anon_sym_COLON, - STATE(3221), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3236), 2, + STATE(3258), 2, sym_comment, sym_include, - [137465] = 5, + [138461] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3237), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5146), 1, + anon_sym_COLON, + STATE(3255), 1, + aux_sym_for_statement_repeat1, + STATE(3259), 2, sym_comment, sym_include, - ACTIONS(1922), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137484] = 7, + [138484] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3196), 1, + ACTIONS(5146), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3238), 2, + STATE(3260), 2, sym_comment, sym_include, - [137507] = 5, + [138507] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3239), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4086), 1, + anon_sym_COLON, + STATE(3258), 1, + aux_sym_for_statement_repeat1, + STATE(3261), 2, sym_comment, sym_include, - ACTIONS(1920), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137526] = 7, + [138530] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3978), 1, + ACTIONS(4086), 1, anon_sym_COLON, - STATE(3225), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3240), 2, + STATE(3262), 2, sym_comment, sym_include, - [137549] = 5, + [138553] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3241), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4311), 1, + anon_sym_COLON, + STATE(3260), 1, + aux_sym_for_statement_repeat1, + STATE(3263), 2, sym_comment, sym_include, - ACTIONS(1918), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137568] = 5, + [138576] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3242), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4311), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3264), 2, sym_comment, sym_include, - ACTIONS(1916), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137587] = 5, + [138599] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3243), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3265), 2, sym_comment, sym_include, - ACTIONS(1914), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137606] = 7, + [138622] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3978), 1, + ACTIONS(3269), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3262), 1, aux_sym_for_statement_repeat1, - STATE(3244), 2, + STATE(3266), 2, sym_comment, sym_include, - [137629] = 5, + [138645] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3245), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3269), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3267), 2, sym_comment, sym_include, - ACTIONS(1910), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137648] = 5, + [138668] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3246), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4123), 1, + anon_sym_COLON, + STATE(3264), 1, + aux_sym_for_statement_repeat1, + STATE(3268), 2, sym_comment, sym_include, - ACTIONS(1908), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137667] = 5, + [138691] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3247), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4123), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3269), 2, sym_comment, sym_include, - ACTIONS(4978), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137686] = 5, + [138714] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3248), 2, + STATE(3270), 2, sym_comment, sym_include, - ACTIONS(1906), 3, + ACTIONS(5150), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [137705] = 5, + [138733] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3249), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2572), 1, + anon_sym_COLON, + STATE(3267), 1, + aux_sym_for_statement_repeat1, + STATE(3271), 2, sym_comment, sym_include, - ACTIONS(1904), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137724] = 5, + [138756] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3250), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2572), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3272), 2, sym_comment, sym_include, - ACTIONS(1902), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137743] = 5, + [138779] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3251), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3285), 1, + anon_sym_COLON, + STATE(3269), 1, + aux_sym_for_statement_repeat1, + STATE(3273), 2, sym_comment, sym_include, - ACTIONS(1900), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137762] = 5, + [138802] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3252), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3285), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3274), 2, sym_comment, sym_include, - ACTIONS(1898), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137781] = 7, + [138825] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2544), 1, + ACTIONS(2568), 1, anon_sym_COLON, - STATE(3238), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3253), 2, + STATE(3275), 2, sym_comment, sym_include, - [137804] = 5, + [138848] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3254), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5152), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3276), 2, sym_comment, sym_include, - ACTIONS(1894), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137823] = 7, + [138871] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2544), 1, + ACTIONS(2568), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3308), 1, aux_sym_for_statement_repeat1, - STATE(3255), 2, + STATE(3277), 2, sym_comment, sym_include, - [137846] = 5, + [138894] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3256), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2570), 1, + anon_sym_COLON, + STATE(3272), 1, + aux_sym_for_statement_repeat1, + STATE(3278), 2, sym_comment, sym_include, - ACTIONS(1892), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137865] = 5, + [138917] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3257), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2570), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3279), 2, sym_comment, sym_include, - ACTIONS(1886), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137884] = 6, - ACTIONS(3), 1, + [138940] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4980), 1, - anon_sym_RPAREN, - ACTIONS(4982), 1, - anon_sym_, - STATE(3258), 3, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + sym__terminator, + STATE(3314), 1, + aux_sym_data_relation_repeat1, + STATE(3280), 2, sym_comment, sym_include, - aux_sym_accumulate_statement_repeat1, - [137905] = 7, + [138963] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3222), 1, + ACTIONS(2582), 1, anon_sym_COLON, - STATE(3244), 1, + STATE(3274), 1, aux_sym_for_statement_repeat1, - STATE(3259), 2, + STATE(3281), 2, sym_comment, sym_include, - [137928] = 7, + [138986] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3860), 1, - aux_sym__block_terminator_token1, - STATE(3230), 1, - sym__case_terminator, - STATE(3262), 1, - sym__block_terminator, - STATE(3260), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2582), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3282), 2, sym_comment, sym_include, - [137951] = 5, + [139009] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3261), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5154), 1, + anon_sym_COLON, + STATE(4144), 1, + sym_on_stop_phrase, + STATE(3283), 2, sym_comment, sym_include, - ACTIONS(1878), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137970] = 5, - ACTIONS(59), 1, + [139032] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3262), 2, + ACTIONS(5156), 1, + sym_identifier, + ACTIONS(5158), 1, + anon_sym_RPAREN, + STATE(3294), 1, + aux_sym_query_fields_repeat1, + STATE(3284), 2, sym_comment, sym_include, - ACTIONS(1872), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [137989] = 7, + [139055] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3222), 1, + ACTIONS(2453), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3263), 2, + STATE(3285), 2, sym_comment, sym_include, - [138012] = 5, + [139078] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3264), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2453), 1, + anon_sym_COLON, + STATE(3279), 1, + aux_sym_for_statement_repeat1, + STATE(3286), 2, sym_comment, sym_include, - ACTIONS(1866), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138031] = 7, + [139101] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(2413), 1, - anon_sym_COLON, - STATE(3351), 1, - aux_sym_for_statement_repeat1, - STATE(3265), 2, + ACTIONS(5160), 1, + anon_sym_RPAREN, + STATE(3057), 1, + aux_sym_function_statement_repeat1, + STATE(3287), 2, sym_comment, sym_include, - [138054] = 5, + [139124] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3266), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5162), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3288), 2, sym_comment, sym_include, - ACTIONS(1862), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138073] = 5, + [139147] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3267), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2574), 1, + anon_sym_COLON, + STATE(3282), 1, + aux_sym_for_statement_repeat1, + STATE(3289), 2, sym_comment, sym_include, - ACTIONS(1850), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138092] = 7, + [139170] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2413), 1, + ACTIONS(2574), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3268), 2, + STATE(3290), 2, sym_comment, sym_include, - [138115] = 5, + [139193] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3269), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5162), 1, + anon_sym_RPAREN, + STATE(3322), 1, + aux_sym_function_statement_repeat1, + STATE(3291), 2, sym_comment, sym_include, - ACTIONS(1846), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138134] = 7, + [139216] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4985), 1, - anon_sym_COLON, - STATE(4264), 1, - sym_on_stop_phrase, - STATE(3270), 2, + ACTIONS(5022), 1, + sym__integer_literal, + STATE(819), 1, + sym__decimal_literal, + STATE(2276), 1, + sym_number_literal, + STATE(3292), 2, sym_comment, sym_include, - [138157] = 7, + [139239] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2546), 1, + ACTIONS(2419), 1, anon_sym_COLON, - STATE(3255), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3271), 2, + STATE(3293), 2, sym_comment, sym_include, - [138180] = 5, - ACTIONS(59), 1, + [139262] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3272), 2, + ACTIONS(5156), 1, + sym_identifier, + ACTIONS(5164), 1, + anon_sym_RPAREN, + STATE(3323), 1, + aux_sym_query_fields_repeat1, + STATE(3294), 2, sym_comment, sym_include, - ACTIONS(1842), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138199] = 5, + [139285] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3273), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3295), 2, sym_comment, sym_include, - ACTIONS(1828), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138218] = 7, + [139308] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2546), 1, + ACTIONS(2419), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(3274), 2, + STATE(3296), 2, sym_comment, sym_include, - [138241] = 5, - ACTIONS(59), 1, + [139331] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3275), 2, + ACTIONS(5003), 1, + anon_sym_, + ACTIONS(5166), 1, + anon_sym_RPAREN, + STATE(3232), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3297), 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, - [138260] = 7, + [139354] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2548), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4847), 1, anon_sym_COLON, - STATE(3263), 1, - aux_sym_for_statement_repeat1, - STATE(3276), 2, + STATE(4170), 1, + sym_on_stop_phrase, + STATE(3298), 2, sym_comment, sym_include, - [138283] = 5, + [139377] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3277), 2, + STATE(3299), 2, sym_comment, sym_include, - ACTIONS(1790), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138302] = 5, + ACTIONS(5168), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [139396] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3278), 2, + STATE(3300), 2, sym_comment, sym_include, - ACTIONS(1786), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138321] = 7, + ACTIONS(5170), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [139415] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2548), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3279), 2, + STATE(3301), 2, sym_comment, sym_include, - [138344] = 5, + [139438] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3280), 2, + ACTIONS(5172), 1, + aux_sym__block_terminator_token1, + STATE(1195), 1, + sym__function_terminator, + STATE(1447), 1, + sym__block_terminator, + STATE(3302), 2, sym_comment, sym_include, - ACTIONS(1780), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138363] = 7, + [139461] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4987), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(4122), 1, - sym_on_stop_phrase, - STATE(3281), 2, + STATE(3290), 1, + aux_sym_for_statement_repeat1, + STATE(3303), 2, sym_comment, sym_include, - [138386] = 5, - ACTIONS(59), 1, + [139484] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3282), 2, + ACTIONS(5174), 1, + sym_identifier, + ACTIONS(5176), 1, + aux_sym_buffer_definition_token3, + STATE(4472), 1, + sym_qualified_name, + STATE(3304), 2, sym_comment, sym_include, - ACTIONS(1774), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138405] = 7, + [139507] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(4989), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3283), 2, + ACTIONS(5178), 1, + anon_sym_RPAREN, + ACTIONS(5180), 1, + anon_sym_COMMA, + STATE(3305), 3, sym_comment, sym_include, - [138428] = 5, - ACTIONS(59), 1, + aux_sym_function_statement_repeat1, + [139528] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3284), 2, + ACTIONS(5003), 1, + anon_sym_, + ACTIONS(5183), 1, + anon_sym_RPAREN, + STATE(3297), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3306), 2, sym_comment, sym_include, - ACTIONS(1770), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138447] = 7, + [139551] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3870), 1, - anon_sym_COLON, - ACTIONS(4099), 1, + ACTIONS(4141), 1, aux_sym_on_error_phrase_token1, - STATE(4315), 1, + ACTIONS(4362), 1, + anon_sym_COLON, + STATE(4183), 1, sym_on_stop_phrase, - STATE(3285), 2, + STATE(3307), 2, sym_comment, sym_include, - [138470] = 5, + [139574] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3286), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2590), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3308), 2, sym_comment, sym_include, - ACTIONS(1766), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138489] = 7, + [139597] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2433), 1, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(3274), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3287), 2, + STATE(3309), 2, sym_comment, sym_include, - [138512] = 5, + [139620] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3288), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2590), 1, + anon_sym_COLON, + STATE(3331), 1, + aux_sym_for_statement_repeat1, + STATE(3310), 2, sym_comment, sym_include, - ACTIONS(1762), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138531] = 7, + [139643] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2550), 1, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(3279), 1, + STATE(3301), 1, aux_sym_for_statement_repeat1, - STATE(3289), 2, + STATE(3311), 2, sym_comment, sym_include, - [138554] = 5, - ACTIONS(59), 1, + [139666] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3290), 2, + ACTIONS(5185), 1, + sym_identifier, + ACTIONS(5187), 1, + aux_sym_buffer_definition_token3, + STATE(4427), 1, + sym_qualified_name, + STATE(3312), 2, sym_comment, sym_include, - ACTIONS(1758), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138573] = 7, + [139689] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(2550), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3291), 2, + ACTIONS(5189), 1, + anon_sym_RPAREN, + STATE(3347), 1, + aux_sym_function_statement_repeat1, + STATE(3313), 2, sym_comment, sym_include, - [138596] = 7, + [139712] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(3226), 1, - anon_sym_COLON, - STATE(3309), 1, - aux_sym_for_statement_repeat1, - STATE(3292), 2, + ACTIONS(4229), 1, + sym__terminator, + STATE(2606), 1, + aux_sym_data_relation_repeat1, + STATE(3314), 2, sym_comment, sym_include, - [138619] = 5, - ACTIONS(59), 1, + [139735] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3293), 2, + ACTIONS(4776), 1, + sym__terminator, + ACTIONS(5191), 1, + sym_identifier, + STATE(3352), 1, + sym_qualified_name, + STATE(3315), 2, sym_comment, sym_include, - ACTIONS(1752), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138638] = 7, + [139758] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(2409), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3294), 2, + ACTIONS(4229), 1, + sym__terminator, + STATE(3353), 1, + aux_sym_data_relation_repeat1, + STATE(3316), 2, sym_comment, sym_include, - [138661] = 5, + [139781] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3295), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3257), 1, + anon_sym_COLON, + STATE(3325), 1, + aux_sym_for_statement_repeat1, + STATE(3317), 2, sym_comment, sym_include, - ACTIONS(1692), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138680] = 5, + [139804] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3296), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5193), 1, + sym__terminator, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3318), 2, sym_comment, sym_include, - ACTIONS(1648), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138699] = 5, + [139827] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3297), 2, + ACTIONS(3950), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(4208), 1, + sym_on_stop_phrase, + STATE(3319), 2, sym_comment, sym_include, - ACTIONS(1644), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138718] = 7, + [139850] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(4991), 1, + ACTIONS(5195), 1, anon_sym_RPAREN, - STATE(3380), 1, + STATE(3376), 1, aux_sym_function_statement_repeat1, - STATE(3298), 2, - sym_comment, - sym_include, - [138741] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2542), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3299), 2, - sym_comment, - sym_include, - [138764] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4993), 1, - sym_identifier, - ACTIONS(4995), 1, - anon_sym_RPAREN, - STATE(3388), 1, - aux_sym_query_fields_repeat1, - STATE(3300), 2, + STATE(3320), 2, sym_comment, sym_include, - [138787] = 7, + [139873] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(4997), 1, - sym__terminator, - STATE(332), 1, + ACTIONS(5197), 1, + anon_sym_LPAREN, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3301), 2, + STATE(3321), 2, sym_comment, sym_include, - [138810] = 7, + [139896] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(2560), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3302), 2, + ACTIONS(5199), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3322), 2, sym_comment, sym_include, - [138833] = 7, - ACTIONS(59), 1, + [139919] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2560), 1, - anon_sym_COLON, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3303), 2, + ACTIONS(5201), 1, + sym_identifier, + ACTIONS(5204), 1, + anon_sym_RPAREN, + STATE(3323), 3, sym_comment, sym_include, - [138856] = 7, + aux_sym_query_fields_repeat1, + [139940] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4999), 1, + ACTIONS(5206), 1, sym_identifier, - ACTIONS(5001), 1, + ACTIONS(5208), 1, aux_sym_input_expression_token2, - STATE(746), 1, + STATE(747), 1, sym_qualified_name, - STATE(3304), 2, + STATE(3324), 2, sym_comment, sym_include, - [138879] = 5, + [139963] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3305), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3325), 2, sym_comment, sym_include, - ACTIONS(1640), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138898] = 7, + [139986] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1047), 1, + ACTIONS(1011), 1, anon_sym_LPAREN, - ACTIONS(5003), 1, + ACTIONS(5210), 1, sym_identifier, - STATE(748), 1, + STATE(765), 1, sym_parenthesized_expression, - STATE(3306), 2, + STATE(3326), 2, sym_comment, sym_include, - [138921] = 5, + [140009] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3307), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, + anon_sym_COLON, + STATE(3386), 1, + aux_sym_for_statement_repeat1, + STATE(3327), 2, sym_comment, sym_include, - ACTIONS(1630), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138940] = 7, + [140032] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2409), 1, + ACTIONS(3804), 1, anon_sym_COLON, - STATE(3039), 1, - aux_sym_for_statement_repeat1, - STATE(3308), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(4244), 1, + sym_on_stop_phrase, + STATE(3328), 2, sym_comment, sym_include, - [138963] = 7, + [140055] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4052), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3309), 2, + ACTIONS(5172), 1, + aux_sym__block_terminator_token1, + STATE(1289), 1, + sym__function_terminator, + STATE(1447), 1, + sym__block_terminator, + STATE(3329), 2, sym_comment, sym_include, - [138986] = 7, + [140078] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_, - ACTIONS(5005), 1, - anon_sym_RPAREN, - STATE(3258), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3310), 2, + ACTIONS(5212), 1, + sym_identifier, + ACTIONS(5214), 1, + anon_sym_AMP, + ACTIONS(5216), 1, + sym__integer_literal, + STATE(3330), 2, sym_comment, sym_include, - [139009] = 7, + [140101] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4678), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3247), 1, anon_sym_COLON, - STATE(4160), 1, - sym_on_stop_phrase, - STATE(3311), 2, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3331), 2, sym_comment, sym_include, - [139032] = 7, + [140124] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4052), 1, + ACTIONS(3247), 1, anon_sym_COLON, - STATE(3321), 1, + STATE(3413), 1, aux_sym_for_statement_repeat1, - STATE(3312), 2, + STATE(3332), 2, sym_comment, sym_include, - [139055] = 7, + [140147] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2552), 1, + ACTIONS(5218), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3313), 2, + STATE(3333), 2, sym_comment, sym_include, - [139078] = 7, + [140170] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2552), 1, + ACTIONS(5220), 1, anon_sym_COLON, - STATE(3395), 1, + STATE(3333), 1, aux_sym_for_statement_repeat1, - STATE(3314), 2, + STATE(3334), 2, sym_comment, sym_include, - [139101] = 7, + [140193] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(5220), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3315), 2, + STATE(3335), 2, sym_comment, sym_include, - [139124] = 7, + [140216] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3836), 1, - aux_sym__block_terminator_token1, - STATE(969), 1, - sym__case_terminator, - STATE(1011), 1, - sym__block_terminator, - STATE(3316), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5222), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3336), 2, sym_comment, sym_include, - [139147] = 7, + [140239] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3259), 1, + ACTIONS(4139), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3335), 1, aux_sym_for_statement_repeat1, - STATE(3317), 2, + STATE(3337), 2, sym_comment, sym_include, - [139170] = 7, + [140262] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3259), 1, + ACTIONS(4139), 1, anon_sym_COLON, - STATE(3324), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3318), 2, + STATE(3338), 2, sym_comment, sym_include, - [139193] = 7, + [140285] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(5224), 1, anon_sym_COLON, - STATE(3291), 1, + STATE(3336), 1, aux_sym_for_statement_repeat1, - STATE(3319), 2, - sym_comment, - sym_include, - [139216] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5007), 1, - sym_identifier, - ACTIONS(5009), 1, - aux_sym_buffer_definition_token3, - STATE(4442), 1, - sym_qualified_name, - STATE(3320), 2, + STATE(3339), 2, sym_comment, sym_include, - [139239] = 7, + [140308] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4115), 1, + ACTIONS(5224), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3321), 2, + STATE(3340), 2, sym_comment, sym_include, - [139262] = 7, + [140331] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4115), 1, + ACTIONS(4024), 1, anon_sym_COLON, - STATE(3327), 1, + STATE(3338), 1, aux_sym_for_statement_repeat1, - STATE(3322), 2, + STATE(3341), 2, sym_comment, sym_include, - [139285] = 7, - ACTIONS(59), 1, + [140354] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(4319), 1, - sym_on_stop_phrase, - STATE(3323), 2, + ACTIONS(349), 1, + anon_sym_LPAREN, + ACTIONS(5226), 1, + sym_identifier, + STATE(43), 1, + sym_parenthesized_expression, + STATE(3342), 2, sym_comment, sym_include, - [139308] = 7, + [140377] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4068), 1, + ACTIONS(4024), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3324), 2, + STATE(3343), 2, + sym_comment, + sym_include, + [140400] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4905), 1, + sym_identifier, + ACTIONS(4907), 1, + aux_sym_input_expression_token2, + STATE(14), 1, + sym_qualified_name, + STATE(3344), 2, sym_comment, sym_include, - [139331] = 5, + [140423] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3325), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4475), 1, + anon_sym_COLON, + STATE(3340), 1, + aux_sym_for_statement_repeat1, + STATE(3345), 2, sym_comment, sym_include, - ACTIONS(2148), 3, - aux_sym_buffer_definition_token2, - aux_sym_repeat_statement_token1, - aux_sym_do_block_token1, - [139350] = 7, + [140446] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4068), 1, + ACTIONS(4475), 1, anon_sym_COLON, - STATE(3332), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3326), 2, + STATE(3346), 2, sym_comment, sym_include, - [139373] = 7, + [140469] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5011), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3327), 2, + ACTIONS(5228), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3347), 2, sym_comment, sym_include, - [139396] = 7, + [140492] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3729), 1, - aux_sym__block_terminator_token1, - STATE(1003), 1, - sym__block_terminator, - STATE(1051), 1, - sym__case_terminator, - STATE(3328), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5228), 1, + anon_sym_RPAREN, + STATE(3426), 1, + aux_sym_function_statement_repeat1, + STATE(3348), 2, sym_comment, sym_include, - [139419] = 7, + [140515] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(5011), 1, + ACTIONS(3263), 1, anon_sym_COLON, - STATE(3335), 1, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(3329), 2, + STATE(3349), 2, sym_comment, sym_include, - [139442] = 6, - ACTIONS(3), 1, + [140538] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5013), 1, - sym_identifier, - ACTIONS(5015), 2, + ACTIONS(2097), 1, anon_sym_COMMA, + ACTIONS(3263), 1, anon_sym_COLON, - STATE(3330), 2, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3350), 2, sym_comment, sym_include, - [139463] = 7, + [140561] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_, - ACTIONS(5017), 1, - anon_sym_RPAREN, - STATE(3310), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3331), 2, + ACTIONS(81), 1, + sym_identifier, + ACTIONS(5230), 1, + sym__namedot, + STATE(3354), 1, + aux_sym_qualified_name_repeat1, + STATE(3351), 2, sym_comment, sym_include, - [139486] = 7, + [140584] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(4097), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3332), 2, + ACTIONS(4137), 1, + sym__terminator, + STATE(3440), 1, + aux_sym_data_relation_repeat1, + STATE(3352), 2, sym_comment, sym_include, - [139509] = 7, + [140607] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(4097), 1, - anon_sym_COLON, - STATE(3337), 1, - aux_sym_for_statement_repeat1, - STATE(3333), 2, + ACTIONS(4137), 1, + sym__terminator, + STATE(2606), 1, + aux_sym_data_relation_repeat1, + STATE(3353), 2, sym_comment, sym_include, - [139532] = 5, - ACTIONS(59), 1, + [140630] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3334), 2, + ACTIONS(100), 1, + sym_identifier, + ACTIONS(5232), 1, + sym__namedot, + STATE(3354), 3, sym_comment, sym_include, - ACTIONS(1582), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [139551] = 7, + aux_sym_qualified_name_repeat1, + [140651] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(5019), 1, + ACTIONS(4038), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3346), 1, aux_sym_for_statement_repeat1, - STATE(3335), 2, + STATE(3355), 2, sym_comment, sym_include, - [139574] = 7, + [140674] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4215), 1, - anon_sym_COLON, - STATE(4202), 1, - sym_on_stop_phrase, - STATE(3336), 2, + STATE(3356), 2, sym_comment, sym_include, - [139597] = 7, + ACTIONS(1605), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140693] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5021), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3337), 2, + STATE(3357), 2, sym_comment, sym_include, - [139620] = 7, + ACTIONS(2067), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140712] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5023), 1, - aux_sym__block_terminator_token1, - STATE(1426), 1, - sym__function_terminator, - STATE(1476), 1, - sym__block_terminator, - STATE(3338), 2, + STATE(3358), 2, sym_comment, sym_include, - [139643] = 7, + ACTIONS(2065), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140731] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5023), 1, - aux_sym__block_terminator_token1, - STATE(1436), 1, - sym__function_terminator, - STATE(1476), 1, - sym__block_terminator, - STATE(3339), 2, + STATE(3359), 2, sym_comment, sym_include, - [139666] = 7, + ACTIONS(2063), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140750] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5023), 1, - aux_sym__block_terminator_token1, - STATE(1454), 1, - sym__function_terminator, - STATE(1476), 1, - sym__block_terminator, - STATE(3340), 2, + STATE(3360), 2, sym_comment, sym_include, - [139689] = 5, + ACTIONS(2061), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140769] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3341), 2, + STATE(3361), 2, sym_comment, sym_include, - ACTIONS(5025), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [139708] = 7, + ACTIONS(2056), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140788] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2377), 1, + ACTIONS(4038), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3342), 2, + STATE(3362), 2, sym_comment, sym_include, - [139731] = 5, - ACTIONS(59), 1, + [140811] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3343), 2, + ACTIONS(5235), 1, + sym_identifier, + ACTIONS(5237), 1, + sym__terminator, + STATE(3445), 1, + sym_qualified_name, + STATE(3363), 2, sym_comment, sym_include, - ACTIONS(5027), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [139750] = 7, + [140834] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2377), 1, + ACTIONS(2596), 1, anon_sym_COLON, - STATE(3315), 1, + STATE(3350), 1, aux_sym_for_statement_repeat1, - STATE(3344), 2, + STATE(3364), 2, sym_comment, sym_include, - [139773] = 7, + [140857] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5029), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3345), 2, + STATE(3365), 2, sym_comment, sym_include, - [139796] = 6, - ACTIONS(3), 1, + ACTIONS(2054), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140876] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, - sym_identifier, - ACTIONS(4666), 2, - sym__terminator, - anon_sym_COLON, - STATE(3346), 2, + STATE(3366), 2, sym_comment, sym_include, - [139817] = 7, - ACTIONS(3), 1, + ACTIONS(2052), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140895] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5033), 1, - sym_identifier, - ACTIONS(5035), 1, - aux_sym_buffer_definition_token3, - STATE(4622), 1, - sym_qualified_name, - STATE(3347), 2, + STATE(3367), 2, sym_comment, sym_include, - [139840] = 6, - ACTIONS(3), 1, + ACTIONS(2050), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140914] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5037), 1, - sym_identifier, - ACTIONS(4723), 2, - sym__terminator, - anon_sym_COLON, - STATE(3348), 2, + STATE(3368), 2, sym_comment, sym_include, - [139861] = 7, + ACTIONS(2048), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [140933] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(5021), 1, + ACTIONS(2596), 1, anon_sym_COLON, - STATE(3356), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3349), 2, + STATE(3369), 2, sym_comment, sym_include, - [139884] = 5, + [140956] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3350), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(3245), 1, + anon_sym_COLON, + STATE(3362), 1, + aux_sym_for_statement_repeat1, + STATE(3370), 2, sym_comment, sym_include, - ACTIONS(5039), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [139903] = 7, + [140979] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2556), 1, + ACTIONS(3245), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3351), 2, + STATE(3371), 2, sym_comment, sym_include, - [139926] = 7, + [141002] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5041), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3352), 2, + STATE(3372), 2, sym_comment, sym_include, - [139949] = 7, + ACTIONS(2046), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141021] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2556), 1, - anon_sym_COLON, - STATE(3416), 1, - aux_sym_for_statement_repeat1, - STATE(3353), 2, + STATE(3373), 2, sym_comment, sym_include, - [139972] = 7, + ACTIONS(2044), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141040] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3888), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(4232), 1, - sym_on_stop_phrase, - STATE(3354), 2, + STATE(3374), 2, sym_comment, sym_include, - [139995] = 7, - ACTIONS(3), 1, + ACTIONS(2040), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141059] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2305), 1, - sym_identifier, - ACTIONS(4915), 1, - sym__namedot, - STATE(3128), 1, - aux_sym_qualified_name_repeat1, - STATE(3355), 2, + STATE(3375), 2, sym_comment, sym_include, - [140018] = 7, + ACTIONS(2038), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141078] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3356), 2, + ACTIONS(5239), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3376), 2, sym_comment, sym_include, - [140041] = 7, - ACTIONS(3), 1, + [141101] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, - sym_identifier, - ACTIONS(5047), 1, - anon_sym_AMP, - ACTIONS(5049), 1, - sym__integer_literal, - STATE(3357), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5241), 1, + anon_sym_RPAREN, + STATE(3466), 1, + aux_sym_function_statement_repeat1, + STATE(3377), 2, sym_comment, sym_include, - [140064] = 6, + [141124] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5051), 1, - aux_sym__block_terminator_token1, - STATE(1137), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(3358), 2, + STATE(3378), 2, sym_comment, sym_include, - [140085] = 7, + ACTIONS(2030), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141143] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5053), 1, - anon_sym_LPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3359), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2584), 1, + anon_sym_COLON, + STATE(3369), 1, + aux_sym_for_statement_repeat1, + STATE(3379), 2, sym_comment, sym_include, - [140108] = 7, + [141166] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5055), 1, - anon_sym_LPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3360), 2, + STATE(3380), 2, sym_comment, sym_include, - [140131] = 7, + ACTIONS(1978), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141185] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4171), 1, - sym__terminator, - STATE(3430), 1, - aux_sym_data_relation_repeat1, - STATE(3361), 2, + ACTIONS(2584), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3381), 2, sym_comment, sym_include, - [140154] = 7, - ACTIONS(3), 1, + [141208] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5057), 1, - sym_identifier, - ACTIONS(5059), 1, - anon_sym_AMP, - ACTIONS(5061), 1, - sym__integer_literal, - STATE(3362), 2, + STATE(3382), 2, sym_comment, sym_include, - [140177] = 7, + ACTIONS(1966), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141227] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5063), 1, - anon_sym_LPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3363), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5243), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3383), 2, sym_comment, sym_include, - [140200] = 7, + [141250] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3858), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2580), 1, anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(4267), 1, - sym_on_stop_phrase, - STATE(3364), 2, + STATE(3371), 1, + aux_sym_for_statement_repeat1, + STATE(3384), 2, sym_comment, sym_include, - [140223] = 7, + [141273] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5065), 1, - sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3365), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2580), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3385), 2, sym_comment, sym_include, - [140246] = 7, - ACTIONS(3), 1, + [141296] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5067), 1, - sym_identifier, - ACTIONS(5069), 1, - anon_sym_AMP, - ACTIONS(5071), 1, - sym__integer_literal, - STATE(3366), 2, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4319), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3386), 2, sym_comment, sym_include, - [140269] = 7, + [141319] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3819), 1, - aux_sym__block_terminator_token1, - STATE(1189), 1, - sym__case_terminator, - STATE(1264), 1, - sym__block_terminator, - STATE(3367), 2, + STATE(3387), 2, sym_comment, sym_include, - [140292] = 7, + ACTIONS(1739), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141338] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5073), 1, - anon_sym_RPAREN, - STATE(3443), 1, - aux_sym_function_statement_repeat1, - STATE(3368), 2, + STATE(3388), 2, sym_comment, sym_include, - [140315] = 7, - ACTIONS(3), 1, + ACTIONS(1914), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141357] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5075), 1, - sym_identifier, - ACTIONS(5077), 1, - anon_sym_AMP, - ACTIONS(5079), 1, - sym__integer_literal, - STATE(3369), 2, + STATE(3389), 2, sym_comment, sym_include, - [140338] = 6, + ACTIONS(1902), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141376] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5051), 1, - aux_sym__block_terminator_token1, - STATE(1208), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(3370), 2, + STATE(3390), 2, sym_comment, sym_include, - [140359] = 7, + ACTIONS(1896), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141395] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5081), 1, - anon_sym_LPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3371), 2, + STATE(3391), 2, sym_comment, sym_include, - [140382] = 7, + ACTIONS(1892), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141414] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5083), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3372), 2, + STATE(3392), 2, sym_comment, sym_include, - [140405] = 7, + ACTIONS(1517), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141433] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5085), 1, - anon_sym_COLON, - STATE(3372), 1, - aux_sym_for_statement_repeat1, - STATE(3373), 2, + STATE(3393), 2, sym_comment, sym_include, - [140428] = 7, + ACTIONS(1880), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141452] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5085), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3374), 2, + STATE(3394), 2, sym_comment, sym_include, - [140451] = 7, + ACTIONS(1838), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141471] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5087), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(5245), 1, anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3375), 2, + STATE(4364), 1, + sym_on_stop_phrase, + STATE(3395), 2, sym_comment, sym_include, - [140474] = 7, + [141494] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4149), 1, - anon_sym_COLON, - STATE(3374), 1, - aux_sym_for_statement_repeat1, - STATE(3376), 2, + STATE(3396), 2, sym_comment, sym_include, - [140497] = 7, + ACTIONS(1834), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141513] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4149), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3377), 2, + STATE(3397), 2, sym_comment, sym_include, - [140520] = 7, + ACTIONS(1810), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141532] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5089), 1, - anon_sym_COLON, - STATE(3375), 1, - aux_sym_for_statement_repeat1, - STATE(3378), 2, + STATE(3398), 2, sym_comment, sym_include, - [140543] = 7, + ACTIONS(1803), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141551] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5089), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3379), 2, + STATE(3399), 2, sym_comment, sym_include, - [140566] = 7, + ACTIONS(1799), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141570] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5091), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3380), 2, + STATE(3400), 2, sym_comment, sym_include, - [140589] = 7, + ACTIONS(1795), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141589] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5091), 1, - anon_sym_RPAREN, - STATE(3447), 1, - aux_sym_function_statement_repeat1, - STATE(3381), 2, + STATE(3401), 2, sym_comment, sym_include, - [140612] = 7, + ACTIONS(1791), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141608] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3986), 1, + ACTIONS(4319), 1, anon_sym_COLON, - STATE(3377), 1, + STATE(3478), 1, aux_sym_for_statement_repeat1, - STATE(3382), 2, + STATE(3402), 2, sym_comment, sym_include, - [140635] = 7, + [141631] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3986), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3383), 2, + ACTIONS(5172), 1, + aux_sym__block_terminator_token1, + STATE(1363), 1, + sym__function_terminator, + STATE(1447), 1, + sym__block_terminator, + STATE(3403), 2, sym_comment, sym_include, - [140658] = 7, + [141654] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(5093), 1, - anon_sym_RPAREN, - STATE(2590), 1, - aux_sym_data_relation_repeat1, - STATE(3384), 2, + STATE(3404), 2, sym_comment, sym_include, - [140681] = 7, + ACTIONS(1783), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141673] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4141), 1, - anon_sym_COLON, - STATE(3379), 1, - aux_sym_for_statement_repeat1, - STATE(3385), 2, + STATE(3405), 2, sym_comment, sym_include, - [140704] = 7, + ACTIONS(1747), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141692] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(5095), 1, + ACTIONS(5247), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3386), 2, + STATE(3406), 2, sym_comment, sym_include, - [140727] = 7, + [141715] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4141), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3387), 2, + STATE(3407), 2, sym_comment, sym_include, - [140750] = 7, - ACTIONS(3), 1, + [141738] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4993), 1, - sym_identifier, - ACTIONS(5097), 1, - anon_sym_RPAREN, - STATE(3449), 1, - aux_sym_query_fields_repeat1, - STATE(3388), 2, + STATE(3408), 2, sym_comment, sym_include, - [140773] = 7, + ACTIONS(1743), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141757] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_COLON, - STATE(3383), 1, - aux_sym_for_statement_repeat1, - STATE(3389), 2, + STATE(3409), 2, sym_comment, sym_include, - [140796] = 7, + ACTIONS(1888), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141776] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3390), 2, + STATE(3410), 2, sym_comment, sym_include, - [140819] = 7, + ACTIONS(1521), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141795] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5099), 1, - anon_sym_LPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3391), 2, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3411), 2, sym_comment, sym_include, - [140842] = 7, + ACTIONS(1525), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141814] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4007), 1, - anon_sym_COLON, - STATE(3387), 1, - aux_sym_for_statement_repeat1, - STATE(3392), 2, + STATE(3412), 2, sym_comment, sym_include, - [140865] = 7, + ACTIONS(1529), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141833] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4007), 1, + ACTIONS(4112), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3393), 2, + STATE(3413), 2, sym_comment, sym_include, - [140888] = 7, + [141856] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5101), 1, - aux_sym_on_error_phrase_token2, - ACTIONS(5103), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(5105), 1, - aux_sym_on_quit_phrase_token1, - STATE(3394), 2, + STATE(3414), 2, sym_comment, sym_include, - [140911] = 7, + ACTIONS(1533), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141875] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3200), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3395), 2, + STATE(3415), 2, sym_comment, sym_include, - [140934] = 7, + ACTIONS(1539), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141894] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3200), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(3455), 1, + STATE(3381), 1, aux_sym_for_statement_repeat1, - STATE(3396), 2, + STATE(3416), 2, sym_comment, sym_include, - [140957] = 7, + [141917] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(4414), 1, - anon_sym_RPAREN, - STATE(3384), 1, - aux_sym_data_relation_repeat1, - STATE(3397), 2, + STATE(3417), 2, sym_comment, sym_include, - [140980] = 7, + ACTIONS(1543), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141936] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4107), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(4112), 1, anon_sym_COLON, - STATE(4495), 1, - sym_inherits, - STATE(3398), 2, + STATE(3486), 1, + aux_sym_for_statement_repeat1, + STATE(3418), 2, sym_comment, sym_include, - [141003] = 7, + [141959] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(2564), 1, - anon_sym_COLON, - STATE(3390), 1, - aux_sym_for_statement_repeat1, - STATE(3399), 2, + ACTIONS(5249), 1, + anon_sym_RPAREN, + STATE(3383), 1, + aux_sym_function_statement_repeat1, + STATE(3419), 2, sym_comment, sym_include, - [141026] = 7, + [141982] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(4414), 1, - anon_sym_RPAREN, - STATE(2590), 1, - aux_sym_data_relation_repeat1, - STATE(3400), 2, + STATE(3420), 2, sym_comment, sym_include, - [141049] = 7, + ACTIONS(1547), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142001] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2564), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3401), 2, + STATE(3421), 2, sym_comment, sym_include, - [141072] = 7, + ACTIONS(1551), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142020] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5107), 1, - aux_sym_buffer_definition_token2, - ACTIONS(5109), 1, - aux_sym_repeat_statement_token1, - ACTIONS(5111), 1, - aux_sym_do_block_token1, - STATE(3402), 2, + STATE(3422), 2, sym_comment, sym_include, - [141095] = 7, + ACTIONS(1555), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142039] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_COLON, - STATE(3393), 1, - aux_sym_for_statement_repeat1, - STATE(3403), 2, + STATE(3423), 2, sym_comment, sym_include, - [141118] = 7, + ACTIONS(1559), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142058] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(3198), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3404), 2, + ACTIONS(4275), 1, + aux_sym_data_relation_token2, + STATE(3494), 1, + aux_sym_data_relation_repeat1, + STATE(3424), 2, sym_comment, sym_include, - [141141] = 5, + [142081] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3405), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5251), 1, + anon_sym_RPAREN, + STATE(3497), 1, + aux_sym_function_statement_repeat1, + STATE(3425), 2, sym_comment, sym_include, - ACTIONS(5113), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [141160] = 5, + [142104] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3406), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5253), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3426), 2, sym_comment, sym_include, - ACTIONS(5115), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [141179] = 7, + [142127] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2566), 1, - anon_sym_COLON, - STATE(3401), 1, - aux_sym_for_statement_repeat1, - STATE(3407), 2, + STATE(3427), 2, sym_comment, sym_include, - [141202] = 7, + ACTIONS(1563), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142146] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2566), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3385), 1, aux_sym_for_statement_repeat1, - STATE(3408), 2, + STATE(3428), 2, sym_comment, sym_include, - [141225] = 7, + [142169] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5117), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3409), 2, + STATE(3429), 2, sym_comment, sym_include, - [141248] = 7, + ACTIONS(1567), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142188] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, - aux_sym__block_terminator_token1, - STATE(1166), 1, - sym__block_terminator, - STATE(1193), 1, - sym__function_terminator, - STATE(3410), 2, + STATE(3430), 2, sym_comment, sym_include, - [141271] = 6, + ACTIONS(1571), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142207] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5121), 1, - anon_sym_RPAREN, - ACTIONS(5123), 1, - anon_sym_COMMA, - STATE(3411), 3, + STATE(3431), 2, sym_comment, sym_include, - aux_sym_function_statement_repeat1, - [141292] = 7, + ACTIONS(1575), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142226] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2568), 1, - anon_sym_COLON, - STATE(3404), 1, - aux_sym_for_statement_repeat1, - STATE(3412), 2, + STATE(3432), 2, sym_comment, sym_include, - [141315] = 7, + ACTIONS(1579), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142245] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2568), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3413), 2, + STATE(3433), 2, sym_comment, sym_include, - [141338] = 7, + ACTIONS(1583), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142264] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5126), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(4359), 1, - sym_on_stop_phrase, - STATE(3414), 2, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3434), 2, sym_comment, sym_include, - [141361] = 7, + [142287] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2425), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3415), 2, + STATE(3435), 2, sym_comment, sym_include, - [141384] = 7, + ACTIONS(1587), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142306] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2572), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3416), 2, + STATE(3436), 2, sym_comment, sym_include, - [141407] = 7, + ACTIONS(1591), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142325] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2425), 1, - anon_sym_COLON, - STATE(3408), 1, - aux_sym_for_statement_repeat1, - STATE(3417), 2, + STATE(3437), 2, sym_comment, sym_include, - [141430] = 7, + ACTIONS(1595), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142344] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2572), 1, - anon_sym_COLON, - STATE(3461), 1, - aux_sym_for_statement_repeat1, - STATE(3418), 2, + STATE(3438), 2, sym_comment, sym_include, - [141453] = 7, + ACTIONS(1599), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142363] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5128), 1, - anon_sym_RPAREN, - STATE(3409), 1, - aux_sym_function_statement_repeat1, - STATE(3419), 2, + STATE(3439), 2, sym_comment, sym_include, - [141476] = 5, + ACTIONS(1655), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142382] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3420), 2, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(4437), 1, + sym__terminator, + STATE(2606), 1, + aux_sym_data_relation_repeat1, + STATE(3440), 2, sym_comment, sym_include, - ACTIONS(5130), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [141495] = 7, + [142405] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2570), 1, + ACTIONS(2413), 1, anon_sym_COLON, - STATE(3413), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3421), 2, + STATE(3441), 2, sym_comment, sym_include, - [141518] = 7, + [142428] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2570), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3422), 2, + STATE(3442), 2, sym_comment, sym_include, - [141541] = 7, + ACTIONS(1619), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142447] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5132), 1, - anon_sym_COLON, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3423), 2, + STATE(3443), 2, sym_comment, sym_include, - [141564] = 7, + ACTIONS(1623), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142466] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(5134), 1, + ACTIONS(5255), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3424), 2, + STATE(3444), 2, sym_comment, sym_include, - [141587] = 7, + [142489] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(2379), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3425), 2, + ACTIONS(4437), 1, + sym__terminator, + STATE(3508), 1, + aux_sym_data_relation_repeat1, + STATE(3445), 2, sym_comment, sym_include, - [141610] = 7, - ACTIONS(3), 1, + [142512] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5138), 1, - anon_sym_RPAREN, - STATE(3397), 1, - sym_qualified_name, - STATE(3426), 2, + STATE(3446), 2, sym_comment, sym_include, - [141633] = 7, + ACTIONS(1627), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142531] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(4390), 1, - anon_sym_RPAREN, - STATE(3400), 1, - aux_sym_data_relation_repeat1, - STATE(3427), 2, + STATE(3447), 2, sym_comment, sym_include, - [141656] = 7, + ACTIONS(1631), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142550] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5140), 1, - anon_sym_RPAREN, - STATE(3466), 1, - aux_sym_function_statement_repeat1, - STATE(3428), 2, + STATE(3448), 2, sym_comment, sym_include, - [141679] = 7, + ACTIONS(1635), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142569] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5142), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3429), 2, + STATE(3449), 2, sym_comment, sym_include, - [141702] = 7, + ACTIONS(1639), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142588] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(4111), 1, - sym__terminator, - STATE(2590), 1, - aux_sym_data_relation_repeat1, - STATE(3430), 2, + STATE(3450), 2, sym_comment, sym_include, - [141725] = 7, - ACTIONS(3), 1, + ACTIONS(1643), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142607] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4585), 1, - sym__terminator, - ACTIONS(5144), 1, - sym_identifier, - STATE(3472), 1, - sym_qualified_name, - STATE(3431), 2, + STATE(3451), 2, sym_comment, sym_include, - [141748] = 7, + ACTIONS(1647), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142626] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + ACTIONS(679), 1, sym__namedot, - ACTIONS(5146), 1, + ACTIONS(5257), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3432), 2, + STATE(3452), 2, sym_comment, sym_include, - [141771] = 7, + [142649] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5148), 1, - anon_sym_LPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3433), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5253), 1, + anon_sym_RPAREN, + STATE(3511), 1, + aux_sym_function_statement_repeat1, + STATE(3453), 2, sym_comment, sym_include, - [141794] = 7, + [142672] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4934), 1, - anon_sym_COMMA, - ACTIONS(5150), 1, - anon_sym_RPAREN, - STATE(3145), 1, - aux_sym__function_call_arguments_repeat1, - STATE(3434), 2, + STATE(3454), 2, sym_comment, sym_include, - [141817] = 7, - ACTIONS(59), 1, + ACTIONS(1651), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142691] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2379), 1, - anon_sym_COLON, - STATE(3415), 1, - aux_sym_for_statement_repeat1, - STATE(3435), 2, + ACTIONS(5259), 1, + sym_identifier, + ACTIONS(5261), 1, + sym__terminator, + STATE(3512), 1, + sym_qualified_name, + STATE(3455), 2, sym_comment, sym_include, - [141840] = 7, + [142714] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4197), 1, - anon_sym_COLON, - STATE(4535), 1, - sym_inherits, - STATE(3436), 2, + STATE(3456), 2, sym_comment, sym_include, - [141863] = 7, - ACTIONS(3), 1, + ACTIONS(1848), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142733] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_, - ACTIONS(5152), 1, - anon_sym_RPAREN, - STATE(3258), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3437), 2, + STATE(3457), 2, sym_comment, sym_include, - [141886] = 7, + ACTIONS(1659), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142752] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4111), 1, - sym__terminator, - STATE(3474), 1, - aux_sym_data_relation_repeat1, - STATE(3438), 2, + ACTIONS(2413), 1, + anon_sym_COLON, + STATE(3407), 1, + aux_sym_for_statement_repeat1, + STATE(3458), 2, sym_comment, sym_include, - [141909] = 7, + [142775] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4595), 1, - anon_sym_COLON, - STATE(4394), 1, - sym_on_stop_phrase, - STATE(3439), 2, + STATE(3459), 2, sym_comment, sym_include, - [141932] = 7, + ACTIONS(1663), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142794] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4836), 1, - sym_identifier, - ACTIONS(4838), 1, - aux_sym_input_expression_token2, - STATE(30), 1, - sym_qualified_name, - STATE(3440), 2, + ACTIONS(5003), 1, + anon_sym_, + ACTIONS(5263), 1, + anon_sym_RPAREN, + STATE(3232), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3460), 2, sym_comment, sym_include, - [141955] = 7, + [142817] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4840), 1, - sym__integer_literal, - STATE(807), 1, - sym__decimal_literal, - STATE(2261), 1, - sym_number_literal, - STATE(3441), 2, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4849), 1, + anon_sym_COLON, + STATE(4395), 1, + sym_on_stop_phrase, + STATE(3461), 2, sym_comment, sym_include, - [141978] = 7, + [142840] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2417), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3442), 2, + STATE(3462), 2, sym_comment, sym_include, - [142001] = 7, + ACTIONS(1667), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142859] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5154), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3443), 2, + STATE(3463), 2, sym_comment, sym_include, - [142024] = 7, + ACTIONS(1671), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142878] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(2417), 1, - anon_sym_COLON, - STATE(3422), 1, - aux_sym_for_statement_repeat1, - STATE(3444), 2, - sym_comment, - sym_include, - [142047] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5156), 1, - sym_identifier, - ACTIONS(5158), 1, - aux_sym_buffer_definition_token3, - STATE(4347), 1, - sym_qualified_name, - STATE(3445), 2, + STATE(3464), 2, sym_comment, sym_include, - [142070] = 7, + ACTIONS(1675), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142897] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5160), 1, - anon_sym_RPAREN, - STATE(3481), 1, - aux_sym_function_statement_repeat1, - STATE(3446), 2, + STATE(3465), 2, sym_comment, sym_include, - [142093] = 7, + ACTIONS(1679), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142916] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5162), 1, + ACTIONS(5265), 1, anon_sym_RPAREN, - STATE(3411), 1, + STATE(3305), 1, aux_sym_function_statement_repeat1, - STATE(3447), 2, + STATE(3466), 2, sym_comment, sym_include, - [142116] = 7, - ACTIONS(3), 1, + [142939] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4827), 1, - anon_sym_, - ACTIONS(5164), 1, - anon_sym_RPAREN, - STATE(3437), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3448), 2, + STATE(3467), 2, sym_comment, sym_include, - [142139] = 6, - ACTIONS(3), 1, + ACTIONS(1683), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142958] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5166), 1, - sym_identifier, - ACTIONS(5169), 1, - anon_sym_RPAREN, - STATE(3449), 3, + STATE(3468), 2, sym_comment, sym_include, - aux_sym_query_fields_repeat1, - [142160] = 7, + ACTIONS(1687), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142977] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5171), 1, - aux_sym_buffer_definition_token2, - ACTIONS(5173), 1, - aux_sym_repeat_statement_token1, - ACTIONS(5175), 1, - aux_sym_do_block_token1, - STATE(3450), 2, + STATE(3469), 2, sym_comment, sym_include, - [142183] = 7, + ACTIONS(1693), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [142996] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4113), 1, - anon_sym_COLON, - STATE(4423), 1, - sym_on_stop_phrase, - STATE(3451), 2, + STATE(3470), 2, sym_comment, sym_include, - [142206] = 7, + ACTIONS(1697), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143015] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2411), 1, + ACTIONS(2455), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3452), 2, + STATE(3471), 2, sym_comment, sym_include, - [142229] = 7, + [143038] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(5177), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3453), 2, + ACTIONS(2455), 1, + anon_sym_COLON, + STATE(3434), 1, + aux_sym_for_statement_repeat1, + STATE(3472), 2, sym_comment, sym_include, - [142252] = 7, + [143061] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(5179), 1, - sym__terminator, - STATE(2590), 1, - aux_sym_data_relation_repeat1, - STATE(3454), 2, + STATE(3473), 2, sym_comment, sym_include, - [142275] = 7, + ACTIONS(1701), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143080] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4093), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3455), 2, + ACTIONS(3845), 1, + aux_sym__block_terminator_token1, + STATE(3446), 1, + sym__case_terminator, + STATE(3477), 1, + sym__block_terminator, + STATE(3474), 2, sym_comment, sym_include, - [142298] = 7, - ACTIONS(59), 1, + [143103] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4093), 1, - anon_sym_COLON, - STATE(3510), 1, - aux_sym_for_statement_repeat1, - STATE(3456), 2, + ACTIONS(5267), 1, + sym_identifier, + ACTIONS(5269), 1, + aux_sym_buffer_definition_token3, + STATE(4104), 1, + sym_qualified_name, + STATE(3475), 2, sym_comment, sym_include, - [142321] = 7, + [143126] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5181), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3457), 2, + STATE(3476), 2, sym_comment, sym_include, - [142344] = 7, + ACTIONS(1705), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143145] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, - aux_sym__block_terminator_token1, - STATE(1166), 1, - sym__block_terminator, - STATE(1287), 1, - sym__function_terminator, - STATE(3458), 2, + STATE(3477), 2, sym_comment, sym_include, - [142367] = 7, + ACTIONS(1709), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143164] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(2411), 1, + ACTIONS(5271), 1, anon_sym_COLON, - STATE(3442), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3459), 2, + STATE(3478), 2, sym_comment, sym_include, - [142390] = 7, - ACTIONS(3), 1, + [143187] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5183), 1, - sym_identifier, - ACTIONS(5185), 1, - aux_sym_buffer_definition_token3, - STATE(4274), 1, - sym_qualified_name, - STATE(3460), 2, + STATE(3479), 2, sym_comment, sym_include, - [142413] = 7, + ACTIONS(1713), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143206] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(3257), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3461), 2, + STATE(3480), 2, sym_comment, sym_include, - [142436] = 7, - ACTIONS(3), 1, + ACTIONS(1717), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143225] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5187), 1, - sym_identifier, - ACTIONS(5189), 1, - anon_sym_RPAREN, - STATE(3427), 1, - sym_qualified_name, - STATE(3462), 2, + STATE(3481), 2, sym_comment, sym_include, - [142459] = 7, + ACTIONS(1721), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143244] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, + STATE(3482), 2, + sym_comment, + sym_include, + ACTIONS(1725), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143263] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, sym__namedot, - ACTIONS(5191), 1, + ACTIONS(5273), 1, sym__terminator, - STATE(332), 1, + STATE(330), 1, aux_sym_qualified_name_repeat1, - STATE(3463), 2, + STATE(3483), 2, sym_comment, sym_include, - [142482] = 7, + [143286] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(3257), 1, + ACTIONS(5271), 1, anon_sym_COLON, - STATE(3501), 1, + STATE(3516), 1, aux_sym_for_statement_repeat1, - STATE(3464), 2, + STATE(3484), 2, sym_comment, sym_include, - [142505] = 7, + [143309] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5193), 1, - anon_sym_COLON, - STATE(3429), 1, - aux_sym_for_statement_repeat1, - STATE(3465), 2, + STATE(3485), 2, sym_comment, sym_include, - [142528] = 7, + ACTIONS(1729), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143328] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(5195), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3466), 2, + ACTIONS(4342), 1, + anon_sym_COLON, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3486), 2, sym_comment, sym_include, - [142551] = 7, + [143351] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5193), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3467), 2, + STATE(3487), 2, sym_comment, sym_include, - [142574] = 7, + ACTIONS(1733), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143370] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(5195), 1, - anon_sym_RPAREN, - STATE(3507), 1, - aux_sym_function_statement_repeat1, - STATE(3468), 2, + ACTIONS(4342), 1, + anon_sym_COLON, + STATE(3520), 1, + aux_sym_for_statement_repeat1, + STATE(3488), 2, sym_comment, sym_include, - [142597] = 7, + [143393] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3773), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(4453), 1, - sym_on_stop_phrase, - STATE(3469), 2, + STATE(3489), 2, sym_comment, sym_include, - [142620] = 5, + ACTIONS(1737), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143412] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3470), 2, + ACTIONS(5003), 1, + anon_sym_, + ACTIONS(5275), 1, + anon_sym_RPAREN, + STATE(3460), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3490), 2, sym_comment, sym_include, - ACTIONS(5197), 3, - aux_sym_double_quoted_string_token2, - anon_sym_SQUOTE, - aux_sym_single_quoted_string_token1, - [142639] = 7, + [143435] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5199), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3471), 2, + STATE(3491), 2, sym_comment, sym_include, - [142662] = 7, + ACTIONS(1755), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143454] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(4177), 1, - sym__terminator, - STATE(3509), 1, - aux_sym_data_relation_repeat1, - STATE(3472), 2, + STATE(3492), 2, sym_comment, sym_include, - [142685] = 5, - ACTIONS(3), 1, + ACTIONS(1757), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143473] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3473), 2, + STATE(3493), 2, sym_comment, sym_include, - ACTIONS(5201), 3, - anon_sym_DQUOTE, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - [142704] = 7, + ACTIONS(1759), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143492] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(4177), 1, - sym__terminator, - STATE(2590), 1, + ACTIONS(5277), 1, + aux_sym_data_relation_token2, + STATE(2606), 1, aux_sym_data_relation_repeat1, - STATE(3474), 2, + STATE(3494), 2, sym_comment, sym_include, - [142727] = 7, + [143515] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4225), 1, - anon_sym_COLON, - STATE(4568), 1, - sym_inherits, - STATE(3475), 2, + STATE(3495), 2, sym_comment, sym_include, - [142750] = 7, + ACTIONS(1761), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143534] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5203), 1, - anon_sym_LPAREN, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3476), 2, + STATE(3496), 2, sym_comment, sym_include, - [142773] = 7, - ACTIONS(3), 1, + ACTIONS(1763), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143553] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5205), 1, - sym_identifier, - ACTIONS(5207), 1, - sym__terminator, - STATE(3515), 1, - sym_qualified_name, - STATE(3477), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5279), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3497), 2, sym_comment, sym_include, - [142796] = 5, + [143576] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3478), 2, + STATE(3498), 2, sym_comment, sym_include, - ACTIONS(117), 3, - sym__namecolon, - anon_sym_LPAREN, - anon_sym_EQ, - [142815] = 7, + ACTIONS(1767), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143595] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(4509), 1, - sym_on_stop_phrase, - STATE(3479), 2, + STATE(3499), 2, sym_comment, sym_include, - [142838] = 7, - ACTIONS(3), 1, + ACTIONS(1771), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143614] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5209), 1, - sym_identifier, - ACTIONS(5211), 1, - aux_sym_input_expression_token2, - STATE(1331), 1, - sym_qualified_name, - STATE(3480), 2, + STATE(3500), 2, sym_comment, sym_include, - [142861] = 7, + ACTIONS(1775), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143633] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5213), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3481), 2, + STATE(3501), 2, sym_comment, sym_include, - [142884] = 7, + ACTIONS(1779), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143652] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5215), 1, - anon_sym_RPAREN, - STATE(3526), 1, - aux_sym_function_statement_repeat1, - STATE(3482), 2, + STATE(3502), 2, sym_comment, sym_include, - [142907] = 7, - ACTIONS(3), 1, + ACTIONS(1818), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143671] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - sym_identifier, - ACTIONS(5219), 1, - anon_sym_AMP, - ACTIONS(5221), 1, - sym__integer_literal, - STATE(3483), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5279), 1, + anon_sym_RPAREN, + STATE(3526), 1, + aux_sym_function_statement_repeat1, + STATE(3503), 2, sym_comment, sym_include, - [142930] = 7, - ACTIONS(3), 1, + [143694] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(927), 1, - anon_sym_LPAREN, - ACTIONS(5223), 1, - sym_identifier, - STATE(1329), 1, - sym_parenthesized_expression, - STATE(3484), 2, + STATE(3504), 2, sym_comment, sym_include, - [142953] = 7, + ACTIONS(1822), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143713] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4267), 1, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4331), 1, anon_sym_COLON, - STATE(4600), 1, - sym_inherits, - STATE(3485), 2, + STATE(4436), 1, + sym_on_stop_phrase, + STATE(3505), 2, sym_comment, sym_include, - [142976] = 5, + [143736] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3486), 2, - sym_comment, - sym_include, - ACTIONS(5225), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [142995] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(3487), 2, + STATE(3506), 2, sym_comment, sym_include, - ACTIONS(5227), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - [143014] = 5, + ACTIONS(1826), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143755] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3488), 2, + STATE(3507), 2, sym_comment, sym_include, - ACTIONS(5229), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [143033] = 7, + ACTIONS(1830), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143774] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - ACTIONS(5231), 1, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(4403), 1, sym__terminator, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3489), 2, + STATE(2606), 1, + aux_sym_data_relation_repeat1, + STATE(3508), 2, sym_comment, sym_include, - [143056] = 7, + [143797] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4334), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(3523), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3490), 2, + STATE(3509), 2, sym_comment, sym_include, - [143079] = 5, + [143820] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3491), 2, + STATE(3510), 2, sym_comment, sym_include, - ACTIONS(5233), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [143098] = 7, - ACTIONS(3), 1, + ACTIONS(1844), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [143839] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5235), 1, - sym_identifier, - ACTIONS(5237), 1, - aux_sym_primitive_type_token19, - STATE(4508), 1, - sym_qualified_name, - STATE(3492), 2, + ACTIONS(4853), 1, + anon_sym_COMMA, + ACTIONS(5281), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3511), 2, sym_comment, sym_include, - [143121] = 7, + [143862] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(5239), 1, - anon_sym_RPAREN, - STATE(3453), 1, - aux_sym_function_statement_repeat1, - STATE(3493), 2, + ACTIONS(4403), 1, + sym__terminator, + STATE(3527), 1, + aux_sym_data_relation_repeat1, + STATE(3512), 2, sym_comment, sym_include, - [143144] = 7, + [143885] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(4290), 1, - sym__terminator, - STATE(3454), 1, - aux_sym_data_relation_repeat1, - STATE(3494), 2, + ACTIONS(5281), 1, + anon_sym_RPAREN, + STATE(3529), 1, + aux_sym_function_statement_repeat1, + STATE(3513), 2, sym_comment, sym_include, - [143167] = 7, + [143908] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2714), 1, - aux_sym_inherits_token1, - ACTIONS(4312), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(4421), 1, - sym_inherits, - STATE(3495), 2, + STATE(3471), 1, + aux_sym_for_statement_repeat1, + STATE(3514), 2, sym_comment, sym_include, - [143190] = 7, - ACTIONS(59), 1, + [143931] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5239), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3496), 2, + ACTIONS(5283), 1, + sym_identifier, + ACTIONS(5285), 1, + aux_sym_buffer_definition_token3, + STATE(4142), 1, + sym_qualified_name, + STATE(3515), 2, sym_comment, sym_include, - [143213] = 7, + [143954] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3850), 1, + ACTIONS(2097), 1, + anon_sym_COMMA, + ACTIONS(5287), 1, anon_sym_COLON, - ACTIONS(4099), 1, - aux_sym_on_error_phrase_token1, - STATE(4432), 1, - sym_on_stop_phrase, - STATE(3497), 2, + STATE(3166), 1, + aux_sym_for_statement_repeat1, + STATE(3516), 2, sym_comment, sym_include, - [143236] = 7, + [143977] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, + ACTIONS(3746), 1, aux_sym__block_terminator_token1, - STATE(1166), 1, + STATE(926), 1, sym__block_terminator, - STATE(1361), 1, - sym__function_terminator, - STATE(3498), 2, + STATE(963), 1, + sym__case_terminator, + STATE(3517), 2, sym_comment, sym_include, - [143259] = 7, + [144000] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(4290), 1, - sym__terminator, - STATE(2590), 1, - aux_sym_data_relation_repeat1, - STATE(3499), 2, + ACTIONS(3881), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(4481), 1, + sym_on_stop_phrase, + STATE(3518), 2, sym_comment, sym_include, - [143282] = 7, + [144023] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5103), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(5241), 1, - aux_sym_on_error_phrase_token2, - ACTIONS(5243), 1, - aux_sym_on_quit_phrase_token1, - STATE(3500), 2, + STATE(3519), 2, sym_comment, sym_include, - [143305] = 7, + ACTIONS(2119), 3, + aux_sym_buffer_definition_token2, + aux_sym_repeat_statement_token1, + aux_sym_do_block_token1, + [144042] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4019), 1, + ACTIONS(5289), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3501), 2, + STATE(3520), 2, sym_comment, sym_include, - [143328] = 7, + [144065] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4019), 1, + ACTIONS(5289), 1, anon_sym_COLON, - STATE(3514), 1, + STATE(3535), 1, aux_sym_for_statement_repeat1, - STATE(3502), 2, + STATE(3521), 2, sym_comment, sym_include, - [143351] = 7, + [144088] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5245), 1, - anon_sym_RPAREN, - STATE(3457), 1, - aux_sym_function_statement_repeat1, - STATE(3503), 2, + ACTIONS(3865), 1, + aux_sym__block_terminator_token1, + STATE(875), 1, + sym__case_terminator, + STATE(898), 1, + sym__block_terminator, + STATE(3522), 2, sym_comment, sym_include, - [143374] = 7, - ACTIONS(59), 1, + [144111] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(4227), 1, - aux_sym_data_relation_token2, - STATE(3508), 1, - aux_sym_data_relation_repeat1, - STATE(3504), 2, + ACTIONS(5291), 1, + sym_identifier, + ACTIONS(5293), 1, + anon_sym_RPAREN, + STATE(3536), 1, + sym_qualified_name, + STATE(3523), 2, sym_comment, sym_include, - [143397] = 7, + [144134] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5245), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3505), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5295), 1, + anon_sym_LPAREN, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3524), 2, sym_comment, sym_include, - [143420] = 7, + [144157] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5247), 1, - anon_sym_RPAREN, - STATE(3505), 1, - aux_sym_function_statement_repeat1, - STATE(3506), 2, + STATE(3525), 2, sym_comment, sym_include, - [143443] = 7, + ACTIONS(2075), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [144176] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(5249), 1, + ACTIONS(5297), 1, anon_sym_RPAREN, - STATE(3411), 1, + STATE(3305), 1, aux_sym_function_statement_repeat1, - STATE(3507), 2, + STATE(3526), 2, sym_comment, sym_include, - [143466] = 7, + [144199] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(5251), 1, - aux_sym_data_relation_token2, - STATE(2590), 1, + ACTIONS(5299), 1, + sym__terminator, + STATE(2606), 1, aux_sym_data_relation_repeat1, - STATE(3508), 2, + STATE(3527), 2, + sym_comment, + sym_include, + [144222] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5301), 1, + sym_identifier, + ACTIONS(4800), 2, + sym__terminator, + anon_sym_COLON, + STATE(3528), 2, sym_comment, sym_include, - [143489] = 7, + [144243] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(4853), 1, anon_sym_COMMA, - ACTIONS(4245), 1, - sym__terminator, - STATE(2590), 1, - aux_sym_data_relation_repeat1, - STATE(3509), 2, + ACTIONS(5303), 1, + anon_sym_RPAREN, + STATE(3305), 1, + aux_sym_function_statement_repeat1, + STATE(3529), 2, sym_comment, sym_include, - [143512] = 7, + [144266] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4334), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3510), 2, + ACTIONS(5305), 1, + aux_sym__block_terminator_token1, + STATE(1452), 1, + sym__function_terminator, + STATE(1545), 1, + sym__block_terminator, + STATE(3530), 2, sym_comment, sym_include, - [143535] = 5, + [144289] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3511), 2, + ACTIONS(3962), 1, + anon_sym_COLON, + ACTIONS(4141), 1, + aux_sym_on_error_phrase_token1, + STATE(4532), 1, + sym_on_stop_phrase, + STATE(3531), 2, sym_comment, sym_include, - ACTIONS(5253), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [143554] = 7, + [144312] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(4269), 1, - anon_sym_COLON, - STATE(3467), 1, - aux_sym_for_statement_repeat1, - STATE(3512), 2, + ACTIONS(5305), 1, + aux_sym__block_terminator_token1, + STATE(1474), 1, + sym__function_terminator, + STATE(1545), 1, + sym__block_terminator, + STATE(3532), 2, sym_comment, sym_include, - [143577] = 7, + [144335] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(831), 1, - anon_sym_LPAREN, - ACTIONS(5255), 1, + ACTIONS(5307), 1, sym_identifier, - STATE(555), 1, - sym_parenthesized_expression, - STATE(3513), 2, + ACTIONS(5309), 1, + anon_sym_AMP, + ACTIONS(5311), 1, + sym__integer_literal, + STATE(3533), 2, + sym_comment, + sym_include, + [144358] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5305), 1, + aux_sym__block_terminator_token1, + STATE(1495), 1, + sym__function_terminator, + STATE(1545), 1, + sym__block_terminator, + STATE(3534), 2, sym_comment, sym_include, - [143600] = 7, + [144381] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(2097), 1, anon_sym_COMMA, - ACTIONS(4269), 1, + ACTIONS(5313), 1, anon_sym_COLON, - STATE(3086), 1, + STATE(3166), 1, aux_sym_for_statement_repeat1, - STATE(3514), 2, + STATE(3535), 2, sym_comment, sym_include, - [143623] = 7, + [144404] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3972), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(4245), 1, - sym__terminator, - STATE(3499), 1, + ACTIONS(4350), 1, + anon_sym_RPAREN, + STATE(3538), 1, aux_sym_data_relation_repeat1, - STATE(3515), 2, + STATE(3536), 2, sym_comment, sym_include, - [143646] = 7, + [144427] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1089), 1, - anon_sym_LPAREN, - ACTIONS(5257), 1, + ACTIONS(5315), 1, sym_identifier, - STATE(669), 1, - sym_parenthesized_expression, - STATE(3516), 2, + ACTIONS(5317), 1, + anon_sym_RPAREN, + STATE(3539), 1, + sym_qualified_name, + STATE(3537), 2, sym_comment, sym_include, - [143669] = 5, + [144450] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3517), 2, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(4317), 1, + anon_sym_RPAREN, + STATE(2606), 1, + aux_sym_data_relation_repeat1, + STATE(3538), 2, sym_comment, sym_include, - ACTIONS(5259), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [143688] = 5, + [144473] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3518), 2, + ACTIONS(3978), 1, + anon_sym_COMMA, + ACTIONS(4317), 1, + anon_sym_RPAREN, + STATE(3543), 1, + aux_sym_data_relation_repeat1, + STATE(3539), 2, sym_comment, sym_include, - ACTIONS(5261), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [143707] = 7, + [144496] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5263), 1, + ACTIONS(5319), 1, sym_identifier, - ACTIONS(5265), 1, - aux_sym_input_expression_token2, - STATE(672), 1, - sym_qualified_name, - STATE(3519), 2, - sym_comment, - sym_include, - [143730] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2090), 1, - anon_sym_COMMA, - ACTIONS(5267), 1, + ACTIONS(4605), 2, + sym__terminator, anon_sym_COLON, - STATE(3471), 1, - aux_sym_for_statement_repeat1, - STATE(3520), 2, + STATE(3540), 2, sym_comment, sym_include, - [143753] = 7, + [144517] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5269), 1, + ACTIONS(1049), 1, + anon_sym_LPAREN, + ACTIONS(5321), 1, sym_identifier, - ACTIONS(5271), 1, - aux_sym_input_expression_token2, - STATE(584), 1, - sym_qualified_name, - STATE(3521), 2, + STATE(699), 1, + sym_parenthesized_expression, + STATE(3541), 2, sym_comment, sym_include, - [143776] = 7, + [144540] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5273), 1, + ACTIONS(5323), 1, sym_identifier, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - sym__integer_literal, - STATE(3522), 2, + ACTIONS(5325), 1, + aux_sym_input_expression_token2, + STATE(700), 1, + sym_qualified_name, + STATE(3542), 2, sym_comment, sym_include, - [143799] = 7, + [144563] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2090), 1, + ACTIONS(3978), 1, anon_sym_COMMA, - ACTIONS(5267), 1, - anon_sym_COLON, - STATE(3086), 1, - aux_sym_for_statement_repeat1, - STATE(3523), 2, + ACTIONS(5327), 1, + anon_sym_RPAREN, + STATE(2606), 1, + aux_sym_data_relation_repeat1, + STATE(3543), 2, sym_comment, sym_include, - [143822] = 7, + [144586] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5249), 1, - anon_sym_RPAREN, - STATE(3496), 1, - aux_sym_function_statement_repeat1, - STATE(3524), 2, + ACTIONS(5329), 1, + aux_sym__block_terminator_token1, + STATE(1250), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(3544), 2, sym_comment, sym_include, - [143845] = 7, - ACTIONS(3), 1, + [144607] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5279), 1, - sym_identifier, - ACTIONS(5281), 1, - sym__terminator, - STATE(3494), 1, - sym_qualified_name, - STATE(3525), 2, + ACTIONS(3871), 1, + aux_sym__block_terminator_token1, + STATE(1226), 1, + sym__case_terminator, + STATE(1340), 1, + sym__block_terminator, + STATE(3545), 2, sym_comment, sym_include, - [143868] = 7, + [144630] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_COMMA, - ACTIONS(5283), 1, - anon_sym_RPAREN, - STATE(3411), 1, - aux_sym_function_statement_repeat1, - STATE(3526), 2, + ACTIONS(5329), 1, + aux_sym__block_terminator_token1, + STATE(1166), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(3546), 2, sym_comment, sym_include, - [143891] = 5, - ACTIONS(59), 1, + [144651] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3527), 2, + ACTIONS(1091), 1, + anon_sym_LPAREN, + ACTIONS(5331), 1, + sym_identifier, + STATE(1576), 1, + sym_parenthesized_expression, + STATE(3547), 2, sym_comment, sym_include, - ACTIONS(5285), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [143910] = 5, - ACTIONS(59), 1, + [144674] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3528), 2, + ACTIONS(2335), 1, + sym_identifier, + ACTIONS(5230), 1, + sym__namedot, + STATE(3351), 1, + aux_sym_qualified_name_repeat1, + STATE(3548), 2, sym_comment, sym_include, - ACTIONS(5287), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [143929] = 7, + [144697] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5289), 1, + ACTIONS(5333), 1, sym_identifier, - ACTIONS(5291), 1, + ACTIONS(5335), 1, aux_sym_input_expression_token2, - STATE(1569), 1, + STATE(1579), 1, sym_qualified_name, - STATE(3529), 2, + STATE(3549), 2, sym_comment, sym_include, - [143952] = 5, + [144720] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3530), 2, + ACTIONS(5337), 1, + aux_sym_input_close_statement_token2, + ACTIONS(5339), 1, + aux_sym_output_stream_statement_token1, + STATE(3550), 2, sym_comment, sym_include, - ACTIONS(5293), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [143971] = 7, + [144740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1003), 1, - anon_sym_LPAREN, - ACTIONS(5295), 1, + ACTIONS(4539), 1, + anon_sym_COLON, + ACTIONS(5341), 1, sym_identifier, - STATE(1556), 1, - sym_parenthesized_expression, - STATE(3531), 2, + STATE(3551), 2, sym_comment, sym_include, - [143994] = 6, - ACTIONS(59), 1, + [144760] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1183), 1, - sym__block_terminator, - STATE(3532), 2, + ACTIONS(5343), 1, + sym_identifier, + ACTIONS(5345), 1, + anon_sym_STAR, + STATE(3552), 2, sym_comment, sym_include, - [144014] = 6, + [144780] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5299), 1, - sym__terminator, - ACTIONS(5301), 1, - aux_sym_catch_statement_token1, - STATE(3533), 2, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5349), 1, + aux_sym__case_terminator_token1, + STATE(3553), 2, sym_comment, sym_include, - [144034] = 6, - ACTIONS(59), 1, + [144800] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5303), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(5305), 1, - aux_sym_function_statement_token1, - STATE(3534), 2, + ACTIONS(5351), 1, + sym_identifier, + STATE(1578), 1, + sym_qualified_name, + STATE(3554), 2, sym_comment, sym_include, - [144054] = 6, + [144820] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(993), 1, - sym__block_terminator, - STATE(3535), 2, + ACTIONS(5353), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(5355), 1, + aux_sym_function_statement_token1, + STATE(3555), 2, sym_comment, sym_include, - [144074] = 5, + [144840] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3396), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3536), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(974), 1, + sym__block_terminator, + STATE(3556), 2, sym_comment, sym_include, - [144092] = 6, + [144860] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5309), 1, + ACTIONS(5359), 1, sym_identifier, - STATE(3573), 1, + STATE(3587), 1, sym_qualified_name, - STATE(3537), 2, + STATE(3557), 2, sym_comment, sym_include, - [144112] = 6, + [144880] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5311), 1, + ACTIONS(5361), 1, sym_identifier, - ACTIONS(5313), 1, + ACTIONS(5363), 1, anon_sym_COMMA, - STATE(3538), 2, + STATE(3558), 2, sym_comment, sym_include, - [144132] = 6, + [144900] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5315), 1, + ACTIONS(5365), 1, aux_sym_on_error_phrase_token1, - STATE(4596), 1, + STATE(4646), 1, sym_on_error_phrase, - STATE(3539), 2, + STATE(3559), 2, sym_comment, sym_include, - [144152] = 6, - ACTIONS(3), 1, + [144920] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4483), 1, + anon_sym_EQ, + ACTIONS(5367), 1, + anon_sym_LPAREN, + STATE(3560), 2, + sym_comment, + sym_include, + [144940] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(844), 1, + sym__block_terminator, + STATE(3561), 2, + sym_comment, + sym_include, + [144960] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5317), 1, - sym_identifier, - STATE(1552), 1, - sym_qualified_name, - STATE(3540), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3357), 1, + sym__block_terminator, + STATE(3562), 2, sym_comment, sym_include, - [144172] = 6, + [144980] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5319), 1, - sym__terminator, - ACTIONS(5321), 1, - aux_sym_constructor_definition_token1, - STATE(3541), 2, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5371), 1, + aux_sym__procedure_terminator_token1, + STATE(3563), 2, sym_comment, sym_include, - [144192] = 6, + [145000] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5323), 1, + ACTIONS(5373), 1, sym_identifier, - ACTIONS(5325), 1, - sym__terminator, - STATE(3542), 2, + ACTIONS(5375), 1, + anon_sym_STAR, + STATE(3564), 2, sym_comment, sym_include, - [144212] = 6, + [145020] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(3150), 1, + STATE(990), 1, sym__block_terminator, - STATE(3543), 2, + STATE(3565), 2, sym_comment, sym_include, - [144232] = 6, + [145040] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4316), 1, - anon_sym_EQ, - ACTIONS(5329), 1, - anon_sym_LPAREN, - STATE(3544), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(993), 1, + sym__block_terminator, + STATE(3566), 2, sym_comment, sym_include, - [144252] = 6, + [145060] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5331), 1, - sym__terminator, - ACTIONS(5333), 1, - anon_sym_COLON, - STATE(3545), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(1002), 1, + sym__block_terminator, + STATE(3567), 2, sym_comment, sym_include, - [144272] = 6, + [145080] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5335), 1, - sym__terminator, - ACTIONS(5337), 1, - anon_sym_COLON, - STATE(3546), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(906), 1, + sym__block_terminator, + STATE(3568), 2, sym_comment, sym_include, - [144292] = 6, + [145100] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5339), 1, + ACTIONS(5377), 1, sym_identifier, - ACTIONS(5341), 1, - anon_sym_STAR, - STATE(3547), 2, + STATE(4590), 1, + sym_qualified_name, + STATE(3569), 2, sym_comment, sym_include, - [144312] = 6, + [145120] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5335), 1, - sym__terminator, - ACTIONS(5343), 1, - anon_sym_METHOD, - STATE(3548), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(1028), 1, + sym__block_terminator, + STATE(3570), 2, sym_comment, sym_include, - [144332] = 6, + [145140] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(1000), 1, + STATE(1063), 1, sym__block_terminator, - STATE(3549), 2, + STATE(3571), 2, sym_comment, sym_include, - [144352] = 6, + [145160] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5345), 1, - sym__terminator, - ACTIONS(5347), 1, - anon_sym_METHOD, - STATE(3550), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(1067), 1, + sym__block_terminator, + STATE(3572), 2, sym_comment, sym_include, - [144372] = 6, - ACTIONS(3), 1, + [145180] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5349), 1, - sym_identifier, - STATE(1249), 1, - sym_qualified_name, - STATE(3551), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(1068), 1, + sym__block_terminator, + STATE(3573), 2, sym_comment, sym_include, - [144392] = 6, + [145200] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5351), 1, + ACTIONS(5379), 1, sym_identifier, - STATE(4520), 1, - sym_qualified_name, - STATE(3552), 2, + ACTIONS(5381), 1, + anon_sym_STAR, + STATE(3574), 2, sym_comment, sym_include, - [144412] = 6, + [145220] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5353), 1, + ACTIONS(5383), 1, sym_identifier, - ACTIONS(5355), 1, - anon_sym_STAR, - STATE(3553), 2, + STATE(1620), 1, + sym_qualified_name, + STATE(3575), 2, sym_comment, sym_include, - [144432] = 6, + [145240] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5357), 1, + ACTIONS(4760), 1, + anon_sym_COLON, + ACTIONS(5385), 1, sym_identifier, - ACTIONS(5359), 1, - anon_sym_STAR, - STATE(3554), 2, + STATE(3576), 2, sym_comment, sym_include, - [144452] = 6, + [145260] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5361), 1, - sym__terminator, - ACTIONS(5363), 1, - aux_sym_primitive_type_token19, - STATE(3555), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(1070), 1, + sym__block_terminator, + STATE(3577), 2, sym_comment, sym_include, - [144472] = 6, + [145280] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(3144), 1, + STATE(3358), 1, sym__block_terminator, - STATE(3556), 2, + STATE(3578), 2, sym_comment, sym_include, - [144492] = 6, + [145300] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(3146), 1, + STATE(1520), 1, sym__block_terminator, - STATE(3557), 2, + STATE(3579), 2, sym_comment, sym_include, - [144512] = 6, + [145320] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(3147), 1, + STATE(3359), 1, sym__block_terminator, - STATE(3558), 2, + STATE(3580), 2, sym_comment, sym_include, - [144532] = 6, + [145340] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3148), 1, - sym__block_terminator, - STATE(3559), 2, + ACTIONS(5389), 1, + sym__terminator, + ACTIONS(5391), 1, + anon_sym_METHOD, + STATE(3581), 2, sym_comment, sym_include, - [144552] = 6, + [145360] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(3149), 1, + STATE(1073), 1, sym__block_terminator, - STATE(3560), 2, + STATE(3582), 2, sym_comment, sym_include, - [144572] = 6, + [145380] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1416), 1, - sym__block_terminator, - STATE(3561), 2, + ACTIONS(5393), 1, + aux_sym_access_tuning_token1, + ACTIONS(5395), 1, + anon_sym_COLON, + STATE(3583), 2, sym_comment, sym_include, - [144592] = 6, + [145400] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(4407), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3584), 2, + sym_comment, + sym_include, + [145418] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(5399), 1, + aux_sym_function_statement_token1, + STATE(3585), 2, + sym_comment, + sym_include, + [145438] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(1035), 1, + STATE(1074), 1, sym__block_terminator, - STATE(3562), 2, + STATE(3586), 2, sym_comment, sym_include, - [144612] = 6, + [145458] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5365), 1, + ACTIONS(4547), 1, sym__terminator, - ACTIONS(5367), 1, - aux_sym_interface_statement_token1, - STATE(3563), 2, + ACTIONS(4549), 1, + aux_sym_using_statement_token2, + STATE(3587), 2, sym_comment, sym_include, - [144632] = 6, + [145478] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5369), 1, + ACTIONS(5401), 1, sym_identifier, - STATE(1583), 1, + STATE(1917), 1, sym_qualified_name, - STATE(3564), 2, + STATE(3588), 2, + sym_comment, + sym_include, + [145498] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5403), 1, + sym_identifier, + STATE(692), 1, + sym_qualified_name, + STATE(3589), 2, sym_comment, sym_include, - [144652] = 6, + [145518] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(3151), 1, + STATE(1075), 1, sym__block_terminator, - STATE(3565), 2, + STATE(3590), 2, sym_comment, sym_include, - [144672] = 6, + [145538] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5371), 1, + ACTIONS(5405), 1, sym_identifier, - ACTIONS(5373), 1, - sym__terminator, - STATE(3566), 2, + STATE(4531), 1, + sym_qualified_name, + STATE(3591), 2, sym_comment, sym_include, - [144692] = 6, + [145558] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(3154), 1, + STATE(3360), 1, sym__block_terminator, - STATE(3567), 2, + STATE(3592), 2, sym_comment, sym_include, - [144712] = 6, + [145578] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5375), 1, - aux_sym_access_tuning_token1, - ACTIONS(5377), 1, - anon_sym_COLON, - STATE(3568), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(1076), 1, + sym__block_terminator, + STATE(3593), 2, sym_comment, sym_include, - [144732] = 6, + [145598] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5379), 1, + ACTIONS(4583), 1, + anon_sym_COLON, + ACTIONS(5407), 1, sym_identifier, - STATE(682), 1, - sym_qualified_name, - STATE(3569), 2, + STATE(3594), 2, sym_comment, sym_include, - [144752] = 6, + [145618] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5381), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(5383), 1, - aux_sym_function_statement_token1, - STATE(3570), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(941), 1, + sym__block_terminator, + STATE(3595), 2, sym_comment, sym_include, - [144772] = 6, + [145638] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(3155), 1, + STATE(1509), 1, sym__block_terminator, - STATE(3571), 2, + STATE(3596), 2, sym_comment, sym_include, - [144792] = 6, + [145658] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1050), 1, + STATE(1508), 1, sym__block_terminator, - STATE(3572), 2, + STATE(3597), 2, sym_comment, sym_include, - [144812] = 6, + [145678] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4515), 1, - sym__terminator, - ACTIONS(4517), 1, - aux_sym_using_statement_token2, - STATE(3573), 2, - sym_comment, - sym_include, - [144832] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5385), 1, - sym_identifier, - STATE(4511), 1, - sym_qualified_name, - STATE(3574), 2, + ACTIONS(5409), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3598), 2, sym_comment, sym_include, - [144852] = 6, + [145696] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5387), 1, - sym__terminator, - ACTIONS(5389), 1, - aux_sym_primitive_type_token19, - STATE(3575), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(1077), 1, + sym__block_terminator, + STATE(3599), 2, sym_comment, sym_include, - [144872] = 6, + [145716] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(3158), 1, + STATE(932), 1, sym__block_terminator, - STATE(3576), 2, + STATE(3600), 2, sym_comment, sym_include, - [144892] = 6, + [145736] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3159), 1, - sym__block_terminator, - STATE(3577), 2, + ACTIONS(5411), 1, + sym__terminator, + ACTIONS(5413), 1, + anon_sym_METHOD, + STATE(3601), 2, sym_comment, sym_include, - [144912] = 6, - ACTIONS(59), 1, + [145756] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1411), 1, - sym__block_terminator, - STATE(3578), 2, + ACTIONS(5415), 1, + sym_identifier, + STATE(4486), 1, + sym_qualified_name, + STATE(3602), 2, sym_comment, sym_include, - [144932] = 6, - ACTIONS(59), 1, + [145776] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1363), 1, - sym__block_terminator, - STATE(3579), 2, + ACTIONS(5417), 1, + sym_identifier, + ACTIONS(5419), 1, + anon_sym_STAR, + STATE(3603), 2, sym_comment, sym_include, - [144952] = 6, + [145796] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5393), 1, + ACTIONS(5421), 1, sym_identifier, - STATE(1899), 1, + STATE(4484), 1, sym_qualified_name, - STATE(3580), 2, + STATE(3604), 2, sym_comment, sym_include, - [144972] = 6, + [145816] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3160), 1, - sym__block_terminator, - STATE(3581), 2, + ACTIONS(5423), 1, + sym__terminator, + ACTIONS(5425), 1, + anon_sym_METHOD, + STATE(3605), 2, sym_comment, sym_include, - [144992] = 6, + [145836] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(3161), 1, + STATE(1079), 1, sym__block_terminator, - STATE(3582), 2, + STATE(3606), 2, sym_comment, sym_include, - [145012] = 6, + [145856] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5395), 1, + ACTIONS(5427), 1, sym_identifier, - ACTIONS(5397), 1, - anon_sym_STAR, - STATE(3583), 2, + STATE(4477), 1, + sym_qualified_name, + STATE(3607), 2, sym_comment, sym_include, - [145032] = 6, + [145876] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5399), 1, + ACTIONS(5429), 1, sym_identifier, - STATE(4466), 1, - sym_qualified_name, - STATE(3584), 2, - sym_comment, - sym_include, - [145052] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3162), 1, - sym__block_terminator, - STATE(3585), 2, + ACTIONS(5431), 1, + sym__integer_literal, + STATE(3608), 2, sym_comment, sym_include, - [145072] = 6, + [145896] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5401), 1, + ACTIONS(5433), 1, sym_identifier, - STATE(4464), 1, + STATE(4468), 1, sym_qualified_name, - STATE(3586), 2, + STATE(3609), 2, sym_comment, sym_include, - [145092] = 5, + [145916] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5403), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3587), 2, - sym_comment, - sym_include, - [145110] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5405), 1, - sym_identifier, - STATE(4457), 1, - sym_qualified_name, - STATE(3588), 2, + ACTIONS(5435), 1, + aux_sym_variable_definition_token5, + ACTIONS(5437), 1, + aux_sym_variable_definition_token6, + STATE(3610), 2, sym_comment, sym_include, - [145130] = 6, + [145936] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5407), 1, + ACTIONS(5439), 1, sym_identifier, - STATE(4448), 1, + STATE(1591), 1, sym_qualified_name, - STATE(3589), 2, + STATE(3611), 2, sym_comment, sym_include, - [145150] = 6, + [145956] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(3165), 1, + STATE(1082), 1, sym__block_terminator, - STATE(3590), 2, + STATE(3612), 2, sym_comment, sym_include, - [145170] = 6, + [145976] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5409), 1, + ACTIONS(5441), 1, aux_sym_variable_definition_token5, - ACTIONS(5411), 1, + ACTIONS(5443), 1, aux_sym_variable_definition_token6, - STATE(3591), 2, - sym_comment, - sym_include, - [145190] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5413), 1, - sym_identifier, - STATE(1608), 1, - sym_qualified_name, - STATE(3592), 2, + STATE(3613), 2, sym_comment, sym_include, - [145210] = 6, + [145996] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5415), 1, - aux_sym_variable_definition_token5, - ACTIONS(5417), 1, - aux_sym_variable_definition_token6, - STATE(3593), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(1083), 1, + sym__block_terminator, + STATE(3614), 2, sym_comment, sym_include, - [145230] = 6, + [146016] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5419), 1, + ACTIONS(129), 1, sym__terminator, - ACTIONS(5421), 1, - anon_sym_METHOD, - STATE(3594), 2, - sym_comment, - sym_include, - [145250] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5423), 1, - sym_identifier, - STATE(1572), 1, - sym_qualified_name, - STATE(3595), 2, + ACTIONS(5445), 1, + aux_sym_function_call_token1, + STATE(3615), 2, sym_comment, sym_include, - [145270] = 6, + [146036] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5425), 1, + ACTIONS(5447), 1, sym_identifier, - ACTIONS(5427), 1, + ACTIONS(5449), 1, anon_sym_STAR, - STATE(3596), 2, + STATE(3616), 2, sym_comment, sym_include, - [145290] = 6, - ACTIONS(3), 1, + [146056] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5429), 1, - sym_identifier, - STATE(4270), 1, - sym_qualified_name, - STATE(3597), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(1084), 1, + sym__block_terminator, + STATE(3617), 2, sym_comment, sym_include, - [145310] = 6, + [146076] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(3167), 1, + STATE(1085), 1, sym__block_terminator, - STATE(3598), 2, + STATE(3618), 2, sym_comment, sym_include, - [145330] = 6, + [146096] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(3170), 1, + STATE(3361), 1, sym__block_terminator, - STATE(3599), 2, + STATE(3619), 2, sym_comment, sym_include, - [145350] = 6, + [146116] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5431), 1, + ACTIONS(5451), 1, sym_identifier, - ACTIONS(5433), 1, - anon_sym_COMMA, - STATE(3600), 2, + STATE(1613), 1, + sym_qualified_name, + STATE(3620), 2, sym_comment, sym_include, - [145370] = 6, + [146136] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1356), 1, - sym__block_terminator, - STATE(3601), 2, + ACTIONS(5347), 1, + anon_sym_DOT, + ACTIONS(5453), 1, + aux_sym__function_terminator_token1, + STATE(3621), 2, sym_comment, sym_include, - [145390] = 6, + [146156] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1059), 1, - sym__block_terminator, - STATE(3602), 2, + ACTIONS(1886), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3622), 2, sym_comment, sym_include, - [145410] = 6, + [146174] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5435), 1, + ACTIONS(5455), 1, sym_identifier, - ACTIONS(5437), 1, + ACTIONS(5457), 1, anon_sym_STAR, - STATE(3603), 2, + STATE(3623), 2, sym_comment, sym_include, - [145430] = 6, - ACTIONS(59), 1, + [146194] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5439), 1, - aux_sym_variable_definition_token5, - ACTIONS(5441), 1, - aux_sym_variable_definition_token6, - STATE(3604), 2, + ACTIONS(5459), 1, + sym_identifier, + STATE(4290), 1, + sym_qualified_name, + STATE(3624), 2, sym_comment, sym_include, - [145450] = 6, + [146214] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5443), 1, + ACTIONS(5461), 1, sym_identifier, - STATE(1579), 1, - sym_qualified_name, - STATE(3605), 2, + ACTIONS(5463), 1, + anon_sym_COMMA, + STATE(3625), 2, sym_comment, sym_include, - [145470] = 6, + [146234] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5445), 1, + ACTIONS(5465), 1, sym_identifier, - ACTIONS(5447), 1, + ACTIONS(5467), 1, anon_sym_STAR, - STATE(3606), 2, + STATE(3626), 2, sym_comment, sym_include, - [145490] = 6, + [146254] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5449), 1, + ACTIONS(5469), 1, sym_identifier, - ACTIONS(5451), 1, + ACTIONS(5471), 1, anon_sym_STAR, - STATE(3607), 2, + STATE(3627), 2, sym_comment, sym_include, - [145510] = 6, + [146274] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, - sym__terminator, - ACTIONS(5455), 1, - anon_sym_METHOD, - STATE(3608), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3365), 1, + sym__block_terminator, + STATE(3628), 2, sym_comment, sym_include, - [145530] = 6, + [146294] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(3172), 1, + STATE(1488), 1, sym__block_terminator, - STATE(3609), 2, + STATE(3629), 2, sym_comment, sym_include, - [145550] = 5, + [146314] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2576), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3610), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1486), 1, + sym__block_terminator, + STATE(3630), 2, sym_comment, sym_include, - [145568] = 6, + [146334] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5457), 1, + ACTIONS(5473), 1, sym_identifier, - STATE(3978), 1, + STATE(3850), 1, sym_qualified_name, - STATE(3611), 2, + STATE(3631), 2, sym_comment, sym_include, - [145588] = 6, + [146354] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5459), 1, - sym__terminator, - ACTIONS(5461), 1, - aux_sym_interface_statement_token1, - STATE(3612), 2, + ACTIONS(4737), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3632), 2, sym_comment, sym_include, - [145608] = 6, + [146372] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5463), 1, - aux_sym_variable_definition_token5, - ACTIONS(5465), 1, - aux_sym_variable_definition_token6, - STATE(3613), 2, + ACTIONS(5475), 1, + sym__terminator, + ACTIONS(5477), 1, + aux_sym_constructor_definition_token1, + STATE(3633), 2, sym_comment, sym_include, - [145628] = 6, + [146392] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5315), 1, + ACTIONS(5365), 1, aux_sym_on_error_phrase_token1, - STATE(4137), 1, + STATE(4308), 1, sym_on_error_phrase, - STATE(3614), 2, - sym_comment, - sym_include, - [145648] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5467), 1, - sym_identifier, - ACTIONS(5469), 1, - sym__integer_literal, - STATE(3615), 2, - sym_comment, - sym_include, - [145668] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5471), 1, - sym_identifier, - ACTIONS(5473), 1, - anon_sym_STAR, - STATE(3616), 2, + STATE(3634), 2, sym_comment, sym_include, - [145688] = 6, + [146412] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5475), 1, - sym__terminator, - ACTIONS(5477), 1, - aux_sym_constructor_definition_token1, - STATE(3617), 2, - sym_comment, - sym_include, - [145708] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, ACTIONS(5479), 1, - sym_identifier, - STATE(1591), 1, - sym_qualified_name, - STATE(3618), 2, + aux_sym_variable_definition_token5, + ACTIONS(5481), 1, + aux_sym_variable_definition_token6, + STATE(3635), 2, sym_comment, sym_include, - [145728] = 6, + [146432] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1065), 1, + STATE(3366), 1, sym__block_terminator, - STATE(3619), 2, + STATE(3636), 2, sym_comment, sym_include, - [145748] = 6, + [146452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5481), 1, + ACTIONS(5483), 1, sym_identifier, - STATE(4067), 1, + STATE(1618), 1, sym_qualified_name, - STATE(3620), 2, + STATE(3637), 2, sym_comment, sym_include, - [145768] = 6, + [146472] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3173), 1, - sym__block_terminator, - STATE(3621), 2, + ACTIONS(5485), 1, + aux_sym_variable_definition_token5, + ACTIONS(5487), 1, + aux_sym_variable_definition_token6, + STATE(3638), 2, sym_comment, sym_include, - [145788] = 6, + [146492] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5483), 1, - sym__terminator, - ACTIONS(5485), 1, - anon_sym_COLON, - STATE(3622), 2, + ACTIONS(5489), 1, + aux_sym_using_statement_token2, + ACTIONS(5491), 1, + aux_sym_input_close_statement_token2, + STATE(3639), 2, sym_comment, sym_include, - [145808] = 6, + [146512] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5487), 1, - sym__terminator, ACTIONS(5489), 1, - anon_sym_METHOD, - STATE(3623), 2, - sym_comment, - sym_include, - [145828] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5491), 1, - sym_identifier, + aux_sym_using_statement_token2, ACTIONS(5493), 1, - anon_sym_COMMA, - STATE(3624), 2, + aux_sym_input_close_statement_token2, + STATE(3640), 2, sym_comment, sym_include, - [145848] = 6, + [146532] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -160803,695 +161864,779 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(5495), 1, - aux_sym_variable_definition_token5, + sym__terminator, ACTIONS(5497), 1, - aux_sym_variable_definition_token6, - STATE(3625), 2, + anon_sym_METHOD, + STATE(3641), 2, sym_comment, sym_include, - [145868] = 6, + [146552] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5487), 1, - sym__terminator, - ACTIONS(5499), 1, - anon_sym_COLON, - STATE(3626), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(930), 1, + sym__block_terminator, + STATE(3642), 2, sym_comment, sym_include, - [145888] = 6, + [146572] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(5499), 1, + aux_sym_variable_definition_token5, ACTIONS(5501), 1, - sym__terminator, - ACTIONS(5503), 1, - anon_sym_COLON, - STATE(3627), 2, + aux_sym_variable_definition_token6, + STATE(3643), 2, sym_comment, sym_include, - [145908] = 6, + [146592] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, + ACTIONS(5503), 1, + sym__terminator, ACTIONS(5505), 1, - aux_sym_access_tuning_token1, + anon_sym_METHOD, + STATE(3644), 2, + sym_comment, + sym_include, + [146612] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, ACTIONS(5507), 1, - anon_sym_COLON, - STATE(3628), 2, + sym_identifier, + STATE(1632), 1, + sym_qualified_name, + STATE(3645), 2, sym_comment, sym_include, - [145928] = 6, + [146632] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5509), 1, - sym__terminator, - ACTIONS(5511), 1, - anon_sym_COLON, - STATE(3629), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3367), 1, + sym__block_terminator, + STATE(3646), 2, sym_comment, sym_include, - [145948] = 6, + [146652] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5513), 1, + ACTIONS(5509), 1, sym_identifier, - STATE(1597), 1, + STATE(4087), 1, sym_qualified_name, - STATE(3630), 2, + STATE(3647), 2, sym_comment, sym_include, - [145968] = 6, + [146672] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1406), 1, - sym__block_terminator, - STATE(3631), 2, + ACTIONS(5511), 1, + aux_sym_access_tuning_token1, + ACTIONS(5513), 1, + anon_sym_COLON, + STATE(3648), 2, sym_comment, sym_include, - [145988] = 6, + [146692] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5509), 1, - sym__terminator, ACTIONS(5515), 1, + sym__terminator, + ACTIONS(5517), 1, anon_sym_METHOD, - STATE(3632), 2, + STATE(3649), 2, + sym_comment, + sym_include, + [146712] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5519), 1, + sym_identifier, + ACTIONS(5521), 1, + anon_sym_COMMA, + STATE(3650), 2, sym_comment, sym_include, - [146008] = 6, + [146732] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(5523), 1, aux_sym_variable_definition_token5, - ACTIONS(5519), 1, + ACTIONS(5525), 1, aux_sym_variable_definition_token6, - STATE(3633), 2, + STATE(3651), 2, + sym_comment, + sym_include, + [146752] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3368), 1, + sym__block_terminator, + STATE(3652), 2, sym_comment, sym_include, - [146028] = 6, + [146772] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5521), 1, + ACTIONS(5527), 1, sym_identifier, - STATE(1688), 1, + STATE(1598), 1, sym_qualified_name, - STATE(3634), 2, + STATE(3653), 2, sym_comment, sym_include, - [146048] = 5, + [146792] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1525), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3635), 2, + ACTIONS(5529), 1, + aux_sym_variable_definition_token5, + ACTIONS(5531), 1, + aux_sym_variable_definition_token6, + STATE(3654), 2, + sym_comment, + sym_include, + [146812] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5533), 1, + aux_sym_input_close_statement_token2, + ACTIONS(5535), 1, + aux_sym_output_stream_statement_token1, + STATE(3655), 2, sym_comment, sym_include, - [146066] = 6, + [146832] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5523), 1, + ACTIONS(5537), 1, sym_identifier, - STATE(1913), 1, + STATE(1936), 1, sym_qualified_name, - STATE(3636), 2, + STATE(3656), 2, sym_comment, sym_include, - [146086] = 6, + [146852] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1409), 1, + STATE(3372), 1, sym__block_terminator, - STATE(3637), 2, + STATE(3657), 2, sym_comment, sym_include, - [146106] = 6, + [146872] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1410), 1, - sym__block_terminator, - STATE(3638), 2, + ACTIONS(5535), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(5539), 1, + aux_sym_input_close_statement_token2, + STATE(3658), 2, sym_comment, sym_include, - [146126] = 6, + [146892] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5525), 1, - sym__terminator, - ACTIONS(5527), 1, - aux_sym_constructor_definition_token1, - STATE(3639), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1493), 1, + sym__block_terminator, + STATE(3659), 2, sym_comment, sym_include, - [146146] = 6, + [146912] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5541), 1, sym_identifier, - ACTIONS(5531), 1, + ACTIONS(5543), 1, sym__integer_literal, - STATE(3640), 2, + STATE(3660), 2, sym_comment, sym_include, - [146166] = 6, + [146932] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5533), 1, + ACTIONS(5545), 1, sym_identifier, - STATE(1616), 1, + STATE(1606), 1, sym_qualified_name, - STATE(3641), 2, + STATE(3661), 2, sym_comment, sym_include, - [146186] = 6, + [146952] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(3177), 1, + STATE(3373), 1, sym__block_terminator, - STATE(3642), 2, + STATE(3662), 2, sym_comment, sym_include, - [146206] = 6, - ACTIONS(3), 1, + [146972] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5535), 1, - sym_identifier, - STATE(4276), 1, - sym_qualified_name, - STATE(3643), 2, + ACTIONS(5547), 1, + anon_sym_COMMA, + ACTIONS(5549), 1, + aux_sym_on_error_phrase_token3, + STATE(3663), 2, sym_comment, sym_include, - [146226] = 6, + [146992] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5537), 1, + ACTIONS(5551), 1, sym_identifier, - ACTIONS(5539), 1, - anon_sym_COMMA, - STATE(3644), 2, + STATE(4251), 1, + sym_qualified_name, + STATE(3664), 2, sym_comment, sym_include, - [146246] = 6, + [147012] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5541), 1, + ACTIONS(5553), 1, aux_sym_using_statement_token2, - ACTIONS(5543), 1, + ACTIONS(5555), 1, aux_sym_input_close_statement_token2, - STATE(3645), 2, + STATE(3665), 2, sym_comment, sym_include, - [146266] = 6, + [147032] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5541), 1, + ACTIONS(5553), 1, aux_sym_using_statement_token2, - ACTIONS(5545), 1, + ACTIONS(5557), 1, aux_sym_input_close_statement_token2, - STATE(3646), 2, + STATE(3666), 2, sym_comment, sym_include, - [146286] = 5, - ACTIONS(59), 1, + [147052] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4336), 2, + ACTIONS(5559), 1, + sym_identifier, + ACTIONS(5561), 1, anon_sym_COMMA, - anon_sym_COLON, - STATE(3647), 2, + STATE(3667), 2, sym_comment, sym_include, - [146304] = 6, + [147072] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(1413), 1, + STATE(907), 1, sym__block_terminator, - STATE(3648), 2, + STATE(3668), 2, sym_comment, sym_include, - [146324] = 6, + [147092] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3143), 1, - sym__block_terminator, - STATE(3649), 2, + ACTIONS(5563), 1, + anon_sym_DOT, + ACTIONS(5565), 1, + aux_sym__case_terminator_token1, + STATE(3669), 2, sym_comment, sym_include, - [146344] = 6, + [147112] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1419), 1, + STATE(3374), 1, sym__block_terminator, - STATE(3650), 2, + STATE(3670), 2, sym_comment, sym_include, - [146364] = 6, + [147132] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5547), 1, + ACTIONS(5567), 1, aux_sym_input_close_statement_token2, - ACTIONS(5549), 1, + ACTIONS(5569), 1, aux_sym_output_stream_statement_token1, - STATE(3651), 2, + STATE(3671), 2, sym_comment, sym_include, - [146384] = 6, + [147152] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5549), 1, + ACTIONS(5569), 1, aux_sym_output_stream_statement_token1, - ACTIONS(5551), 1, + ACTIONS(5571), 1, aux_sym_input_close_statement_token2, - STATE(3652), 2, + STATE(3672), 2, sym_comment, sym_include, - [146404] = 6, + [147172] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5553), 1, + ACTIONS(5573), 1, anon_sym_COMMA, - ACTIONS(5555), 1, + ACTIONS(5575), 1, aux_sym_on_error_phrase_token3, - STATE(3653), 2, + STATE(3673), 2, sym_comment, sym_include, - [146424] = 6, + [147192] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1453), 1, + STATE(3375), 1, sym__block_terminator, - STATE(3654), 2, + STATE(3674), 2, sym_comment, sym_include, - [146444] = 6, + [147212] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, - aux_sym_using_statement_token2, - ACTIONS(5559), 1, - aux_sym_input_close_statement_token2, - STATE(3655), 2, + ACTIONS(4885), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(4887), 1, + aux_sym_on_quit_phrase_token1, + STATE(3675), 2, sym_comment, sym_include, - [146464] = 6, + [147232] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1420), 1, + STATE(3378), 1, sym__block_terminator, - STATE(3656), 2, + STATE(3676), 2, sym_comment, sym_include, - [146484] = 6, + [147252] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1456), 1, + STATE(1458), 1, sym__block_terminator, - STATE(3657), 2, + STATE(3677), 2, sym_comment, sym_include, - [146504] = 6, - ACTIONS(59), 1, + [147272] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1421), 1, - sym__block_terminator, - STATE(3658), 2, + ACTIONS(5577), 1, + sym_identifier, + ACTIONS(5579), 1, + anon_sym_STAR, + STATE(3678), 2, sym_comment, sym_include, - [146524] = 6, + [147292] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3183), 1, - sym__block_terminator, - STATE(3659), 2, + ACTIONS(629), 1, + sym__terminator, + ACTIONS(5581), 1, + anon_sym_NO_DASHERROR, + STATE(3679), 2, sym_comment, sym_include, - [146544] = 5, + [147312] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5561), 2, + ACTIONS(5583), 2, aux_sym_using_statement_token3, aux_sym_using_statement_token4, - STATE(3660), 2, + STATE(3680), 2, sym_comment, sym_include, - [146562] = 6, + [147330] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5563), 1, - aux_sym_variable_definition_token5, - ACTIONS(5565), 1, - aux_sym_variable_definition_token6, - STATE(3661), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1455), 1, + sym__block_terminator, + STATE(3681), 2, sym_comment, sym_include, - [146582] = 6, + [147350] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5567), 1, - sym__terminator, - ACTIONS(5569), 1, - anon_sym_LPAREN, - STATE(3662), 2, + ACTIONS(5585), 1, + aux_sym_variable_definition_token5, + ACTIONS(5587), 1, + aux_sym_variable_definition_token6, + STATE(3682), 2, sym_comment, sym_include, - [146602] = 5, + [147370] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5571), 2, + ACTIONS(5589), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(3663), 2, + STATE(3683), 2, sym_comment, sym_include, - [146620] = 6, + [147388] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, + ACTIONS(5591), 1, aux_sym_scope_tuning_token1, - STATE(4233), 1, + STATE(4171), 1, sym_new_expression, - STATE(3664), 2, + STATE(3684), 2, sym_comment, sym_include, - [146640] = 6, + [147408] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5575), 1, + ACTIONS(5593), 1, sym_identifier, - STATE(1598), 1, + STATE(1615), 1, sym_qualified_name, - STATE(3665), 2, + STATE(3685), 2, sym_comment, sym_include, - [146660] = 6, + [147428] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5557), 1, - aux_sym_using_statement_token2, - ACTIONS(5577), 1, - aux_sym_input_close_statement_token2, - STATE(3666), 2, + ACTIONS(5595), 1, + aux_sym_variable_definition_token5, + ACTIONS(5597), 1, + aux_sym_variable_definition_token6, + STATE(3686), 2, sym_comment, sym_include, - [146680] = 6, + [147448] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1422), 1, - sym__block_terminator, - STATE(3667), 2, + ACTIONS(5599), 1, + sym__terminator, + ACTIONS(5601), 1, + aux_sym_constructor_definition_token1, + STATE(3687), 2, sym_comment, sym_include, - [146700] = 6, - ACTIONS(3), 1, + [147468] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5579), 1, - sym_identifier, - STATE(3504), 1, - sym_qualified_name, - STATE(3668), 2, + ACTIONS(5603), 2, + aux_sym_using_statement_token3, + aux_sym_using_statement_token4, + STATE(3688), 2, sym_comment, sym_include, - [146720] = 6, + [147486] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5581), 1, - aux_sym_variable_definition_token5, - ACTIONS(5583), 1, - aux_sym_variable_definition_token6, - STATE(3669), 2, + ACTIONS(5605), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3689), 2, sym_comment, sym_include, - [146740] = 6, + [147504] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1301), 1, - sym__block_terminator, - STATE(3670), 2, + ACTIONS(5607), 1, + sym__terminator, + ACTIONS(5609), 1, + anon_sym_COLON, + STATE(3690), 2, + sym_comment, + sym_include, + [147524] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5611), 1, + sym_identifier, + ACTIONS(5613), 1, + sym__terminator, + STATE(3691), 2, sym_comment, sym_include, - [146760] = 6, + [147544] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1300), 1, - sym__block_terminator, - STATE(3671), 2, + ACTIONS(5607), 1, + sym__terminator, + ACTIONS(5615), 1, + anon_sym_METHOD, + STATE(3692), 2, + sym_comment, + sym_include, + [147564] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5617), 1, + sym_identifier, + STATE(289), 1, + sym_qualified_name, + STATE(3693), 2, sym_comment, sym_include, - [146780] = 6, + [147584] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3185), 1, - sym__block_terminator, - STATE(3672), 2, + ACTIONS(5619), 1, + sym__terminator, + ACTIONS(5621), 1, + aux_sym_interface_statement_token1, + STATE(3694), 2, sym_comment, sym_include, - [146800] = 6, + [147604] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5585), 1, + ACTIONS(5623), 1, sym_identifier, - STATE(295), 1, + STATE(1597), 1, sym_qualified_name, - STATE(3673), 2, + STATE(3695), 2, sym_comment, sym_include, - [146820] = 6, + [147624] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5587), 1, - aux_sym_variable_definition_token5, - ACTIONS(5589), 1, - aux_sym_variable_definition_token6, - STATE(3674), 2, + ACTIONS(5625), 1, + sym__terminator, + ACTIONS(5627), 1, + anon_sym_METHOD, + STATE(3696), 2, sym_comment, sym_include, - [146840] = 6, + [147644] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -161499,889 +162644,878 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(5591), 1, - sym__terminator, - ACTIONS(5593), 1, - aux_sym_primitive_type_token19, - STATE(3675), 2, + aux_sym_scope_tuning_token1, + STATE(4370), 1, + sym_new_expression, + STATE(3697), 2, sym_comment, sym_include, - [146860] = 6, + [147664] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1293), 1, + STATE(1533), 1, sym__block_terminator, - STATE(3676), 2, + STATE(3698), 2, + sym_comment, + sym_include, + [147684] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3382), 1, + sym__block_terminator, + STATE(3699), 2, sym_comment, sym_include, - [146880] = 6, + [147704] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5595), 1, + ACTIONS(5629), 1, sym_identifier, - STATE(1603), 1, + STATE(2685), 1, sym_qualified_name, - STATE(3677), 2, + STATE(3700), 2, sym_comment, sym_include, - [146900] = 6, + [147724] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5597), 1, + ACTIONS(5631), 1, sym_identifier, - STATE(4516), 1, + STATE(4543), 1, sym_qualified_name, - STATE(3678), 2, + STATE(3701), 2, sym_comment, sym_include, - [146920] = 6, + [147744] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5599), 1, + ACTIONS(5633), 1, sym_identifier, - ACTIONS(5601), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - STATE(3679), 2, + STATE(3702), 2, sym_comment, sym_include, - [146940] = 6, + [147764] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5603), 1, + ACTIONS(5637), 1, sym_identifier, - STATE(2656), 1, + STATE(1853), 1, sym_qualified_name, - STATE(3680), 2, + STATE(3703), 2, sym_comment, sym_include, - [146960] = 6, + [147784] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5605), 1, - aux_sym_input_close_statement_token2, - ACTIONS(5607), 1, - aux_sym_output_stream_statement_token1, - STATE(3681), 2, + ACTIONS(5639), 1, + sym__terminator, + ACTIONS(5641), 1, + anon_sym_METHOD, + STATE(3704), 2, sym_comment, sym_include, - [146980] = 6, + [147804] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(1424), 1, + STATE(846), 1, sym__block_terminator, - STATE(3682), 2, + STATE(3705), 2, sym_comment, sym_include, - [147000] = 6, + [147824] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1427), 1, - sym__block_terminator, - STATE(3683), 2, + ACTIONS(193), 1, + sym__terminator, + ACTIONS(5643), 1, + anon_sym_NO_DASHERROR, + STATE(3706), 2, sym_comment, sym_include, - [147020] = 6, + [147844] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5609), 1, + ACTIONS(5645), 1, sym_identifier, - ACTIONS(5611), 1, + ACTIONS(5647), 1, sym__integer_literal, - STATE(3684), 2, + STATE(3707), 2, sym_comment, sym_include, - [147040] = 6, - ACTIONS(3), 1, + [147864] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5613), 1, - sym_identifier, - STATE(293), 1, - sym_qualified_name, - STATE(3685), 2, + ACTIONS(5649), 1, + anon_sym_DOT, + ACTIONS(5651), 1, + aux_sym__case_terminator_token1, + STATE(3708), 2, sym_comment, sym_include, - [147060] = 5, + [147884] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5615), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3686), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(848), 1, + sym__block_terminator, + STATE(3709), 2, sym_comment, sym_include, - [147078] = 6, + [147904] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1057), 1, + STATE(3387), 1, sym__block_terminator, - STATE(3687), 2, + STATE(3710), 2, sym_comment, sym_include, - [147098] = 6, + [147924] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1431), 1, + STATE(3388), 1, sym__block_terminator, - STATE(3688), 2, + STATE(3711), 2, sym_comment, sym_include, - [147118] = 6, + [147944] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5617), 1, + ACTIONS(5653), 1, sym_identifier, - ACTIONS(5619), 1, - sym__integer_literal, - STATE(3689), 2, - sym_comment, - sym_include, - [147138] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5621), 1, - sym__terminator, - ACTIONS(5623), 1, - anon_sym_METHOD, - STATE(3690), 2, - sym_comment, - sym_include, - [147158] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1279), 1, - sym__block_terminator, - STATE(3691), 2, + ACTIONS(5655), 1, + anon_sym_COMMA, + STATE(3712), 2, sym_comment, sym_include, - [147178] = 6, + [147964] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5625), 1, + ACTIONS(5657), 1, sym_identifier, - ACTIONS(5627), 1, + ACTIONS(5659), 1, anon_sym_COMMA, - STATE(3692), 2, + STATE(3713), 2, sym_comment, sym_include, - [147198] = 6, + [147984] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5629), 1, + ACTIONS(5661), 1, sym_identifier, - ACTIONS(5631), 1, - anon_sym_COMMA, - STATE(3693), 2, + STATE(296), 1, + sym_qualified_name, + STATE(3714), 2, sym_comment, sym_include, - [147218] = 6, + [148004] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1474), 1, + STATE(3390), 1, sym__block_terminator, - STATE(3694), 2, + STATE(3715), 2, sym_comment, sym_include, - [147238] = 6, + [148024] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(3187), 1, + STATE(1358), 1, sym__block_terminator, - STATE(3695), 2, + STATE(3716), 2, sym_comment, sym_include, - [147258] = 6, + [148044] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1433), 1, - sym__block_terminator, - STATE(3696), 2, - sym_comment, - sym_include, - [147278] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5633), 1, - sym_identifier, - STATE(292), 1, - sym_qualified_name, - STATE(3697), 2, + ACTIONS(5663), 1, + sym__terminator, + ACTIONS(5665), 1, + aux_sym_finally_statement_token1, + STATE(3717), 2, sym_comment, sym_include, - [147298] = 6, + [148064] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5635), 1, - sym__terminator, - ACTIONS(5637), 1, - anon_sym_COLON, - STATE(3698), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3391), 1, + sym__block_terminator, + STATE(3718), 2, sym_comment, sym_include, - [147318] = 5, + [148084] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2580), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3699), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3392), 1, + sym__block_terminator, + STATE(3719), 2, sym_comment, sym_include, - [147336] = 5, + [148104] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5639), 2, + ACTIONS(5667), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(3700), 2, + STATE(3720), 2, sym_comment, sym_include, - [147354] = 6, + [148122] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, + ACTIONS(5591), 1, aux_sym_scope_tuning_token1, - STATE(4313), 1, + STATE(4126), 1, sym_new_expression, - STATE(3701), 2, + STATE(3721), 2, sym_comment, sym_include, - [147374] = 6, + [148142] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5641), 1, + ACTIONS(5669), 1, sym_identifier, - ACTIONS(5643), 1, + ACTIONS(5671), 1, sym__integer_literal, - STATE(3702), 2, + STATE(3722), 2, sym_comment, sym_include, - [147394] = 6, - ACTIONS(59), 1, + [148162] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2547), 1, - sym_query_fields, - STATE(3703), 2, + ACTIONS(5673), 1, + sym_identifier, + STATE(285), 1, + sym_qualified_name, + STATE(3723), 2, sym_comment, sym_include, - [147414] = 6, + [148182] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1438), 1, + STATE(3056), 1, sym__block_terminator, - STATE(3704), 2, + STATE(3724), 2, sym_comment, sym_include, - [147434] = 6, - ACTIONS(59), 1, + [148202] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5647), 1, - sym__terminator, - ACTIONS(5649), 1, - anon_sym_METHOD, - STATE(3705), 2, + ACTIONS(5675), 1, + sym_identifier, + STATE(1612), 1, + sym_qualified_name, + STATE(3725), 2, sym_comment, sym_include, - [147454] = 6, - ACTIONS(59), 1, + [148222] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1443), 1, - sym__block_terminator, - STATE(3706), 2, + ACTIONS(5677), 1, + sym_identifier, + ACTIONS(5679), 1, + sym__integer_literal, + STATE(3726), 2, sym_comment, sym_include, - [147474] = 6, + [148242] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1075), 1, + STATE(3397), 1, sym__block_terminator, - STATE(3707), 2, + STATE(3727), 2, sym_comment, sym_include, - [147494] = 6, + [148262] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5651), 1, - sym__terminator, - ACTIONS(5653), 1, - aux_sym_catch_statement_token1, - STATE(3708), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3398), 1, + sym__block_terminator, + STATE(3728), 2, sym_comment, sym_include, - [147514] = 6, + [148282] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5655), 1, - sym__terminator, - ACTIONS(5657), 1, - aux_sym_constructor_definition_token1, - STATE(3709), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1418), 1, + sym__block_terminator, + STATE(3729), 2, sym_comment, sym_include, - [147534] = 6, + [148302] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5659), 1, - anon_sym_COMMA, - ACTIONS(5661), 1, - aux_sym_on_error_phrase_token3, - STATE(3710), 2, + ACTIONS(5681), 1, + sym__terminator, + ACTIONS(5683), 1, + aux_sym_primitive_type_token19, + STATE(3730), 2, sym_comment, sym_include, - [147554] = 6, + [148322] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5663), 1, - sym__terminator, - ACTIONS(5665), 1, - anon_sym_METHOD, - STATE(3711), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(857), 1, + sym__block_terminator, + STATE(3731), 2, sym_comment, sym_include, - [147574] = 6, + [148342] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5667), 1, + ACTIONS(5685), 1, sym_identifier, - STATE(4343), 1, + STATE(4105), 1, sym_qualified_name, - STATE(3712), 2, + STATE(3732), 2, sym_comment, sym_include, - [147594] = 6, + [148362] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5669), 1, + ACTIONS(5687), 1, sym_identifier, - STATE(2694), 1, + STATE(2703), 1, sym_qualified_name, - STATE(3713), 2, + STATE(3733), 2, sym_comment, sym_include, - [147614] = 6, + [148382] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5671), 1, + ACTIONS(5689), 1, + anon_sym_DOT, + ACTIONS(5691), 1, + aux_sym__case_terminator_token1, + STATE(3734), 2, + sym_comment, + sym_include, + [148402] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(155), 1, sym__terminator, - ACTIONS(5673), 1, - anon_sym_COLON, - STATE(3714), 2, + ACTIONS(5693), 1, + aux_sym_function_call_token1, + STATE(3735), 2, sym_comment, sym_include, - [147634] = 6, + [148422] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1077), 1, - sym__block_terminator, - STATE(3715), 2, + ACTIONS(5695), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3736), 2, sym_comment, sym_include, - [147654] = 6, + [148440] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3193), 1, - sym__block_terminator, - STATE(3716), 2, + ACTIONS(5697), 1, + sym__terminator, + ACTIONS(5699), 1, + aux_sym_interface_statement_token1, + STATE(3737), 2, + sym_comment, + sym_include, + [148460] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5701), 1, + sym_identifier, + STATE(563), 1, + sym_qualified_name, + STATE(3738), 2, sym_comment, sym_include, - [147674] = 6, + [148480] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5675), 1, - sym__terminator, - ACTIONS(5677), 1, - aux_sym_interface_statement_token1, - STATE(3717), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3400), 1, + sym__block_terminator, + STATE(3739), 2, sym_comment, sym_include, - [147694] = 6, + [148500] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1448), 1, + STATE(1414), 1, sym__block_terminator, - STATE(3718), 2, + STATE(3740), 2, sym_comment, sym_include, - [147714] = 5, + [148520] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5703), 1, + sym_identifier, + STATE(292), 1, + sym_qualified_name, + STATE(3741), 2, + sym_comment, + sym_include, + [148540] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5679), 2, - sym__terminator, + ACTIONS(3401), 2, + anon_sym_COMMA, anon_sym_COLON, - STATE(3719), 2, + STATE(3742), 2, sym_comment, sym_include, - [147732] = 6, + [148558] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1457), 1, + STATE(923), 1, sym__block_terminator, - STATE(3720), 2, + STATE(3743), 2, sym_comment, sym_include, - [147752] = 6, + [148578] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5681), 1, + ACTIONS(5707), 1, sym__terminator, - ACTIONS(5683), 1, - anon_sym_METHOD, - STATE(3721), 2, + ACTIONS(5709), 1, + aux_sym_constructor_definition_token1, + STATE(3744), 2, sym_comment, sym_include, - [147772] = 6, + [148598] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(1460), 1, + STATE(862), 1, sym__block_terminator, - STATE(3722), 2, + STATE(3745), 2, sym_comment, sym_include, - [147792] = 6, + [148618] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1081), 1, + STATE(3408), 1, sym__block_terminator, - STATE(3723), 2, + STATE(3746), 2, sym_comment, sym_include, - [147812] = 6, + [148638] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5685), 1, - aux_sym_variable_definition_token5, - ACTIONS(5687), 1, - aux_sym_variable_definition_token6, - STATE(3724), 2, - sym_comment, - sym_include, - [147832] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5689), 1, - sym_identifier, - STATE(1694), 1, - sym_qualified_name, - STATE(3725), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2604), 1, + sym_query_fields, + STATE(3747), 2, sym_comment, sym_include, - [147852] = 6, + [148658] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5691), 1, + ACTIONS(5713), 1, sym__terminator, - ACTIONS(5693), 1, - aux_sym_interface_statement_token1, - STATE(3726), 2, + ACTIONS(5715), 1, + aux_sym_primitive_type_token19, + STATE(3748), 2, sym_comment, sym_include, - [147872] = 6, - ACTIONS(59), 1, + [148678] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5103), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(5243), 1, - aux_sym_on_quit_phrase_token1, - STATE(3727), 2, + ACTIONS(5717), 1, + sym_identifier, + ACTIONS(5719), 1, + sym__terminator, + STATE(3749), 2, sym_comment, sym_include, - [147892] = 6, + [148698] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5607), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(5695), 1, - aux_sym_input_close_statement_token2, - STATE(3728), 2, + ACTIONS(5721), 1, + sym__terminator, + ACTIONS(5723), 1, + aux_sym_interface_statement_token1, + STATE(3750), 2, sym_comment, sym_include, - [147912] = 6, + [148718] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1464), 1, + STATE(925), 1, sym__block_terminator, - STATE(3729), 2, + STATE(3751), 2, sym_comment, sym_include, - [147932] = 6, + [148738] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(1412), 1, + STATE(864), 1, sym__block_terminator, - STATE(3730), 2, - sym_comment, - sym_include, - [147952] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5697), 2, - aux_sym_using_statement_token3, - aux_sym_using_statement_token4, - STATE(3731), 2, + STATE(3752), 2, sym_comment, sym_include, - [147970] = 6, + [148758] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, + ACTIONS(5725), 1, sym__terminator, - ACTIONS(5701), 1, - aux_sym_catch_statement_token1, - STATE(3732), 2, + ACTIONS(5727), 1, + anon_sym_COLON, + STATE(3753), 2, sym_comment, sym_include, - [147990] = 6, - ACTIONS(59), 1, + [148778] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2548), 1, - sym_query_fields, - STATE(3733), 2, + ACTIONS(5729), 1, + sym_identifier, + STATE(2661), 1, + sym_qualified_name, + STATE(3754), 2, sym_comment, sym_include, - [148010] = 5, + [148798] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5703), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3734), 2, + ACTIONS(5731), 1, + sym__terminator, + ACTIONS(5733), 1, + anon_sym_COLON, + STATE(3755), 2, sym_comment, sym_include, - [148028] = 6, + [148818] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5705), 1, + ACTIONS(5735), 1, sym_identifier, - STATE(2937), 1, + STATE(2425), 1, sym_qualified_name, - STATE(3735), 2, + STATE(3756), 2, sym_comment, sym_include, - [148048] = 6, - ACTIONS(3), 1, + [148838] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5707), 1, - sym_identifier, - ACTIONS(5709), 1, - sym__terminator, - STATE(3736), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1459), 1, + sym__block_terminator, + STATE(3757), 2, sym_comment, sym_include, - [148068] = 6, + [148858] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3198), 1, - sym__block_terminator, - STATE(3737), 2, + ACTIONS(5731), 1, + sym__terminator, + ACTIONS(5739), 1, + anon_sym_METHOD, + STATE(3758), 2, sym_comment, sym_include, - [148088] = 6, + [148878] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1091), 1, + STATE(3411), 1, sym__block_terminator, - STATE(3738), 2, + STATE(3759), 2, sym_comment, sym_include, - [148108] = 6, + [148898] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -162389,20277 +163523,20301 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(5711), 1, - sym__terminator, - ACTIONS(5713), 1, - aux_sym_constructor_definition_token1, - STATE(3739), 2, + anon_sym_LPAREN, + STATE(2581), 1, + sym_query_fields, + STATE(3760), 2, sym_comment, sym_include, - [148128] = 6, + [148918] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3200), 1, - sym__block_terminator, - STATE(3740), 2, + ACTIONS(5741), 1, + sym__terminator, + ACTIONS(5743), 1, + anon_sym_METHOD, + STATE(3761), 2, sym_comment, sym_include, - [148148] = 6, + [148938] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1470), 1, - sym__block_terminator, - STATE(3741), 2, + ACTIONS(5745), 1, + sym__terminator, + ACTIONS(5747), 1, + aux_sym_primitive_type_token19, + STATE(3762), 2, sym_comment, sym_include, - [148168] = 6, + [148958] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1484), 1, + STATE(3414), 1, sym__block_terminator, - STATE(3742), 2, + STATE(3763), 2, sym_comment, sym_include, - [148188] = 6, + [148978] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1486), 1, - sym__block_terminator, - STATE(3743), 2, + ACTIONS(5749), 1, + aux_sym_variable_definition_token5, + ACTIONS(5751), 1, + aux_sym_variable_definition_token6, + STATE(3764), 2, sym_comment, sym_include, - [148208] = 6, + [148998] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, - aux_sym_scope_tuning_token1, - STATE(4290), 1, - sym_new_expression, - STATE(3744), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(876), 1, + sym__block_terminator, + STATE(3765), 2, sym_comment, sym_include, - [148228] = 6, + [149018] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5715), 1, - aux_sym_getter_token1, - ACTIONS(5717), 1, - aux_sym_setter_token1, - STATE(3745), 2, + ACTIONS(5753), 1, + sym__terminator, + ACTIONS(5755), 1, + aux_sym_primitive_type_token19, + STATE(3766), 2, sym_comment, sym_include, - [148248] = 6, + [149038] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1446), 1, - sym__block_terminator, - STATE(3746), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2612), 1, + sym_query_fields, + STATE(3767), 2, sym_comment, sym_include, - [148268] = 6, + [149058] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - STATE(2610), 1, + STATE(2504), 1, sym_query_fields, - STATE(3747), 2, + STATE(3768), 2, sym_comment, sym_include, - [148288] = 6, + [149078] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5719), 1, - sym__terminator, - ACTIONS(5721), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - STATE(3748), 2, + STATE(2536), 1, + sym_query_fields, + STATE(3769), 2, sym_comment, sym_include, - [148308] = 6, + [149098] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - STATE(2483), 1, + STATE(2687), 1, sym_query_fields, - STATE(3749), 2, + STATE(3770), 2, + sym_comment, + sym_include, + [149118] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5757), 1, + sym_identifier, + STATE(2682), 1, + sym_qualified_name, + STATE(3771), 2, + sym_comment, + sym_include, + [149138] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5759), 1, + sym_identifier, + STATE(4123), 1, + sym_qualified_name, + STATE(3772), 2, + sym_comment, + sym_include, + [149158] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5761), 1, + sym_identifier, + STATE(1619), 1, + sym_qualified_name, + STATE(3773), 2, + sym_comment, + sym_include, + [149178] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5763), 1, + sym_identifier, + ACTIONS(5765), 1, + anon_sym_COMMA, + STATE(3774), 2, sym_comment, sym_include, - [148328] = 6, + [149198] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2584), 1, - sym_query_fields, - STATE(3750), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3429), 1, + sym__block_terminator, + STATE(3775), 2, sym_comment, sym_include, - [148348] = 6, + [149218] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5723), 1, + ACTIONS(5767), 1, sym_identifier, - STATE(2581), 1, - sym_qualified_name, - STATE(3751), 2, + ACTIONS(5769), 1, + anon_sym_COMMA, + STATE(3776), 2, sym_comment, sym_include, - [148368] = 6, + [149238] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5725), 1, + ACTIONS(5771), 1, sym_identifier, - STATE(4391), 1, - sym_qualified_name, - STATE(3752), 2, + ACTIONS(5773), 1, + anon_sym_COMMA, + STATE(3777), 2, sym_comment, sym_include, - [148388] = 6, + [149258] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5727), 1, + ACTIONS(5775), 1, sym_identifier, - STATE(1838), 1, - sym_qualified_name, - STATE(3753), 2, + ACTIONS(5777), 1, + sym__terminator, + STATE(3778), 2, + sym_comment, + sym_include, + [149278] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1312), 1, + sym__block_terminator, + STATE(3779), 2, sym_comment, sym_include, - [148408] = 5, + [149298] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5729), 2, + ACTIONS(5779), 1, sym__terminator, - anon_sym_COLON, - STATE(3754), 2, + ACTIONS(5781), 1, + aux_sym_interface_statement_token1, + STATE(3780), 2, sym_comment, sym_include, - [148426] = 6, + [149318] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5731), 1, + ACTIONS(5783), 2, sym__terminator, - ACTIONS(5733), 1, - aux_sym_finally_statement_token1, - STATE(3755), 2, + anon_sym_COLON, + STATE(3781), 2, sym_comment, sym_include, - [148446] = 6, + [149336] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5735), 1, + ACTIONS(5785), 1, sym__terminator, - ACTIONS(5737), 1, - aux_sym_primitive_type_token19, - STATE(3756), 2, + ACTIONS(5787), 1, + aux_sym_interface_statement_token1, + STATE(3782), 2, sym_comment, sym_include, - [148466] = 6, + [149356] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1477), 1, - sym__block_terminator, - STATE(3757), 2, + ACTIONS(5789), 1, + anon_sym_DOT, + ACTIONS(5791), 1, + aux_sym__procedure_terminator_token1, + STATE(3783), 2, sym_comment, sym_include, - [148486] = 6, + [149376] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5357), 1, aux_sym__block_terminator_token1, - STATE(1478), 1, + STATE(883), 1, sym__block_terminator, - STATE(3758), 2, + STATE(3784), 2, sym_comment, sym_include, - [148506] = 6, + [149396] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5739), 1, + ACTIONS(5793), 1, sym_identifier, - STATE(2738), 1, + STATE(4463), 1, sym_qualified_name, - STATE(3759), 2, + STATE(3785), 2, sym_comment, sym_include, - [148526] = 6, - ACTIONS(3), 1, + [149416] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, - sym_identifier, - STATE(1590), 1, - sym_qualified_name, - STATE(3760), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3435), 1, + sym__block_terminator, + STATE(3786), 2, sym_comment, sym_include, - [148546] = 5, + [149436] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5743), 2, - sym__terminator, - anon_sym_COLON, - STATE(3761), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3437), 1, + sym__block_terminator, + STATE(3787), 2, + sym_comment, + sym_include, + [149456] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5795), 1, + sym_identifier, + STATE(2635), 1, + sym_qualified_name, + STATE(3788), 2, sym_comment, sym_include, - [148564] = 6, + [149476] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2612), 1, - sym_query_fields, - STATE(3762), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1365), 1, + sym__block_terminator, + STATE(3789), 2, sym_comment, sym_include, - [148584] = 6, + [149496] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - STATE(2479), 1, + STATE(2636), 1, sym_query_fields, - STATE(3763), 2, + STATE(3790), 2, sym_comment, sym_include, - [148604] = 6, + [149516] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1496), 1, - sym__block_terminator, - STATE(3764), 2, + ACTIONS(5797), 1, + sym__terminator, + ACTIONS(5799), 1, + aux_sym_primitive_type_token19, + STATE(3791), 2, sym_comment, sym_include, - [148624] = 5, + [149536] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5745), 2, + ACTIONS(5801), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3765), 2, + STATE(3792), 2, sym_comment, sym_include, - [148642] = 6, + [149554] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1093), 1, - sym__block_terminator, - STATE(3766), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2438), 1, + sym_query_fields, + STATE(3793), 2, sym_comment, sym_include, - [148662] = 6, + [149574] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5747), 1, - sym__terminator, - ACTIONS(5749), 1, - aux_sym_catch_statement_token1, - STATE(3767), 2, - sym_comment, - sym_include, - [148682] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5751), 1, - sym_identifier, - STATE(565), 1, - sym_qualified_name, - STATE(3768), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + STATE(330), 1, + aux_sym_qualified_name_repeat1, + STATE(3794), 2, sym_comment, sym_include, - [148702] = 6, + [149594] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1206), 1, + STATE(3447), 1, sym__block_terminator, - STATE(3769), 2, + STATE(3795), 2, sym_comment, sym_include, - [148722] = 6, + [149614] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5753), 1, - sym__terminator, - ACTIONS(5755), 1, - aux_sym_catch_statement_token1, - STATE(3770), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2395), 1, + sym_query_fields, + STATE(3796), 2, sym_comment, sym_include, - [148742] = 6, + [149634] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(836), 1, - sym__block_terminator, - STATE(3771), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2665), 1, + sym_query_fields, + STATE(3797), 2, sym_comment, sym_include, - [148762] = 6, + [149654] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5757), 1, + ACTIONS(5803), 1, sym_identifier, - STATE(288), 1, + STATE(1633), 1, sym_qualified_name, - STATE(3772), 2, + STATE(3798), 2, sym_comment, sym_include, - [148782] = 6, + [149674] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1202), 1, - sym__block_terminator, - STATE(3773), 2, + ACTIONS(5805), 1, + sym__terminator, + ACTIONS(5807), 1, + aux_sym_primitive_type_token19, + STATE(3799), 2, sym_comment, sym_include, - [148802] = 6, + [149694] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5759), 1, + ACTIONS(5809), 1, sym__terminator, - ACTIONS(5761), 1, - aux_sym_primitive_type_token19, - STATE(3774), 2, + ACTIONS(5811), 1, + anon_sym_LPAREN, + STATE(3800), 2, sym_comment, sym_include, - [148822] = 6, + [149714] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1502), 1, - sym__block_terminator, - STATE(3775), 2, + ACTIONS(2614), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3801), 2, sym_comment, sym_include, - [148842] = 6, + [149732] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2511), 1, - sym_query_fields, - STATE(3776), 2, + ACTIONS(5813), 1, + sym__terminator, + ACTIONS(5815), 1, + aux_sym_interface_statement_token1, + STATE(3802), 2, sym_comment, sym_include, - [148862] = 6, + [149752] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2551), 1, - sym_query_fields, - STATE(3777), 2, - sym_comment, - sym_include, - [148882] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5763), 1, - sym_identifier, - STATE(4490), 1, - sym_qualified_name, - STATE(3778), 2, + ACTIONS(5817), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3803), 2, sym_comment, sym_include, - [148902] = 6, + [149770] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1518), 1, - sym__block_terminator, - STATE(3779), 2, + ACTIONS(5819), 1, + sym__terminator, + ACTIONS(5821), 1, + aux_sym_constructor_definition_token1, + STATE(3804), 2, sym_comment, sym_include, - [148922] = 6, + [149790] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5765), 1, + ACTIONS(5823), 1, sym_identifier, - STATE(2615), 1, - sym_qualified_name, - STATE(3780), 2, - sym_comment, - sym_include, - [148942] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5767), 2, + ACTIONS(5825), 1, sym__terminator, - anon_sym_COLON, - STATE(3781), 2, + STATE(3805), 2, sym_comment, sym_include, - [148960] = 5, - ACTIONS(59), 1, + [149810] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5121), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3782), 2, + ACTIONS(5827), 1, + sym_identifier, + ACTIONS(5829), 1, + sym__terminator, + STATE(3806), 2, sym_comment, sym_include, - [148978] = 6, + [149830] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5769), 1, - aux_sym_variable_definition_token5, - ACTIONS(5771), 1, - aux_sym_function_parameter_token2, - STATE(3783), 2, + ACTIONS(5831), 1, + sym__terminator, + ACTIONS(5833), 1, + aux_sym_interface_statement_token1, + STATE(3807), 2, sym_comment, sym_include, - [148998] = 6, + [149850] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5773), 1, - sym__terminator, - ACTIONS(5775), 1, - anon_sym_METHOD, - STATE(3784), 2, + ACTIONS(5369), 1, + aux_sym__block_terminator_token1, + STATE(3439), 1, + sym__block_terminator, + STATE(3808), 2, sym_comment, sym_include, - [149018] = 6, + [149870] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2618), 1, - sym_query_fields, - STATE(3785), 2, + ACTIONS(5591), 1, + aux_sym_scope_tuning_token1, + STATE(4255), 1, + sym_new_expression, + STATE(3809), 2, sym_comment, sym_include, - [149038] = 6, + [149890] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2456), 1, - sym_query_fields, - STATE(3786), 2, + ACTIONS(5835), 1, + sym__terminator, + ACTIONS(5837), 1, + aux_sym_primitive_type_token19, + STATE(3810), 2, sym_comment, sym_include, - [149058] = 6, + [149910] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5777), 1, + ACTIONS(5839), 1, sym__terminator, - ACTIONS(5779), 1, - aux_sym_interface_statement_token1, - STATE(3787), 2, + ACTIONS(5841), 1, + anon_sym_COLON, + STATE(3811), 2, sym_comment, sym_include, - [149078] = 6, + [149930] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1505), 1, + STATE(1276), 1, sym__block_terminator, - STATE(3788), 2, + STATE(3812), 2, sym_comment, sym_include, - [149098] = 6, + [149950] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5781), 1, - anon_sym_DOT, - ACTIONS(5783), 1, - aux_sym__function_terminator_token1, - STATE(3789), 2, + ACTIONS(5843), 1, + sym__terminator, + ACTIONS(5845), 1, + anon_sym_COLON, + STATE(3813), 2, sym_comment, sym_include, - [149118] = 5, + [149970] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5785), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3790), 2, + ACTIONS(5789), 1, + anon_sym_DOT, + ACTIONS(5847), 1, + aux_sym__case_terminator_token1, + STATE(3814), 2, sym_comment, sym_include, - [149136] = 6, + [149990] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1191), 1, + STATE(952), 1, sym__block_terminator, - STATE(3791), 2, + STATE(3815), 2, sym_comment, sym_include, - [149156] = 5, + [150010] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5787), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3792), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2660), 1, + sym_query_fields, + STATE(3816), 2, sym_comment, sym_include, - [149174] = 6, + [150030] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3214), 1, - sym__block_terminator, - STATE(3793), 2, + ACTIONS(5849), 1, + sym__terminator, + ACTIONS(5851), 1, + aux_sym_primitive_type_token19, + STATE(3817), 2, sym_comment, sym_include, - [149194] = 6, + [150050] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5789), 1, + ACTIONS(5853), 1, sym_identifier, - STATE(2643), 1, + STATE(1314), 1, sym_qualified_name, - STATE(3794), 2, + STATE(3818), 2, + sym_comment, + sym_include, + [150070] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + sym__terminator, + ACTIONS(5857), 1, + anon_sym_COLON, + STATE(3819), 2, sym_comment, sym_include, - [149214] = 6, + [150090] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5791), 1, + ACTIONS(5859), 1, sym_identifier, - STATE(2421), 1, + STATE(2654), 1, sym_qualified_name, - STATE(3795), 2, + STATE(3820), 2, sym_comment, sym_include, - [149234] = 6, + [150110] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2535), 1, - sym_query_fields, - STATE(3796), 2, + ACTIONS(5855), 1, + sym__terminator, + ACTIONS(5861), 1, + anon_sym_METHOD, + STATE(3821), 2, sym_comment, sym_include, - [149254] = 6, - ACTIONS(59), 1, + [150130] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1120), 1, - sym__block_terminator, - STATE(3797), 2, + ACTIONS(5863), 1, + sym_identifier, + STATE(4418), 1, + sym_qualified_name, + STATE(3822), 2, sym_comment, sym_include, - [149274] = 6, - ACTIONS(59), 1, + [150150] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1511), 1, - sym__block_terminator, - STATE(3798), 2, + ACTIONS(5865), 1, + sym_identifier, + STATE(754), 1, + sym_qualified_name, + STATE(3823), 2, sym_comment, sym_include, - [149294] = 5, - ACTIONS(59), 1, + [150170] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5793), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3799), 2, + ACTIONS(5867), 1, + sym_identifier, + STATE(4238), 1, + sym_qualified_name, + STATE(3824), 2, sym_comment, sym_include, - [149312] = 5, - ACTIONS(59), 1, + [150190] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5795), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3800), 2, + ACTIONS(5869), 1, + sym_identifier, + STATE(1723), 1, + sym_qualified_name, + STATE(3825), 2, sym_comment, sym_include, - [149330] = 6, + [150210] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1506), 1, - sym__block_terminator, - STATE(3801), 2, + ACTIONS(5871), 1, + sym__terminator, + ACTIONS(5873), 1, + aux_sym_finally_statement_token1, + STATE(3826), 2, sym_comment, sym_include, - [149350] = 6, + [150230] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1507), 1, - sym__block_terminator, - STATE(3802), 2, + ACTIONS(5875), 1, + sym__terminator, + ACTIONS(5877), 1, + aux_sym_interface_statement_token1, + STATE(3827), 2, sym_comment, sym_include, - [149370] = 6, + [150250] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1118), 1, - sym__block_terminator, - STATE(3803), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2648), 1, + sym_query_fields, + STATE(3828), 2, sym_comment, sym_include, - [149390] = 6, + [150270] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5797), 1, - sym__terminator, - ACTIONS(5799), 1, - aux_sym_interface_statement_token1, - STATE(3804), 2, + ACTIONS(5591), 1, + aux_sym_scope_tuning_token1, + STATE(4398), 1, + sym_new_expression, + STATE(3829), 2, sym_comment, sym_include, - [149410] = 6, - ACTIONS(59), 1, + [150290] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5801), 1, - aux_sym_variable_definition_token5, - ACTIONS(5803), 1, - aux_sym_variable_definition_token6, - STATE(3805), 2, + ACTIONS(100), 2, + sym__namedot, + sym_identifier, + STATE(3830), 2, sym_comment, sym_include, - [149430] = 6, + [150308] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(3220), 1, + STATE(3479), 1, sym__block_terminator, - STATE(3806), 2, + STATE(3831), 2, sym_comment, sym_include, - [149450] = 6, - ACTIONS(59), 1, + [150328] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5805), 1, + ACTIONS(5879), 1, + sym_identifier, + ACTIONS(5881), 1, sym__terminator, - ACTIONS(5807), 1, - aux_sym_primitive_type_token19, - STATE(3807), 2, - sym_comment, - sym_include, - [149470] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2557), 1, - sym_query_fields, - STATE(3808), 2, + STATE(3832), 2, sym_comment, sym_include, - [149490] = 6, + [150348] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5369), 1, aux_sym__block_terminator_token1, - STATE(1117), 1, + STATE(3481), 1, sym__block_terminator, - STATE(3809), 2, + STATE(3833), 2, sym_comment, sym_include, - [149510] = 6, + [150368] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3180), 1, - sym__block_terminator, - STATE(3810), 2, + ACTIONS(5883), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3834), 2, sym_comment, sym_include, - [149530] = 6, + [150386] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1116), 1, - sym__block_terminator, - STATE(3811), 2, + ACTIONS(5015), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3835), 2, sym_comment, sym_include, - [149550] = 5, - ACTIONS(59), 1, + [150404] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2518), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3812), 2, + ACTIONS(5885), 1, + sym_identifier, + ACTIONS(5887), 1, + anon_sym_STAR, + STATE(3836), 2, sym_comment, sym_include, - [149568] = 6, - ACTIONS(59), 1, + [150424] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1430), 1, - sym__block_terminator, - STATE(3813), 2, + ACTIONS(5889), 1, + sym_identifier, + ACTIONS(5891), 1, + sym__terminator, + STATE(3837), 2, sym_comment, sym_include, - [149588] = 6, + [150444] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5809), 1, + ACTIONS(5893), 1, sym_identifier, - STATE(2670), 1, - sym_qualified_name, - STATE(3814), 2, + ACTIONS(5895), 1, + aux_sym_input_expression_token2, + STATE(3838), 2, sym_comment, sym_include, - [149608] = 6, + [150464] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2675), 1, - sym_query_fields, - STATE(3815), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(961), 1, + sym__block_terminator, + STATE(3839), 2, sym_comment, sym_include, - [149628] = 6, + [150484] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5811), 1, - sym__terminator, - ACTIONS(5813), 1, - anon_sym_METHOD, - STATE(3816), 2, + ACTIONS(5897), 1, + aux_sym_variable_definition_token5, + ACTIONS(5899), 1, + aux_sym_variable_definition_token6, + STATE(3840), 2, sym_comment, sym_include, - [149648] = 6, - ACTIONS(3), 1, + [150504] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5815), 1, - sym_identifier, - ACTIONS(5817), 1, - anon_sym_RPAREN, - STATE(3817), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(899), 1, + sym__block_terminator, + STATE(3841), 2, sym_comment, sym_include, - [149668] = 6, + [150524] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5819), 1, + ACTIONS(5901), 1, sym_identifier, - STATE(4405), 1, + STATE(2681), 1, sym_qualified_name, - STATE(3818), 2, + STATE(3842), 2, sym_comment, sym_include, - [149688] = 6, + [150544] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5821), 1, + ACTIONS(5903), 1, sym_identifier, - ACTIONS(5823), 1, - anon_sym_COMMA, - STATE(3819), 2, + ACTIONS(5905), 1, + sym__terminator, + STATE(3843), 2, sym_comment, sym_include, - [149708] = 6, - ACTIONS(3), 1, + [150564] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5825), 1, - sym_identifier, - ACTIONS(5827), 1, - anon_sym_COMMA, - STATE(3820), 2, + ACTIONS(5907), 1, + sym__terminator, + ACTIONS(5909), 1, + aux_sym_primitive_type_token19, + STATE(3844), 2, sym_comment, sym_include, - [149728] = 6, - ACTIONS(59), 1, + [150584] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1114), 1, - sym__block_terminator, - STATE(3821), 2, + ACTIONS(5911), 1, + sym_identifier, + STATE(294), 1, + sym_qualified_name, + STATE(3845), 2, sym_comment, sym_include, - [149748] = 6, + [150604] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5829), 1, - sym__terminator, - ACTIONS(5831), 1, - aux_sym_primitive_type_token19, - STATE(3822), 2, + ACTIONS(5357), 1, + aux_sym__block_terminator_token1, + STATE(901), 1, + sym__block_terminator, + STATE(3846), 2, sym_comment, sym_include, - [149768] = 6, + [150624] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5833), 1, + ACTIONS(5913), 1, sym_identifier, - ACTIONS(5835), 1, - anon_sym_COMMA, - STATE(3823), 2, + STATE(4192), 1, + sym_qualified_name, + STATE(3847), 2, sym_comment, sym_include, - [149788] = 6, + [150644] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, - aux_sym_scope_tuning_token1, - STATE(4354), 1, - sym_new_expression, - STATE(3824), 2, + ACTIONS(5915), 1, + aux_sym_variable_definition_token5, + ACTIONS(5917), 1, + aux_sym_variable_definition_token6, + STATE(3848), 2, sym_comment, sym_include, - [149808] = 5, - ACTIONS(59), 1, + [150664] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5837), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3825), 2, + ACTIONS(5919), 1, + sym_identifier, + STATE(3424), 1, + sym_qualified_name, + STATE(3849), 2, sym_comment, sym_include, - [149826] = 6, + [150684] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1343), 1, - sym__block_terminator, - STATE(3826), 2, + ACTIONS(4609), 1, + sym__terminator, + ACTIONS(4611), 1, + aux_sym_using_statement_token2, + STATE(3850), 2, sym_comment, sym_include, - [149846] = 6, - ACTIONS(59), 1, + [150704] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1130), 1, - sym__block_terminator, - STATE(3827), 2, + ACTIONS(5921), 1, + sym_identifier, + STATE(2569), 1, + sym_qualified_name, + STATE(3851), 2, sym_comment, sym_include, - [149866] = 6, + [150724] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5839), 1, - sym__terminator, - ACTIONS(5841), 1, - aux_sym_interface_statement_token1, - STATE(3828), 2, + ACTIONS(5591), 1, + aux_sym_scope_tuning_token1, + STATE(4383), 1, + sym_new_expression, + STATE(3852), 2, sym_comment, sym_include, - [149886] = 6, + [150744] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5781), 1, - anon_sym_DOT, - ACTIONS(5843), 1, - aux_sym__procedure_terminator_token1, - STATE(3829), 2, + ACTIONS(5923), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3853), 2, sym_comment, sym_include, - [149906] = 6, + [150762] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1112), 1, + STATE(1303), 1, sym__block_terminator, - STATE(3830), 2, + STATE(3854), 2, sym_comment, sym_include, - [149926] = 6, + [150782] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(671), 1, - sym__namedot, - STATE(332), 1, - aux_sym_qualified_name_repeat1, - STATE(3831), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1302), 1, + sym__block_terminator, + STATE(3855), 2, sym_comment, sym_include, - [149946] = 6, + [150802] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5845), 1, + ACTIONS(5925), 1, sym_identifier, - STATE(1620), 1, + STATE(1634), 1, sym_qualified_name, - STATE(3832), 2, + STATE(3856), 2, sym_comment, sym_include, - [149966] = 6, + [150822] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5847), 1, - sym__terminator, - ACTIONS(5849), 1, - aux_sym_interface_statement_token1, - STATE(3833), 2, + ACTIONS(5039), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3857), 2, sym_comment, sym_include, - [149986] = 5, + [150840] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4593), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3834), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1295), 1, + sym__block_terminator, + STATE(3858), 2, sym_comment, sym_include, - [150004] = 6, + [150860] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5851), 1, - anon_sym_DOT, - ACTIONS(5853), 1, - aux_sym__procedure_terminator_token1, - STATE(3835), 2, - sym_comment, - sym_include, - [150024] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5855), 1, - sym_identifier, - STATE(2682), 1, - sym_qualified_name, - STATE(3836), 2, + ACTIONS(5365), 1, + aux_sym_on_error_phrase_token1, + STATE(4278), 1, + sym_on_error_phrase, + STATE(3859), 2, sym_comment, sym_include, - [150044] = 6, + [150880] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1110), 1, - sym__block_terminator, - STATE(3837), 2, + ACTIONS(5927), 1, + aux_sym_input_close_statement_token2, + ACTIONS(5929), 1, + aux_sym_output_stream_statement_token1, + STATE(3860), 2, sym_comment, sym_include, - [150064] = 6, + [150900] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5857), 1, - sym__terminator, - ACTIONS(5859), 1, - anon_sym_COLON, - STATE(3838), 2, + ACTIONS(5929), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(5931), 1, + aux_sym_input_close_statement_token2, + STATE(3861), 2, sym_comment, sym_include, - [150084] = 6, + [150920] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5315), 1, - aux_sym_on_error_phrase_token1, - STATE(4602), 1, - sym_on_error_phrase, - STATE(3839), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1149), 1, + sym__block_terminator, + STATE(3862), 2, sym_comment, sym_include, - [150104] = 6, + [150940] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5851), 1, - anon_sym_DOT, - ACTIONS(5861), 1, - aux_sym__case_terminator_token1, - STATE(3840), 2, + ACTIONS(5933), 1, + aux_sym_using_statement_token2, + ACTIONS(5935), 1, + aux_sym_input_close_statement_token2, + STATE(3863), 2, sym_comment, sym_include, - [150124] = 6, + [150960] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5863), 1, - aux_sym_primitive_type_token1, - ACTIONS(5865), 1, - aux_sym_event_definition_token2, - STATE(3841), 2, + ACTIONS(5933), 1, + aux_sym_using_statement_token2, + ACTIONS(5937), 1, + aux_sym_input_close_statement_token2, + STATE(3864), 2, sym_comment, sym_include, - [150144] = 6, + [150980] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5867), 1, + ACTIONS(5939), 1, sym_identifier, - STATE(287), 1, - sym_qualified_name, - STATE(3842), 2, + ACTIONS(5941), 1, + sym__integer_literal, + STATE(3865), 2, sym_comment, sym_include, - [150164] = 6, - ACTIONS(59), 1, + [151000] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1140), 1, - sym__block_terminator, - STATE(3843), 2, + ACTIONS(5943), 1, + sym_identifier, + STATE(1928), 1, + sym_qualified_name, + STATE(3866), 2, sym_comment, sym_include, - [150184] = 5, + [151020] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5869), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3844), 2, + ACTIONS(5945), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3867), 2, sym_comment, sym_include, - [150202] = 6, + [151038] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5871), 1, - aux_sym_variable_definition_token5, - ACTIONS(5873), 1, - aux_sym_variable_definition_token6, - STATE(3845), 2, - sym_comment, - sym_include, - [150222] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5875), 1, - sym_identifier, - ACTIONS(5877), 1, - sym__terminator, - STATE(3846), 2, + ACTIONS(5947), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3868), 2, sym_comment, sym_include, - [150242] = 6, + [151056] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(3231), 1, + STATE(1182), 1, sym__block_terminator, - STATE(3847), 2, + STATE(3869), 2, sym_comment, sym_include, - [150262] = 6, + [151076] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, - aux_sym_scope_tuning_token1, - STATE(4156), 1, - sym_new_expression, - STATE(3848), 2, + ACTIONS(5949), 1, + sym__terminator, + ACTIONS(5951), 1, + aux_sym_interface_statement_token1, + STATE(3870), 2, sym_comment, sym_include, - [150282] = 6, + [151096] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, - aux_sym_scope_tuning_token1, - STATE(4282), 1, - sym_new_expression, - STATE(3849), 2, + ACTIONS(5365), 1, + aux_sym_on_error_phrase_token1, + STATE(4313), 1, + sym_on_error_phrase, + STATE(3871), 2, sym_comment, sym_include, - [150302] = 5, + [151116] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5879), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3850), 2, + ACTIONS(5953), 1, + sym__terminator, + ACTIONS(5955), 1, + aux_sym_primitive_type_token19, + STATE(3872), 2, sym_comment, sym_include, - [150320] = 6, + [151136] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5881), 1, + ACTIONS(5957), 1, sym_identifier, - STATE(1704), 1, - sym_qualified_name, - STATE(3851), 2, + ACTIONS(5959), 1, + anon_sym_STAR, + STATE(3873), 2, sym_comment, sym_include, - [150340] = 6, + [151156] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1299), 1, + STATE(1281), 1, sym__block_terminator, - STATE(3852), 2, + STATE(3874), 2, sym_comment, sym_include, - [150360] = 6, + [151176] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5781), 1, - anon_sym_DOT, - ACTIONS(5883), 1, - aux_sym__case_terminator_token1, - STATE(3853), 2, + ACTIONS(2608), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3875), 2, sym_comment, sym_include, - [150380] = 6, + [151194] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1109), 1, - sym__block_terminator, - STATE(3854), 2, - sym_comment, - sym_include, - [150400] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5885), 1, - sym_identifier, - STATE(2951), 1, - sym_qualified_name, - STATE(3855), 2, - sym_comment, - sym_include, - [150420] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5887), 1, - sym_identifier, - ACTIONS(5889), 1, - sym__terminator, - STATE(3856), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2646), 1, + sym_query_fields, + STATE(3876), 2, sym_comment, sym_include, - [150440] = 6, + [151214] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(1108), 1, + STATE(1433), 1, sym__block_terminator, - STATE(3857), 2, + STATE(3877), 2, sym_comment, sym_include, - [150460] = 6, + [151234] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5891), 1, + ACTIONS(5961), 1, sym_identifier, - STATE(1919), 1, + STATE(1939), 1, sym_qualified_name, - STATE(3858), 2, + STATE(3878), 2, sym_comment, sym_include, - [150480] = 6, + [151254] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5893), 1, - aux_sym_input_close_statement_token2, - ACTIONS(5895), 1, - aux_sym_output_stream_statement_token1, - STATE(3859), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1372), 1, + sym__block_terminator, + STATE(3879), 2, sym_comment, sym_include, - [150500] = 6, - ACTIONS(59), 1, + [151274] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5895), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(5897), 1, - aux_sym_input_close_statement_token2, - STATE(3860), 2, + ACTIONS(5963), 1, + sym_identifier, + ACTIONS(5965), 1, + sym__terminator, + STATE(3880), 2, sym_comment, sym_include, - [150520] = 6, + [151294] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5899), 1, + ACTIONS(5967), 1, sym_identifier, - ACTIONS(5901), 1, + ACTIONS(5969), 1, sym__integer_literal, - STATE(3861), 2, + STATE(3881), 2, sym_comment, sym_include, - [150540] = 6, + [151314] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(1148), 1, + STATE(1434), 1, sym__block_terminator, - STATE(3862), 2, + STATE(3882), 2, sym_comment, sym_include, - [150560] = 6, + [151334] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5903), 1, - sym__terminator, - ACTIONS(5905), 1, - aux_sym_interface_statement_token1, - STATE(3863), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(977), 1, + sym__block_terminator, + STATE(3883), 2, sym_comment, sym_include, - [150580] = 6, + [151354] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(1107), 1, + STATE(1435), 1, sym__block_terminator, - STATE(3864), 2, + STATE(3884), 2, sym_comment, sym_include, - [150600] = 6, - ACTIONS(3), 1, + [151374] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4768), 1, - anon_sym_COLON, - ACTIONS(5907), 1, - sym_identifier, - STATE(3865), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1436), 1, + sym__block_terminator, + STATE(3885), 2, sym_comment, sym_include, - [150620] = 6, + [151394] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5909), 1, + ACTIONS(5971), 1, aux_sym_using_statement_token2, - ACTIONS(5911), 1, + ACTIONS(5973), 1, aux_sym_input_close_statement_token2, - STATE(3866), 2, + STATE(3886), 2, sym_comment, sym_include, - [150640] = 6, + [151414] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5909), 1, + ACTIONS(5971), 1, aux_sym_using_statement_token2, - ACTIONS(5913), 1, + ACTIONS(5975), 1, aux_sym_input_close_statement_token2, - STATE(3867), 2, + STATE(3887), 2, sym_comment, sym_include, - [150660] = 6, + [151434] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(3242), 1, + STATE(979), 1, sym__block_terminator, - STATE(3868), 2, + STATE(3888), 2, sym_comment, sym_include, - [150680] = 6, + [151454] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5915), 1, - aux_sym_using_statement_token2, - ACTIONS(5917), 1, - aux_sym_input_close_statement_token2, - STATE(3869), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1438), 1, + sym__block_terminator, + STATE(3889), 2, sym_comment, sym_include, - [150700] = 6, + [151474] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5915), 1, - aux_sym_using_statement_token2, - ACTIONS(5919), 1, - aux_sym_input_close_statement_token2, - STATE(3870), 2, + ACTIONS(5977), 1, + sym__terminator, + ACTIONS(5979), 1, + aux_sym_constructor_definition_token1, + STATE(3890), 2, sym_comment, sym_include, - [150720] = 6, - ACTIONS(59), 1, + [151494] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1106), 1, - sym__block_terminator, - STATE(3871), 2, + ACTIONS(5981), 1, + sym_identifier, + ACTIONS(5983), 1, + anon_sym_STAR, + STATE(3891), 2, sym_comment, sym_include, - [150740] = 6, + [151514] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5921), 1, + ACTIONS(5985), 1, aux_sym_input_close_statement_token2, - ACTIONS(5923), 1, + ACTIONS(5987), 1, aux_sym_output_stream_statement_token1, - STATE(3872), 2, + STATE(3892), 2, sym_comment, sym_include, - [150760] = 6, + [151534] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5923), 1, + ACTIONS(5987), 1, aux_sym_output_stream_statement_token1, - ACTIONS(5925), 1, + ACTIONS(5989), 1, aux_sym_input_close_statement_token2, - STATE(3873), 2, + STATE(3893), 2, sym_comment, sym_include, - [150780] = 6, + [151554] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5927), 1, + ACTIONS(5991), 1, sym__terminator, - ACTIONS(5929), 1, - aux_sym_primitive_type_token19, - STATE(3874), 2, + ACTIONS(5993), 1, + anon_sym_COLON, + STATE(3894), 2, sym_comment, sym_include, - [150800] = 6, - ACTIONS(3), 1, + [151574] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5931), 1, - sym_identifier, - ACTIONS(5933), 1, - sym__integer_literal, - STATE(3875), 2, + ACTIONS(5995), 1, + sym__terminator, + ACTIONS(5997), 1, + aux_sym_interface_statement_token1, + STATE(3895), 2, sym_comment, sym_include, - [150820] = 6, - ACTIONS(3), 1, + [151594] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5935), 1, - sym_identifier, - STATE(4142), 1, - sym_qualified_name, - STATE(3876), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1440), 1, + sym__block_terminator, + STATE(3896), 2, sym_comment, sym_include, - [150840] = 6, - ACTIONS(3), 1, + [151614] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5937), 1, - sym_identifier, - STATE(1912), 1, - sym_qualified_name, - STATE(3877), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1442), 1, + sym__block_terminator, + STATE(3897), 2, sym_comment, sym_include, - [150860] = 6, + [151634] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5939), 1, + ACTIONS(5999), 1, sym__terminator, - ACTIONS(5941), 1, - aux_sym_finally_statement_token1, - STATE(3878), 2, + ACTIONS(6001), 1, + anon_sym_COLON, + STATE(3898), 2, sym_comment, sym_include, - [150880] = 6, - ACTIONS(3), 1, + [151654] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2397), 1, - anon_sym_RPAREN, - ACTIONS(5943), 1, - anon_sym_, - STATE(3879), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1443), 1, + sym__block_terminator, + STATE(3899), 2, sym_comment, sym_include, - [150900] = 6, + [151674] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(1131), 1, + STATE(1345), 1, sym__block_terminator, - STATE(3880), 2, + STATE(3900), 2, sym_comment, sym_include, - [150920] = 5, + [151694] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5945), 2, + ACTIONS(6003), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(3881), 2, + STATE(3901), 2, sym_comment, sym_include, - [150938] = 6, + [151712] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, + ACTIONS(5591), 1, aux_sym_scope_tuning_token1, - STATE(4644), 1, + STATE(4400), 1, sym_new_expression, - STATE(3882), 2, + STATE(3902), 2, sym_comment, sym_include, - [150958] = 6, + [151732] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1105), 1, - sym__block_terminator, - STATE(3883), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2651), 1, + sym_query_fields, + STATE(3903), 2, sym_comment, sym_include, - [150978] = 5, - ACTIONS(59), 1, + [151752] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4829), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3884), 2, + ACTIONS(6005), 1, + sym_identifier, + STATE(1711), 1, + sym_qualified_name, + STATE(3904), 2, sym_comment, sym_include, - [150996] = 6, + [151772] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5947), 1, - sym__terminator, - ACTIONS(5949), 1, - aux_sym_catch_statement_token1, - STATE(3885), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1445), 1, + sym__block_terminator, + STATE(3905), 2, sym_comment, sym_include, - [151016] = 6, - ACTIONS(59), 1, + [151792] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5951), 1, - sym__terminator, - ACTIONS(5953), 1, - aux_sym_catch_statement_token1, - STATE(3886), 2, + ACTIONS(6007), 1, + sym_identifier, + STATE(2954), 1, + sym_qualified_name, + STATE(3906), 2, sym_comment, sym_include, - [151036] = 6, + [151812] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1104), 1, + STATE(986), 1, sym__block_terminator, - STATE(3887), 2, + STATE(3907), 2, sym_comment, sym_include, - [151056] = 6, + [151832] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5955), 1, - sym__terminator, - ACTIONS(5957), 1, - aux_sym_primitive_type_token19, - STATE(3888), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1450), 1, + sym__block_terminator, + STATE(3908), 2, sym_comment, sym_include, - [151076] = 6, + [151852] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1152), 1, - sym__block_terminator, - STATE(3889), 2, + ACTIONS(6009), 1, + sym__terminator, + ACTIONS(6011), 1, + aux_sym_finally_statement_token1, + STATE(3909), 2, sym_comment, sym_include, - [151096] = 6, + [151872] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5959), 1, + ACTIONS(6013), 1, sym_identifier, - STATE(284), 1, + STATE(286), 1, sym_qualified_name, - STATE(3890), 2, + STATE(3910), 2, sym_comment, sym_include, - [151116] = 6, + [151892] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1103), 1, + STATE(1066), 1, sym__block_terminator, - STATE(3891), 2, + STATE(3911), 2, sym_comment, sym_include, - [151136] = 6, + [151912] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5961), 1, + ACTIONS(6015), 1, sym_identifier, - ACTIONS(5963), 1, + ACTIONS(6017), 1, aux_sym_input_expression_token2, - STATE(3892), 2, + STATE(3912), 2, sym_comment, sym_include, - [151156] = 6, + [151932] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5965), 1, - sym__terminator, - ACTIONS(5967), 1, - aux_sym_finally_statement_token1, - STATE(3893), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1223), 1, + sym__block_terminator, + STATE(3913), 2, sym_comment, sym_include, - [151176] = 6, + [151952] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(1102), 1, + STATE(1453), 1, sym__block_terminator, - STATE(3894), 2, + STATE(3914), 2, sym_comment, sym_include, - [151196] = 6, + [151972] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5315), 1, - aux_sym_on_error_phrase_token1, - STATE(4207), 1, - sym_on_error_phrase, - STATE(3895), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2658), 1, + sym_query_fields, + STATE(3915), 2, sym_comment, sym_include, - [151216] = 6, + [151992] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1101), 1, + STATE(1065), 1, sym__block_terminator, - STATE(3896), 2, + STATE(3916), 2, sym_comment, sym_include, - [151236] = 6, + [152012] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5969), 1, + ACTIONS(6019), 1, sym_identifier, - STATE(2641), 1, + STATE(2598), 1, sym_qualified_name, - STATE(3897), 2, + STATE(3917), 2, sym_comment, sym_include, - [151256] = 6, + [152032] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1190), 1, - sym__block_terminator, - STATE(3898), 2, + ACTIONS(6021), 1, + aux_sym_variable_definition_token5, + ACTIONS(6023), 1, + aux_sym_variable_definition_token6, + STATE(3918), 2, sym_comment, sym_include, - [151276] = 6, - ACTIONS(3), 1, + [152052] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4704), 1, - anon_sym_COLON, - ACTIONS(5971), 1, - sym_identifier, - STATE(3899), 2, + ACTIONS(6025), 1, + aux_sym_getter_token1, + ACTIONS(6027), 1, + aux_sym_setter_token1, + STATE(3919), 2, sym_comment, sym_include, - [151296] = 6, - ACTIONS(3), 1, + [152072] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4652), 1, - anon_sym_COLON, - ACTIONS(5973), 1, - sym_identifier, - STATE(3900), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1064), 1, + sym__block_terminator, + STATE(3920), 2, sym_comment, sym_include, - [151316] = 5, + [152092] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5975), 2, + ACTIONS(6029), 1, sym__terminator, - anon_sym_COLON, - STATE(3901), 2, + ACTIONS(6031), 1, + anon_sym_LPAREN, + STATE(3921), 2, sym_comment, sym_include, - [151334] = 6, + [152112] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1100), 1, - sym__block_terminator, - STATE(3902), 2, + ACTIONS(6033), 1, + aux_sym_primitive_type_token1, + ACTIONS(6035), 1, + aux_sym_event_definition_token2, + STATE(3922), 2, sym_comment, sym_include, - [151354] = 6, + [152132] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5977), 1, - aux_sym_variable_definition_token5, - ACTIONS(5979), 1, - aux_sym_function_parameter_token2, - STATE(3903), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1460), 1, + sym__block_terminator, + STATE(3923), 2, sym_comment, sym_include, - [151374] = 5, + [152152] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5981), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3904), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1167), 1, + sym__block_terminator, + STATE(3924), 2, sym_comment, sym_include, - [151392] = 6, - ACTIONS(59), 1, + [152172] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1168), 1, - sym__block_terminator, - STATE(3905), 2, + ACTIONS(6037), 1, + sym_identifier, + STATE(2910), 1, + sym_qualified_name, + STATE(3925), 2, sym_comment, sym_include, - [151412] = 6, + [152192] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5983), 1, + ACTIONS(6039), 1, sym_identifier, - STATE(737), 1, + STATE(37), 1, sym_qualified_name, - STATE(3906), 2, + STATE(3926), 2, sym_comment, sym_include, - [151432] = 6, + [152212] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1099), 1, + STATE(1007), 1, sym__block_terminator, - STATE(3907), 2, + STATE(3927), 2, sym_comment, sym_include, - [151452] = 6, + [152232] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(1098), 1, + STATE(1463), 1, sym__block_terminator, - STATE(3908), 2, + STATE(3928), 2, sym_comment, sym_include, - [151472] = 6, + [152252] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1096), 1, - sym__block_terminator, - STATE(3909), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2683), 1, + sym_query_fields, + STATE(3929), 2, sym_comment, sym_include, - [151492] = 6, + [152272] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5851), 1, - anon_sym_DOT, - ACTIONS(5985), 1, - aux_sym__function_terminator_token1, - STATE(3910), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1062), 1, + sym__block_terminator, + STATE(3930), 2, sym_comment, sym_include, - [151512] = 6, - ACTIONS(3), 1, + [152292] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5987), 1, - sym_identifier, - ACTIONS(5989), 1, - sym__terminator, - STATE(3911), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1208), 1, + sym__block_terminator, + STATE(3931), 2, sym_comment, sym_include, - [151532] = 6, + [152312] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5991), 1, - sym__terminator, - ACTIONS(5993), 1, - aux_sym_interface_statement_token1, - STATE(3912), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2457), 1, + sym_query_fields, + STATE(3932), 2, sym_comment, sym_include, - [151552] = 6, + [152332] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3264), 1, - sym__block_terminator, - STATE(3913), 2, + ACTIONS(6041), 1, + sym__terminator, + ACTIONS(6043), 1, + aux_sym_catch_statement_token1, + STATE(3933), 2, sym_comment, sym_include, - [151572] = 5, + [152352] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5995), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3914), 2, + ACTIONS(6045), 1, + sym__terminator, + ACTIONS(6047), 1, + aux_sym_primitive_type_token19, + STATE(3934), 2, sym_comment, sym_include, - [151590] = 5, + [152372] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5997), 2, + ACTIONS(6049), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(3915), 2, + STATE(3935), 2, sym_comment, sym_include, - [151608] = 6, + [152390] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, + ACTIONS(5591), 1, aux_sym_scope_tuning_token1, - STATE(4559), 1, + STATE(4448), 1, sym_new_expression, - STATE(3916), 2, + STATE(3936), 2, sym_comment, sym_include, - [151628] = 6, + [152410] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5999), 1, - sym__terminator, - ACTIONS(6001), 1, - aux_sym_primitive_type_token19, - STATE(3917), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1478), 1, + sym__block_terminator, + STATE(3937), 2, sym_comment, sym_include, - [151648] = 5, + [152430] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6003), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3918), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1481), 1, + sym__block_terminator, + STATE(3938), 2, sym_comment, sym_include, - [151666] = 5, + [152450] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6005), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3919), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1204), 1, + sym__block_terminator, + STATE(3939), 2, sym_comment, sym_include, - [151684] = 6, + [152470] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6007), 1, + ACTIONS(6051), 1, sym_identifier, - ACTIONS(6009), 1, - sym__terminator, - STATE(3920), 2, + STATE(2030), 1, + sym_qualified_name, + STATE(3940), 2, sym_comment, sym_include, - [151704] = 6, + [152490] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6011), 1, - anon_sym_DOT, - ACTIONS(6013), 1, - aux_sym__case_terminator_token1, - STATE(3921), 2, + ACTIONS(6053), 1, + sym__terminator, + ACTIONS(6055), 1, + aux_sym_catch_statement_token1, + STATE(3941), 2, sym_comment, sym_include, - [151724] = 5, + [152510] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6015), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3922), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1061), 1, + sym__block_terminator, + STATE(3942), 2, sym_comment, sym_include, - [151742] = 6, + [152530] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5327), 1, - aux_sym__block_terminator_token1, - STATE(3267), 1, - sym__block_terminator, - STATE(3923), 2, - sym_comment, - sym_include, - [151762] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6017), 1, - sym_identifier, - ACTIONS(6019), 1, - anon_sym_STAR, - STATE(3924), 2, + ACTIONS(6057), 2, + sym__terminator, + anon_sym_COLON, + STATE(3943), 2, sym_comment, sym_include, - [151782] = 6, - ACTIONS(3), 1, + [152548] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6021), 1, - sym_identifier, - STATE(4092), 1, - sym_qualified_name, - STATE(3925), 2, + ACTIONS(5178), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3944), 2, sym_comment, sym_include, - [151802] = 6, - ACTIONS(3), 1, + [152566] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6023), 1, - sym_identifier, - STATE(4461), 1, - sym_qualified_name, - STATE(3926), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2495), 1, + sym_query_fields, + STATE(3945), 2, sym_comment, sym_include, - [151822] = 6, + [152586] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6025), 1, + ACTIONS(6059), 1, sym_identifier, - STATE(2545), 1, + STATE(4467), 1, sym_qualified_name, - STATE(3927), 2, + STATE(3946), 2, sym_comment, sym_include, - [151842] = 6, + [152606] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6027), 1, + ACTIONS(6061), 1, sym_identifier, - STATE(4261), 1, + STATE(2580), 1, sym_qualified_name, - STATE(3928), 2, + STATE(3947), 2, sym_comment, sym_include, - [151862] = 6, + [152626] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6029), 1, + ACTIONS(6063), 1, aux_sym_variable_definition_token5, - ACTIONS(6031), 1, - aux_sym_variable_definition_token6, - STATE(3929), 2, + ACTIONS(6065), 1, + aux_sym_function_parameter_token2, + STATE(3948), 2, sym_comment, sym_include, - [151882] = 6, + [152646] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4915), 1, - sym__namedot, - STATE(3128), 1, - aux_sym_qualified_name_repeat1, - STATE(3930), 2, + ACTIONS(6067), 1, + sym__terminator, + ACTIONS(6069), 1, + aux_sym_primitive_type_token19, + STATE(3949), 2, sym_comment, sym_include, - [151902] = 6, + [152666] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2621), 1, - sym_query_fields, - STATE(3931), 2, + ACTIONS(6071), 1, + sym__terminator, + ACTIONS(6073), 1, + aux_sym_primitive_type_token19, + STATE(3950), 2, sym_comment, sym_include, - [151922] = 6, + [152686] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6033), 1, + ACTIONS(6075), 1, sym_identifier, - STATE(2606), 1, + STATE(4111), 1, sym_qualified_name, - STATE(3932), 2, + STATE(3951), 2, sym_comment, sym_include, - [151942] = 6, + [152706] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1211), 1, + STATE(1060), 1, sym__block_terminator, - STATE(3933), 2, + STATE(3952), 2, sym_comment, sym_include, - [151962] = 6, + [152726] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6035), 1, + ACTIONS(6077), 1, sym_identifier, - STATE(1619), 1, + STATE(2708), 1, sym_qualified_name, - STATE(3934), 2, + STATE(3953), 2, + sym_comment, + sym_include, + [152746] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1059), 1, + sym__block_terminator, + STATE(3954), 2, sym_comment, sym_include, - [151982] = 5, + [152766] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4879), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3935), 2, + ACTIONS(5789), 1, + anon_sym_DOT, + ACTIONS(6079), 1, + aux_sym__function_terminator_token1, + STATE(3955), 2, sym_comment, sym_include, - [152000] = 6, + [152786] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(623), 1, - sym__terminator, - ACTIONS(6037), 1, - anon_sym_NO_DASHERROR, - STATE(3936), 2, + ACTIONS(6081), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3956), 2, sym_comment, sym_include, - [152020] = 6, + [152804] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1205), 1, + STATE(1193), 1, sym__block_terminator, - STATE(3937), 2, + STATE(3957), 2, sym_comment, sym_include, - [152040] = 6, + [152824] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5307), 1, - aux_sym__block_terminator_token1, - STATE(1113), 1, - sym__block_terminator, - STATE(3938), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2700), 1, + sym_query_fields, + STATE(3958), 2, sym_comment, sym_include, - [152060] = 5, + [152844] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2431), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3939), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1058), 1, + sym__block_terminator, + STATE(3959), 2, sym_comment, sym_include, - [152078] = 6, + [152864] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - STATE(2627), 1, + STATE(2415), 1, sym_query_fields, - STATE(3940), 2, + STATE(3960), 2, sym_comment, sym_include, - [152098] = 6, + [152884] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(213), 1, - sym__terminator, - ACTIONS(6039), 1, - anon_sym_NO_DASHERROR, - STATE(3941), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1251), 1, + sym__block_terminator, + STATE(3961), 2, sym_comment, sym_include, - [152118] = 5, + [152904] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6041), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3942), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2615), 1, + sym_query_fields, + STATE(3962), 2, sym_comment, sym_include, - [152136] = 6, + [152924] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6043), 1, + ACTIONS(6083), 1, sym_identifier, - STATE(40), 1, + STATE(2620), 1, sym_qualified_name, - STATE(3943), 2, + STATE(3963), 2, sym_comment, sym_include, - [152156] = 6, + [152944] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2607), 1, - sym_query_fields, - STATE(3944), 2, + ACTIONS(6085), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3964), 2, sym_comment, sym_include, - [152176] = 6, + [152962] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2633), 1, - sym_query_fields, - STATE(3945), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1484), 1, + sym__block_terminator, + STATE(3965), 2, sym_comment, sym_include, - [152196] = 6, + [152982] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2466), 1, - sym_query_fields, - STATE(3946), 2, + ACTIONS(6087), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3966), 2, sym_comment, sym_include, - [152216] = 6, + [153000] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(956), 1, - sym__block_terminator, - STATE(3947), 2, + ACTIONS(5230), 1, + sym__namedot, + STATE(3351), 1, + aux_sym_qualified_name_repeat1, + STATE(3967), 2, sym_comment, sym_include, - [152236] = 6, - ACTIONS(59), 1, + [153020] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6047), 1, - anon_sym_DOT, - ACTIONS(6049), 1, - aux_sym__case_terminator_token1, - STATE(3948), 2, + ACTIONS(6089), 1, + sym_identifier, + STATE(4084), 1, + sym_qualified_name, + STATE(3968), 2, sym_comment, sym_include, - [152256] = 6, + [153040] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2432), 1, - sym_query_fields, - STATE(3949), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1056), 1, + sym__block_terminator, + STATE(3969), 2, sym_comment, sym_include, - [152276] = 6, - ACTIONS(59), 1, + [153060] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6051), 1, - sym__terminator, - ACTIONS(6053), 1, - aux_sym_finally_statement_token1, - STATE(3950), 2, + ACTIONS(6091), 1, + sym_identifier, + STATE(4612), 1, + sym_qualified_name, + STATE(3970), 2, sym_comment, sym_include, - [152296] = 6, + [153080] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1251), 1, + STATE(1185), 1, sym__block_terminator, - STATE(3951), 2, + STATE(3971), 2, sym_comment, sym_include, - [152316] = 6, - ACTIONS(3), 1, + [153100] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6055), 1, - sym_identifier, - ACTIONS(6057), 1, - anon_sym_STAR, - STATE(3952), 2, + ACTIONS(2560), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3972), 2, sym_comment, sym_include, - [152336] = 6, + [153118] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(1014), 1, - sym__block_terminator, - STATE(3953), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2586), 1, + sym_query_fields, + STATE(3973), 2, sym_comment, sym_include, - [152356] = 6, + [153138] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1267), 1, + STATE(1055), 1, sym__block_terminator, - STATE(3954), 2, + STATE(3974), 2, sym_comment, sym_include, - [152376] = 6, + [153158] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6059), 1, + ACTIONS(6093), 1, sym_identifier, - ACTIONS(6061), 1, - sym__terminator, - STATE(3955), 2, + ACTIONS(6095), 1, + anon_sym_RPAREN, + STATE(3975), 2, sym_comment, sym_include, - [152396] = 6, + [153178] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6063), 1, + ACTIONS(6097), 1, sym__terminator, - ACTIONS(6065), 1, + ACTIONS(6099), 1, aux_sym_interface_statement_token1, - STATE(3956), 2, + STATE(3976), 2, sym_comment, sym_include, - [152416] = 6, + [153198] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(980), 1, - sym__block_terminator, - STATE(3957), 2, + ACTIONS(6101), 2, + sym__terminator, + anon_sym_COLON, + STATE(3977), 2, sym_comment, sym_include, - [152436] = 6, + [153216] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1012), 1, + STATE(1052), 1, sym__block_terminator, - STATE(3958), 2, + STATE(3978), 2, sym_comment, sym_include, - [152456] = 6, + [153236] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - STATE(2496), 1, + STATE(2507), 1, sym_query_fields, - STATE(3959), 2, + STATE(3979), 2, sym_comment, sym_include, - [152476] = 6, + [153256] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - STATE(2580), 1, + STATE(2565), 1, sym_query_fields, - STATE(3960), 2, + STATE(3980), 2, sym_comment, sym_include, - [152496] = 6, + [153276] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6067), 1, + ACTIONS(6103), 1, sym_identifier, - STATE(2593), 1, + STATE(2564), 1, sym_qualified_name, - STATE(3961), 2, + STATE(3981), 2, sym_comment, sym_include, - [152516] = 6, + [153296] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6069), 1, + ACTIONS(6105), 1, sym_identifier, - STATE(4385), 1, + STATE(4591), 1, sym_qualified_name, - STATE(3962), 2, - sym_comment, - sym_include, - [152536] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(972), 1, - sym__block_terminator, - STATE(3963), 2, + STATE(3982), 2, sym_comment, sym_include, - [152556] = 6, + [153316] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(964), 1, + STATE(1051), 1, sym__block_terminator, - STATE(3964), 2, + STATE(3983), 2, sym_comment, sym_include, - [152576] = 6, + [153336] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6071), 1, + ACTIONS(6107), 1, sym_identifier, - ACTIONS(6073), 1, + ACTIONS(6109), 1, sym__terminator, - STATE(3965), 2, + STATE(3984), 2, sym_comment, sym_include, - [152596] = 6, - ACTIONS(3), 1, + [153356] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6075), 1, - sym_identifier, - STATE(4091), 1, - sym_qualified_name, - STATE(3966), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1050), 1, + sym__block_terminator, + STATE(3985), 2, sym_comment, sym_include, - [152616] = 6, - ACTIONS(3), 1, + [153376] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6077), 1, - sym_identifier, - STATE(2645), 1, - sym_qualified_name, - STATE(3967), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1496), 1, + sym__block_terminator, + STATE(3986), 2, sym_comment, sym_include, - [152636] = 6, + [153396] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2646), 1, - sym_query_fields, - STATE(3968), 2, + ACTIONS(6111), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3987), 2, sym_comment, sym_include, - [152656] = 6, + [153414] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2417), 1, - sym_query_fields, - STATE(3969), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1499), 1, + sym__block_terminator, + STATE(3988), 2, sym_comment, sym_include, - [152676] = 6, + [153434] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5391), 1, - aux_sym__block_terminator_token1, - STATE(1294), 1, - sym__block_terminator, - STATE(3970), 2, + ACTIONS(6113), 1, + sym__terminator, + ACTIONS(6115), 1, + anon_sym_COLON, + STATE(3989), 2, sym_comment, sym_include, - [152696] = 6, + [153454] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(1330), 1, + STATE(1513), 1, sym__block_terminator, - STATE(3971), 2, + STATE(3990), 2, sym_comment, sym_include, - [152716] = 6, + [153474] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(962), 1, - sym__block_terminator, - STATE(3972), 2, + ACTIONS(6117), 1, + sym__terminator, + ACTIONS(6119), 1, + aux_sym_catch_statement_token1, + STATE(3991), 2, sym_comment, sym_include, - [152736] = 6, + [153494] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6079), 1, + ACTIONS(6121), 1, + sym__terminator, + ACTIONS(6123), 1, + aux_sym_catch_statement_token1, + STATE(3992), 2, + sym_comment, + sym_include, + [153514] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6125), 1, aux_sym_primitive_type_token1, - ACTIONS(6081), 1, + ACTIONS(6127), 1, aux_sym_event_definition_token2, - STATE(3973), 2, + STATE(3993), 2, sym_comment, sym_include, - [152756] = 6, + [153534] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(959), 1, + STATE(1048), 1, sym__block_terminator, - STATE(3974), 2, + STATE(3994), 2, sym_comment, sym_include, - [152776] = 6, + [153554] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6083), 1, - aux_sym_variable_definition_token5, - ACTIONS(6085), 1, - aux_sym_variable_definition_token6, - STATE(3975), 2, + ACTIONS(6129), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3995), 2, sym_comment, sym_include, - [152796] = 6, + [153572] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1201), 1, - sym__block_terminator, - STATE(3976), 2, + ACTIONS(6131), 1, + aux_sym_variable_definition_token5, + ACTIONS(6133), 1, + aux_sym_variable_definition_token6, + STATE(3996), 2, sym_comment, sym_include, - [152816] = 6, - ACTIONS(3), 1, + [153592] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6087), 1, - sym_identifier, - STATE(1615), 1, - sym_qualified_name, - STATE(3977), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1229), 1, + sym__block_terminator, + STATE(3997), 2, sym_comment, sym_include, - [152836] = 6, + [153612] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4744), 1, - sym__terminator, - ACTIONS(4746), 1, - aux_sym_using_statement_token2, - STATE(3978), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1134), 1, + sym__block_terminator, + STATE(3998), 2, sym_comment, sym_include, - [152856] = 6, + [153632] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6089), 1, + ACTIONS(6135), 1, sym_identifier, - STATE(2678), 1, + STATE(1703), 1, sym_qualified_name, - STATE(3979), 2, + STATE(3999), 2, sym_comment, sym_include, - [152876] = 6, + [153652] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(934), 1, - sym__block_terminator, - STATE(3980), 2, + ACTIONS(6137), 1, + aux_sym_variable_definition_token5, + ACTIONS(6139), 1, + aux_sym_function_parameter_token2, + STATE(4000), 2, sym_comment, sym_include, - [152896] = 6, - ACTIONS(3), 1, + [153672] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6091), 1, - sym_identifier, - STATE(4082), 1, - sym_qualified_name, - STATE(3981), 2, + ACTIONS(6141), 2, + sym__terminator, + anon_sym_COLON, + STATE(4001), 2, sym_comment, sym_include, - [152916] = 6, + [153690] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - STATE(2375), 1, + STATE(2537), 1, sym_query_fields, - STATE(3982), 2, + STATE(4002), 2, sym_comment, sym_include, - [152936] = 6, + [153710] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, + ACTIONS(5711), 1, anon_sym_LPAREN, - STATE(2687), 1, + STATE(2554), 1, sym_query_fields, - STATE(3983), 2, + STATE(4003), 2, sym_comment, sym_include, - [152956] = 6, + [153730] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(6143), 1, + sym__terminator, + ACTIONS(6145), 1, + aux_sym_finally_statement_token1, + STATE(4004), 2, + sym_comment, + sym_include, + [153750] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(921), 1, + STATE(1012), 1, sym__block_terminator, - STATE(3984), 2, + STATE(4005), 2, + sym_comment, + sym_include, + [153770] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6147), 1, + sym_identifier, + STATE(3044), 1, + sym_qualified_name, + STATE(4006), 2, sym_comment, sym_include, - [152976] = 6, + [153790] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(1001), 1, + STATE(1519), 1, sym__block_terminator, - STATE(3985), 2, + STATE(4007), 2, sym_comment, sym_include, - [152996] = 6, + [153810] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6093), 1, + ACTIONS(6149), 2, sym_identifier, - ACTIONS(6095), 1, - aux_sym_input_expression_token2, - STATE(3986), 2, + aux_sym_function_parameter_token1, + STATE(4008), 2, sym_comment, sym_include, - [153016] = 6, + [153828] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6097), 1, + ACTIONS(6151), 1, sym_identifier, - STATE(1712), 1, + STATE(2670), 1, sym_qualified_name, - STATE(3987), 2, + STATE(4009), 2, + sym_comment, + sym_include, + [153848] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1045), 1, + sym__block_terminator, + STATE(4010), 2, + sym_comment, + sym_include, + [153868] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1044), 1, + sym__block_terminator, + STATE(4011), 2, sym_comment, sym_include, - [153036] = 6, + [153888] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6099), 1, + ACTIONS(6153), 1, sym_identifier, - STATE(2969), 1, + STATE(4174), 1, sym_qualified_name, - STATE(3988), 2, + STATE(4012), 2, + sym_comment, + sym_include, + [153908] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6155), 1, + sym_identifier, + ACTIONS(6157), 1, + aux_sym_function_parameter_token1, + STATE(4013), 2, + sym_comment, + sym_include, + [153928] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2427), 1, + anon_sym_RPAREN, + ACTIONS(6159), 1, + anon_sym_, + STATE(4014), 2, sym_comment, sym_include, - [153056] = 6, + [153948] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6101), 1, - aux_sym_variable_definition_token5, - ACTIONS(6103), 1, - aux_sym_variable_definition_token6, - STATE(3989), 2, + ACTIONS(6161), 1, + sym__terminator, + ACTIONS(6163), 1, + aux_sym_primitive_type_token19, + STATE(4015), 2, sym_comment, sym_include, - [153076] = 6, + [153968] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(839), 1, + STATE(1042), 1, sym__block_terminator, - STATE(3990), 2, + STATE(4016), 2, sym_comment, sym_include, - [153096] = 6, + [153988] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(841), 1, + STATE(1014), 1, sym__block_terminator, - STATE(3991), 2, + STATE(4017), 2, sym_comment, sym_include, - [153116] = 6, + [154008] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6105), 1, + ACTIONS(6165), 1, sym__terminator, - ACTIONS(6107), 1, - aux_sym_primitive_type_token19, - STATE(3992), 2, + ACTIONS(6167), 1, + aux_sym_interface_statement_token1, + STATE(4018), 2, sym_comment, sym_include, - [153136] = 6, + [154028] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(844), 1, - sym__block_terminator, - STATE(3993), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2548), 1, + sym_query_fields, + STATE(4019), 2, sym_comment, sym_include, - [153156] = 6, + [154048] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(847), 1, + STATE(1139), 1, sym__block_terminator, - STATE(3994), 2, + STATE(4020), 2, sym_comment, sym_include, - [153176] = 6, + [154068] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(848), 1, + STATE(1041), 1, sym__block_terminator, - STATE(3995), 2, + STATE(4021), 2, sym_comment, sym_include, - [153196] = 6, + [154088] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(1272), 1, + STATE(1336), 1, sym__block_terminator, - STATE(3996), 2, - sym_comment, - sym_include, - [153216] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6109), 1, - aux_sym_primitive_type_token1, - ACTIONS(6111), 1, - aux_sym_event_definition_token2, - STATE(3997), 2, + STATE(4022), 2, sym_comment, sym_include, - [153236] = 6, + [154108] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, + ACTIONS(5591), 1, aux_sym_scope_tuning_token1, - STATE(4069), 1, + STATE(4231), 1, sym_new_expression, - STATE(3998), 2, + STATE(4023), 2, sym_comment, sym_include, - [153256] = 6, + [154128] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2668), 1, - sym_query_fields, - STATE(3999), 2, + ACTIONS(6169), 1, + sym__terminator, + ACTIONS(6171), 1, + aux_sym_catch_statement_token1, + STATE(4024), 2, sym_comment, sym_include, - [153276] = 6, + [154148] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(835), 1, + STATE(1171), 1, sym__block_terminator, - STATE(4000), 2, + STATE(4025), 2, sym_comment, sym_include, - [153296] = 6, + [154168] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6113), 1, - anon_sym_DOT, - ACTIONS(6115), 1, - aux_sym__case_terminator_token1, - STATE(4001), 2, + ACTIONS(6173), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4026), 2, sym_comment, sym_include, - [153316] = 6, + [154186] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(854), 1, - sym__block_terminator, - STATE(4002), 2, + ACTIONS(6175), 1, + sym__terminator, + ACTIONS(6177), 1, + aux_sym_catch_statement_token1, + STATE(4027), 2, sym_comment, sym_include, - [153336] = 5, + [154206] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6117), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4003), 2, + ACTIONS(6179), 2, + sym__terminator, + anon_sym_COLON, + STATE(4028), 2, sym_comment, sym_include, - [153354] = 6, - ACTIONS(3), 1, + [154224] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4980), 1, - anon_sym_RPAREN, - ACTIONS(6119), 1, - anon_sym_, - STATE(4004), 2, + ACTIONS(6181), 1, + sym__terminator, + ACTIONS(6183), 1, + aux_sym_catch_statement_token1, + STATE(4029), 2, sym_comment, sym_include, - [153374] = 6, + [154244] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(855), 1, + STATE(1367), 1, sym__block_terminator, - STATE(4005), 2, + STATE(4030), 2, sym_comment, sym_include, - [153394] = 6, + [154264] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(857), 1, - sym__block_terminator, - STATE(4006), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2549), 1, + sym_query_fields, + STATE(4031), 2, sym_comment, sym_include, - [153414] = 6, - ACTIONS(3), 1, + [154284] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6121), 1, - sym_identifier, - STATE(2683), 1, - sym_qualified_name, - STATE(4007), 2, + ACTIONS(6185), 1, + sym__terminator, + ACTIONS(6187), 1, + aux_sym_interface_statement_token1, + STATE(4032), 2, sym_comment, sym_include, - [153434] = 6, + [154304] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6123), 1, + ACTIONS(6189), 1, sym__terminator, - ACTIONS(6125), 1, - aux_sym_catch_statement_token1, - STATE(4008), 2, + ACTIONS(6191), 1, + aux_sym_interface_statement_token1, + STATE(4033), 2, sym_comment, sym_include, - [153454] = 6, - ACTIONS(59), 1, + [154324] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(981), 1, - sym__block_terminator, - STATE(4009), 2, + ACTIONS(5101), 1, + anon_sym_RPAREN, + ACTIONS(6193), 1, + anon_sym_, + STATE(4034), 2, sym_comment, sym_include, - [153474] = 6, + [154344] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(858), 1, + STATE(1546), 1, sym__block_terminator, - STATE(4010), 2, + STATE(4035), 2, sym_comment, sym_include, - [153494] = 6, + [154364] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2654), 1, - sym_query_fields, - STATE(4011), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1036), 1, + sym__block_terminator, + STATE(4036), 2, sym_comment, sym_include, - [153514] = 6, + [154384] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5387), 1, aux_sym__block_terminator_token1, - STATE(863), 1, + STATE(1252), 1, sym__block_terminator, - STATE(4012), 2, + STATE(4037), 2, sym_comment, sym_include, - [153534] = 6, + [154404] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(865), 1, + STATE(1517), 1, sym__block_terminator, - STATE(4013), 2, + STATE(4038), 2, sym_comment, sym_include, - [153554] = 6, + [154424] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6127), 1, + ACTIONS(6195), 2, sym__terminator, - ACTIONS(6129), 1, - aux_sym_primitive_type_token19, - STATE(4014), 2, + anon_sym_COLON, + STATE(4039), 2, sym_comment, sym_include, - [153574] = 6, + [154442] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(1160), 1, + STATE(1017), 1, sym__block_terminator, - STATE(4015), 2, + STATE(4040), 2, sym_comment, sym_include, - [153594] = 6, + [154462] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6131), 1, - sym__terminator, - ACTIONS(6133), 1, - aux_sym_interface_statement_token1, - STATE(4016), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1034), 1, + sym__block_terminator, + STATE(4041), 2, sym_comment, sym_include, - [153614] = 6, + [154482] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(870), 1, + STATE(1152), 1, sym__block_terminator, - STATE(4017), 2, + STATE(4042), 2, sym_comment, sym_include, - [153634] = 6, + [154502] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6135), 1, - sym__terminator, - ACTIONS(6137), 1, - aux_sym_interface_statement_token1, - STATE(4018), 2, + ACTIONS(6197), 1, + aux_sym_variable_definition_token5, + ACTIONS(6199), 1, + aux_sym_function_parameter_token2, + STATE(4043), 2, sym_comment, sym_include, - [153654] = 6, + [154522] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6139), 1, + ACTIONS(6201), 1, sym_identifier, - STATE(291), 1, + STATE(2630), 1, sym_qualified_name, - STATE(4019), 2, + STATE(4044), 2, sym_comment, sym_include, - [153674] = 6, + [154542] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(871), 1, + STATE(1471), 1, sym__block_terminator, - STATE(4020), 2, - sym_comment, - sym_include, - [153694] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6141), 1, - sym_identifier, - STATE(2111), 1, - sym_qualified_name, - STATE(4021), 2, - sym_comment, - sym_include, - [153714] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6143), 1, - sym_identifier, - ACTIONS(6145), 1, - sym__terminator, - STATE(4022), 2, - sym_comment, - sym_include, - [153734] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6147), 1, - sym_identifier, - ACTIONS(6149), 1, - aux_sym_function_parameter_token1, - STATE(4023), 2, + STATE(4045), 2, sym_comment, sym_include, - [153754] = 6, + [154562] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(881), 1, - sym__block_terminator, - STATE(4024), 2, + ACTIONS(6203), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4046), 2, sym_comment, sym_include, - [153774] = 6, + [154580] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2517), 1, - sym_query_fields, - STATE(4025), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1461), 1, + sym__block_terminator, + STATE(4047), 2, sym_comment, sym_include, - [153794] = 6, - ACTIONS(59), 1, + [154600] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, - aux_sym_scope_tuning_token1, - STATE(4089), 1, - sym_new_expression, - STATE(4026), 2, + ACTIONS(6205), 1, + sym_identifier, + STATE(297), 1, + sym_qualified_name, + STATE(4048), 2, sym_comment, sym_include, - [153814] = 5, + [154620] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6151), 2, + ACTIONS(6207), 1, sym_identifier, - aux_sym_function_parameter_token1, - STATE(4027), 2, + STATE(3045), 1, + sym_qualified_name, + STATE(4049), 2, sym_comment, sym_include, - [153832] = 6, + [154640] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(885), 1, + STATE(1031), 1, sym__block_terminator, - STATE(4028), 2, - sym_comment, - sym_include, - [153852] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6153), 1, - sym__terminator, - ACTIONS(6155), 1, - aux_sym_interface_statement_token1, - STATE(4029), 2, + STATE(4050), 2, sym_comment, sym_include, - [153872] = 5, - ACTIONS(59), 1, + [154660] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6157), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4030), 2, + ACTIONS(6209), 1, + sym_identifier, + STATE(1722), 1, + sym_qualified_name, + STATE(4051), 2, sym_comment, sym_include, - [153890] = 6, + [154680] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, + ACTIONS(5705), 1, aux_sym__block_terminator_token1, - STATE(892), 1, + STATE(1030), 1, sym__block_terminator, - STATE(4031), 2, + STATE(4052), 2, sym_comment, sym_include, - [153910] = 5, + [154700] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6159), 2, + ACTIONS(6211), 1, sym__terminator, - anon_sym_COLON, - STATE(4032), 2, + ACTIONS(6213), 1, + aux_sym_primitive_type_token19, + STATE(4053), 2, sym_comment, sym_include, - [153928] = 6, + [154720] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(898), 1, - sym__block_terminator, - STATE(4033), 2, + ACTIONS(5591), 1, + aux_sym_scope_tuning_token1, + STATE(4336), 1, + sym_new_expression, + STATE(4054), 2, sym_comment, sym_include, - [153948] = 6, + [154740] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5645), 1, - anon_sym_LPAREN, - STATE(2585), 1, - sym_query_fields, - STATE(4034), 2, + ACTIONS(6215), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4055), 2, sym_comment, sym_include, - [153968] = 6, + [154758] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(970), 1, - sym__block_terminator, - STATE(4035), 2, + ACTIONS(6217), 1, + aux_sym_variable_definition_token5, + ACTIONS(6219), 1, + aux_sym_variable_definition_token6, + STATE(4056), 2, sym_comment, sym_include, - [153988] = 6, + [154778] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6161), 1, - sym__terminator, - ACTIONS(6163), 1, - aux_sym_primitive_type_token19, - STATE(4036), 2, - sym_comment, - sym_include, - [154008] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6165), 1, - sym_identifier, - STATE(2541), 1, - sym_qualified_name, - STATE(4037), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1388), 1, + sym__block_terminator, + STATE(4057), 2, sym_comment, sym_include, - [154028] = 6, + [154798] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6167), 1, - sym__terminator, - ACTIONS(6169), 1, - aux_sym_primitive_type_token19, - STATE(4038), 2, + ACTIONS(6221), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4058), 2, sym_comment, sym_include, - [154048] = 6, + [154816] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6171), 1, - aux_sym_variable_definition_token5, - ACTIONS(6173), 1, - aux_sym_function_parameter_token2, - STATE(4039), 2, + ACTIONS(6223), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4059), 2, sym_comment, sym_include, - [154068] = 6, + [154834] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6175), 1, - aux_sym_input_close_statement_token2, - ACTIONS(6177), 1, - aux_sym_output_stream_statement_token1, - STATE(4040), 2, + ACTIONS(6225), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4060), 2, sym_comment, sym_include, - [154088] = 6, + [154852] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5737), 1, aux_sym__block_terminator_token1, - STATE(1313), 1, + STATE(1394), 1, sym__block_terminator, - STATE(4041), 2, + STATE(4061), 2, sym_comment, sym_include, - [154108] = 6, + [154872] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5315), 1, + ACTIONS(5365), 1, aux_sym_on_error_phrase_token1, - STATE(4196), 1, + STATE(4460), 1, sym_on_error_phrase, - STATE(4042), 2, - sym_comment, - sym_include, - [154128] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6177), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(6179), 1, - aux_sym_input_close_statement_token2, - STATE(4043), 2, + STATE(4062), 2, sym_comment, sym_include, - [154148] = 6, + [154892] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(927), 1, - sym__block_terminator, - STATE(4044), 2, - sym_comment, - sym_include, - [154168] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6181), 1, - sym_identifier, - STATE(4293), 1, - sym_qualified_name, - STATE(4045), 2, + ACTIONS(6227), 1, + aux_sym_primitive_type_token1, + ACTIONS(6229), 1, + aux_sym_event_definition_token2, + STATE(4063), 2, sym_comment, sym_include, - [154188] = 6, + [154912] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5297), 1, - aux_sym__block_terminator_token1, - STATE(1335), 1, - sym__block_terminator, - STATE(4046), 2, + ACTIONS(6231), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4064), 2, sym_comment, sym_include, - [154208] = 5, + [154930] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6183), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4047), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1389), 1, + sym__block_terminator, + STATE(4065), 2, sym_comment, sym_include, - [154226] = 6, + [154950] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6185), 1, - aux_sym_using_statement_token2, - ACTIONS(6187), 1, + ACTIONS(5339), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(6233), 1, aux_sym_input_close_statement_token2, - STATE(4048), 2, + STATE(4066), 2, sym_comment, sym_include, - [154246] = 6, + [154970] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6185), 1, - aux_sym_using_statement_token2, - ACTIONS(6189), 1, - aux_sym_input_close_statement_token2, - STATE(4049), 2, + ACTIONS(6235), 1, + sym__terminator, + ACTIONS(6237), 1, + aux_sym_interface_statement_token1, + STATE(4067), 2, sym_comment, sym_include, - [154266] = 6, + [154990] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6191), 1, - sym__terminator, - ACTIONS(6193), 1, - aux_sym_interface_statement_token1, - STATE(4050), 2, + ACTIONS(5387), 1, + aux_sym__block_terminator_token1, + STATE(1494), 1, + sym__block_terminator, + STATE(4068), 2, sym_comment, sym_include, - [154286] = 6, - ACTIONS(3), 1, + [155010] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6195), 1, - sym_identifier, - ACTIONS(6197), 1, - sym__integer_literal, - STATE(4051), 2, + ACTIONS(2449), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4069), 2, sym_comment, sym_include, - [154306] = 5, - ACTIONS(3), 1, + [155028] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(81), 2, - sym__namedot, - sym_identifier, - STATE(4052), 2, + ACTIONS(5737), 1, + aux_sym__block_terminator_token1, + STATE(1403), 1, + sym__block_terminator, + STATE(4070), 2, sym_comment, sym_include, - [154324] = 6, + [155048] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(935), 1, - sym__block_terminator, - STATE(4053), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2710), 1, + sym_query_fields, + STATE(4071), 2, sym_comment, sym_include, - [154344] = 6, + [155068] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6045), 1, - aux_sym__block_terminator_token1, - STATE(937), 1, - sym__block_terminator, - STATE(4054), 2, + ACTIONS(5711), 1, + anon_sym_LPAREN, + STATE(2440), 1, + sym_query_fields, + STATE(4072), 2, sym_comment, sym_include, - [154364] = 5, + [155088] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6199), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4055), 2, + ACTIONS(5705), 1, + aux_sym__block_terminator_token1, + STATE(1021), 1, + sym__block_terminator, + STATE(4073), 2, sym_comment, sym_include, - [154382] = 6, + [155108] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6201), 1, + ACTIONS(6239), 1, sym_identifier, - STATE(1918), 1, + STATE(1901), 1, sym_qualified_name, - STATE(4056), 2, + STATE(4074), 2, sym_comment, sym_include, - [154402] = 6, + [155128] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6203), 1, + ACTIONS(6241), 1, sym_identifier, - ACTIONS(6205), 1, - anon_sym_STAR, - STATE(4057), 2, + ACTIONS(6243), 1, + sym__integer_literal, + STATE(4075), 2, sym_comment, sym_include, - [154422] = 6, + [155148] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6207), 1, + ACTIONS(6245), 1, sym__terminator, - ACTIONS(6209), 1, - aux_sym_primitive_type_token19, - STATE(4058), 2, + ACTIONS(6247), 1, + aux_sym_catch_statement_token1, + STATE(4076), 2, sym_comment, sym_include, - [154442] = 5, + [155168] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5735), 1, - sym__terminator, - STATE(4059), 2, + ACTIONS(6249), 1, + aux_sym_using_statement_token2, + ACTIONS(6251), 1, + aux_sym_input_close_statement_token2, + STATE(4077), 2, sym_comment, sym_include, - [154459] = 5, + [155188] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6211), 1, - sym__terminator, - STATE(4060), 2, + ACTIONS(6249), 1, + aux_sym_using_statement_token2, + ACTIONS(6253), 1, + aux_sym_input_close_statement_token2, + STATE(4078), 2, sym_comment, sym_include, - [154476] = 5, + [155208] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3132), 1, - anon_sym_COLON, - STATE(4061), 2, + ACTIONS(6165), 1, + sym__terminator, + STATE(4079), 2, sym_comment, sym_include, - [154493] = 5, + [155225] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6213), 1, - anon_sym_RPAREN, - STATE(4062), 2, + ACTIONS(6255), 1, + sym__terminator, + STATE(4080), 2, sym_comment, sym_include, - [154510] = 5, + [155242] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6191), 1, + ACTIONS(6257), 1, sym__terminator, - STATE(4063), 2, + STATE(4081), 2, sym_comment, sym_include, - [154527] = 5, + [155259] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3846), 1, - anon_sym_COLON, - STATE(4064), 2, - sym_comment, - sym_include, - [154544] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6215), 1, - sym_identifier, - STATE(4065), 2, + ACTIONS(6259), 1, + sym__terminator, + STATE(4082), 2, sym_comment, sym_include, - [154561] = 5, + [155276] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6217), 1, - sym__terminator, - STATE(4066), 2, + ACTIONS(6261), 1, + anon_sym_COLON, + STATE(4083), 2, sym_comment, sym_include, - [154578] = 5, + [155293] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4925), 1, - anon_sym_LPAREN, - STATE(4067), 2, + ACTIONS(5118), 1, + sym__terminator, + STATE(4084), 2, sym_comment, sym_include, - [154595] = 5, - ACTIONS(59), 1, + [155310] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6219), 1, - sym__terminator, - STATE(4068), 2, + ACTIONS(6263), 1, + sym_identifier, + STATE(4085), 2, sym_comment, sym_include, - [154612] = 5, + [155327] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6221), 1, - sym__terminator, - STATE(4069), 2, + ACTIONS(3126), 1, + anon_sym_COLON, + STATE(4086), 2, sym_comment, sym_include, - [154629] = 5, + [155344] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6223), 1, - sym__terminator, - STATE(4070), 2, + ACTIONS(5114), 1, + anon_sym_LPAREN, + STATE(4087), 2, sym_comment, sym_include, - [154646] = 5, + [155361] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6225), 1, + ACTIONS(6265), 1, sym_identifier, - STATE(4071), 2, + STATE(4088), 2, + sym_comment, + sym_include, + [155378] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3855), 1, + anon_sym_COLON, + STATE(4089), 2, sym_comment, sym_include, - [154663] = 5, + [155395] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6227), 1, + ACTIONS(6267), 1, sym_identifier, - STATE(4072), 2, + STATE(4090), 2, sym_comment, sym_include, - [154680] = 5, + [155412] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4927), 1, - sym__terminator, - STATE(4073), 2, + ACTIONS(6269), 1, + anon_sym_LPAREN, + STATE(4091), 2, sym_comment, sym_include, - [154697] = 5, + [155429] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6229), 1, + ACTIONS(6271), 1, sym_identifier, - STATE(4074), 2, + STATE(4092), 2, sym_comment, sym_include, - [154714] = 5, - ACTIONS(59), 1, + [155446] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4137), 1, - anon_sym_COLON, - STATE(4075), 2, + ACTIONS(6273), 1, + sym_identifier, + STATE(4093), 2, sym_comment, sym_include, - [154731] = 5, + [155463] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4985), 1, - anon_sym_COLON, - STATE(4076), 2, + ACTIONS(6275), 1, + aux_sym_property_definition_token1, + STATE(4094), 2, sym_comment, sym_include, - [154748] = 5, + [155480] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6231), 1, + ACTIONS(6277), 1, sym__terminator, - STATE(4077), 2, + STATE(4095), 2, sym_comment, sym_include, - [154765] = 5, - ACTIONS(59), 1, + [155497] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3811), 1, - anon_sym_COLON, - STATE(4078), 2, + ACTIONS(6279), 1, + sym_identifier, + STATE(4096), 2, sym_comment, sym_include, - [154782] = 5, + [155514] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6233), 1, + ACTIONS(6281), 1, sym_identifier, - STATE(4079), 2, + STATE(4097), 2, sym_comment, sym_include, - [154799] = 5, + [155531] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3354), 1, + ACTIONS(3782), 1, anon_sym_COLON, - STATE(4080), 2, + STATE(4098), 2, sym_comment, sym_include, - [154816] = 5, + [155548] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6161), 1, + ACTIONS(6283), 1, sym__terminator, - STATE(4081), 2, + STATE(4099), 2, sym_comment, sym_include, - [154833] = 5, - ACTIONS(59), 1, + [155565] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4960), 1, - sym__terminator, - STATE(4082), 2, + ACTIONS(6285), 1, + sym_identifier, + STATE(4100), 2, sym_comment, sym_include, - [154850] = 5, + [155582] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(6287), 1, sym__terminator, - STATE(4083), 2, + STATE(4101), 2, sym_comment, sym_include, - [154867] = 5, + [155599] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6153), 1, + ACTIONS(6235), 1, sym__terminator, - STATE(4084), 2, + STATE(4102), 2, sym_comment, sym_include, - [154884] = 5, + [155616] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6235), 1, + ACTIONS(6289), 1, sym_identifier, - STATE(4085), 2, + STATE(4103), 2, sym_comment, sym_include, - [154901] = 5, + [155633] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3026), 1, - anon_sym_COLON, - STATE(4086), 2, + ACTIONS(5134), 1, + sym__terminator, + STATE(4104), 2, sym_comment, sym_include, - [154918] = 5, + [155650] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6237), 1, + ACTIONS(5138), 1, sym__terminator, - STATE(4087), 2, + STATE(4105), 2, sym_comment, sym_include, - [154935] = 5, + [155667] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6239), 1, - sym__terminator, - STATE(4088), 2, + ACTIONS(3114), 1, + anon_sym_COLON, + STATE(4106), 2, sym_comment, sym_include, - [154952] = 5, + [155684] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6241), 1, - sym__terminator, - STATE(4089), 2, + ACTIONS(6291), 1, + aux_sym_buffer_definition_token2, + STATE(4107), 2, sym_comment, sym_include, - [154969] = 5, + [155701] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6243), 1, - sym__terminator, - STATE(4090), 2, + ACTIONS(6293), 1, + aux_sym_buffer_definition_token2, + STATE(4108), 2, sym_comment, sym_include, - [154986] = 5, + [155718] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4972), 1, - sym__terminator, - STATE(4091), 2, + ACTIONS(6227), 1, + aux_sym_primitive_type_token1, + STATE(4109), 2, sym_comment, sym_include, - [155003] = 5, + [155735] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4917), 1, - sym__terminator, - STATE(4092), 2, + ACTIONS(6295), 1, + anon_sym_LPAREN, + STATE(4110), 2, sym_comment, sym_include, - [155020] = 5, + [155752] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6135), 1, + ACTIONS(5140), 1, sym__terminator, - STATE(4093), 2, + STATE(4111), 2, sym_comment, sym_include, - [155037] = 5, + [155769] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6245), 1, + ACTIONS(6211), 1, sym__terminator, - STATE(4094), 2, + STATE(4112), 2, sym_comment, sym_include, - [155054] = 5, + [155786] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2636), 1, - aux_sym__block_terminator_token1, - STATE(4095), 2, + ACTIONS(6297), 1, + sym__terminator, + STATE(4113), 2, + sym_comment, + sym_include, + [155803] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6299), 1, + sym_identifier, + STATE(4114), 2, sym_comment, sym_include, - [155071] = 5, + [155820] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4247), 1, - anon_sym_COLON, - STATE(4096), 2, + ACTIONS(2626), 1, + aux_sym__block_terminator_token1, + STATE(4115), 2, + sym_comment, + sym_include, + [155837] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6301), 1, + sym_identifier, + STATE(4116), 2, sym_comment, sym_include, - [155088] = 5, + [155854] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6127), 1, + ACTIONS(6303), 1, sym__terminator, - STATE(4097), 2, + STATE(4117), 2, sym_comment, sym_include, - [155105] = 5, + [155871] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6247), 1, + ACTIONS(6305), 1, sym_identifier, - STATE(4098), 2, + STATE(4118), 2, sym_comment, sym_include, - [155122] = 5, + [155888] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6249), 1, - aux_sym__block_terminator_token1, - STATE(4099), 2, + ACTIONS(6307), 1, + sym__terminator, + STATE(4119), 2, sym_comment, sym_include, - [155139] = 5, + [155905] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6251), 1, - aux_sym__block_terminator_token1, - STATE(4100), 2, + ACTIONS(6309), 1, + sym__terminator, + STATE(4120), 2, sym_comment, sym_include, - [155156] = 5, + [155922] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6253), 1, + ACTIONS(6311), 1, sym_identifier, - STATE(4101), 2, + STATE(4121), 2, sym_comment, sym_include, - [155173] = 5, + [155939] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6255), 1, - anon_sym_LPAREN, - STATE(4102), 2, + ACTIONS(6313), 1, + sym__terminator, + STATE(4122), 2, sym_comment, sym_include, - [155190] = 5, + [155956] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6257), 1, + ACTIONS(5106), 1, sym__terminator, - STATE(4103), 2, + STATE(4123), 2, sym_comment, sym_include, - [155207] = 5, + [155973] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6259), 1, + ACTIONS(6315), 1, sym_identifier, - STATE(4104), 2, + STATE(4124), 2, sym_comment, sym_include, - [155224] = 5, + [155990] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, - anon_sym_LPAREN, - STATE(4105), 2, + ACTIONS(6317), 1, + sym__terminator, + STATE(4125), 2, sym_comment, sym_include, - [155241] = 5, + [156007] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3605), 1, - aux_sym_property_definition_token1, - STATE(4106), 2, + ACTIONS(6319), 1, + sym__terminator, + STATE(4126), 2, sym_comment, sym_include, - [155258] = 5, + [156024] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6263), 1, - aux_sym_data_source_definition_token1, - STATE(4107), 2, + ACTIONS(6321), 1, + sym__terminator, + STATE(4127), 2, sym_comment, sym_include, - [155275] = 5, - ACTIONS(3), 1, + [156041] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6265), 1, - sym_identifier, - STATE(4108), 2, + ACTIONS(6323), 1, + sym__terminator, + STATE(4128), 2, sym_comment, sym_include, - [155292] = 5, - ACTIONS(3), 1, + [156058] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6267), 1, - sym_identifier, - STATE(4109), 2, + ACTIONS(6325), 1, + aux_sym__block_terminator_token1, + STATE(4129), 2, sym_comment, sym_include, - [155309] = 5, - ACTIONS(59), 1, + [156075] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6269), 1, - sym__terminator, - STATE(4110), 2, + ACTIONS(6327), 1, + sym_identifier, + STATE(4130), 2, sym_comment, sym_include, - [155326] = 5, + [156092] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6271), 1, - aux_sym_function_parameter_token1, - STATE(4111), 2, + ACTIONS(6189), 1, + sym__terminator, + STATE(4131), 2, sym_comment, sym_include, - [155343] = 5, + [156109] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4382), 1, + ACTIONS(4323), 1, anon_sym_COLON, - STATE(4112), 2, + STATE(4132), 2, sym_comment, sym_include, - [155360] = 5, + [156126] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6273), 1, + ACTIONS(6185), 1, sym__terminator, - STATE(4113), 2, + STATE(4133), 2, sym_comment, sym_include, - [155377] = 5, + [156143] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6275), 1, - sym__terminator, - STATE(4114), 2, + ACTIONS(6329), 1, + aux_sym__block_terminator_token1, + STATE(4134), 2, sym_comment, sym_include, - [155394] = 5, + [156160] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3204), 1, + ACTIONS(3297), 1, aux_sym__block_terminator_token1, - STATE(4115), 2, + STATE(4135), 2, sym_comment, sym_include, - [155411] = 5, - ACTIONS(3), 1, + [156177] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6277), 1, - sym_identifier, - STATE(4116), 2, + ACTIONS(6331), 1, + anon_sym_DOT, + STATE(4136), 2, sym_comment, sym_include, - [155428] = 5, - ACTIONS(3), 1, + [156194] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6279), 1, - sym_identifier, - STATE(4117), 2, + ACTIONS(4235), 1, + anon_sym_COLON, + STATE(4137), 2, sym_comment, sym_include, - [155445] = 5, + [156211] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6281), 1, + ACTIONS(6175), 1, sym__terminator, - STATE(4118), 2, + STATE(4138), 2, sym_comment, sym_include, - [155462] = 5, + [156228] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6283), 1, - anon_sym_COLON, - STATE(4119), 2, + ACTIONS(6333), 1, + anon_sym_RPAREN, + STATE(4139), 2, sym_comment, sym_include, - [155479] = 5, + [156245] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3352), 1, + ACTIONS(3405), 1, anon_sym_COLON, - STATE(4120), 2, + STATE(4140), 2, sym_comment, sym_include, - [155496] = 5, + [156262] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6285), 1, - aux_sym_buffer_definition_token2, - STATE(4121), 2, + ACTIONS(6335), 1, + aux_sym__block_terminator_token1, + STATE(4141), 2, sym_comment, sym_include, - [155513] = 5, + [156279] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6287), 1, - anon_sym_COLON, - STATE(4122), 2, + ACTIONS(5152), 1, + sym__terminator, + STATE(4142), 2, sym_comment, sym_include, - [155530] = 5, - ACTIONS(3), 1, + [156296] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6289), 1, - sym_identifier, - STATE(4123), 2, + ACTIONS(6337), 1, + anon_sym_COLON, + STATE(4143), 2, sym_comment, sym_include, - [155547] = 5, - ACTIONS(3), 1, + [156313] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6291), 1, - sym_identifier, - STATE(4124), 2, + ACTIONS(6339), 1, + anon_sym_COLON, + STATE(4144), 2, sym_comment, sym_include, - [155564] = 5, + [156330] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6293), 1, - aux_sym_buffer_definition_token2, - STATE(4125), 2, + ACTIONS(6341), 1, + sym__terminator, + STATE(4145), 2, sym_comment, sym_include, - [155581] = 5, + [156347] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6295), 1, - anon_sym_LPAREN, - STATE(4126), 2, + ACTIONS(6343), 1, + anon_sym_COLON, + STATE(4146), 2, sym_comment, sym_include, - [155598] = 5, + [156364] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6297), 1, + ACTIONS(6345), 1, sym_identifier, - STATE(4127), 2, + STATE(4147), 2, sym_comment, sym_include, - [155615] = 5, + [156381] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6207), 1, - sym__terminator, - STATE(4128), 2, + ACTIONS(6347), 1, + aux_sym__block_terminator_token1, + STATE(4148), 2, sym_comment, sym_include, - [155632] = 5, + [156398] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6079), 1, - aux_sym_primitive_type_token1, - STATE(4129), 2, + ACTIONS(6349), 1, + anon_sym_COLON, + STATE(4149), 2, sym_comment, sym_include, - [155649] = 5, - ACTIONS(59), 1, + [156415] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4938), 1, - sym__terminator, - STATE(4130), 2, + ACTIONS(6351), 1, + sym_identifier, + STATE(4150), 2, sym_comment, sym_include, - [155666] = 5, + [156432] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6299), 1, - sym__terminator, - STATE(4131), 2, + ACTIONS(6353), 1, + anon_sym_LPAREN, + STATE(4151), 2, sym_comment, sym_include, - [155683] = 5, + [156449] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6301), 1, + ACTIONS(6355), 1, sym_identifier, - STATE(4132), 2, + STATE(4152), 2, sym_comment, sym_include, - [155700] = 5, - ACTIONS(59), 1, + [156466] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6303), 1, - sym__terminator, - STATE(4133), 2, + ACTIONS(6357), 1, + sym_identifier, + STATE(4153), 2, sym_comment, sym_include, - [155717] = 5, + [156483] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6305), 1, + ACTIONS(6359), 1, sym_identifier, - STATE(4134), 2, + STATE(4154), 2, sym_comment, sym_include, - [155734] = 5, + [156500] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6307), 1, - aux_sym_buffer_definition_token2, - STATE(4135), 2, + ACTIONS(6161), 1, + sym__terminator, + STATE(4155), 2, sym_comment, sym_include, - [155751] = 5, + [156517] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6309), 1, - sym__terminator, - STATE(4136), 2, + ACTIONS(6361), 1, + anon_sym_RPAREN, + STATE(4156), 2, sym_comment, sym_include, - [155768] = 5, + [156534] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6311), 1, + ACTIONS(6121), 1, sym__terminator, - STATE(4137), 2, + STATE(4157), 2, sym_comment, sym_include, - [155785] = 5, + [156551] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6313), 1, - anon_sym_RBRACE, - STATE(4138), 2, + ACTIONS(6363), 1, + aux_sym_buffer_definition_token2, + STATE(4158), 2, sym_comment, sym_include, - [155802] = 5, + [156568] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6315), 1, - aux_sym_buffer_definition_token2, - STATE(4139), 2, + ACTIONS(5112), 1, + anon_sym_COLON, + STATE(4159), 2, sym_comment, sym_include, - [155819] = 5, + [156585] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6317), 1, + ACTIONS(6143), 1, sym__terminator, - STATE(4140), 2, + STATE(4160), 2, sym_comment, sym_include, - [155836] = 5, + [156602] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6319), 1, - sym__terminator, - STATE(4141), 2, + ACTIONS(6125), 1, + aux_sym_primitive_type_token1, + STATE(4161), 2, sym_comment, sym_include, - [155853] = 5, + [156619] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4895), 1, - anon_sym_COLON, - STATE(4142), 2, + ACTIONS(5087), 1, + sym__terminator, + STATE(4162), 2, sym_comment, sym_include, - [155870] = 5, + [156636] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4758), 1, + ACTIONS(4786), 1, anon_sym_COLON, - STATE(4143), 2, + STATE(4163), 2, sym_comment, sym_include, - [155887] = 5, - ACTIONS(59), 1, + [156653] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6321), 1, - anon_sym_RBRACE, - STATE(4144), 2, + ACTIONS(6365), 1, + sym_identifier, + STATE(4164), 2, sym_comment, sym_include, - [155904] = 5, + [156670] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6323), 1, + ACTIONS(6367), 1, aux_sym__block_terminator_token1, - STATE(4145), 2, + STATE(4165), 2, sym_comment, sym_include, - [155921] = 5, + [156687] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5111), 1, + ACTIONS(4929), 1, aux_sym_do_block_token1, - STATE(4146), 2, + STATE(4166), 2, sym_comment, sym_include, - [155938] = 5, + [156704] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6325), 1, - anon_sym_RBRACE, - STATE(4147), 2, + ACTIONS(6369), 1, + sym__terminator, + STATE(4167), 2, sym_comment, sym_include, - [155955] = 5, + [156721] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3315), 1, + ACTIONS(3415), 1, anon_sym_COLON, - STATE(4148), 2, + STATE(4168), 2, sym_comment, sym_include, - [155972] = 5, + [156738] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6327), 1, - aux_sym__block_terminator_token1, - STATE(4149), 2, + ACTIONS(4191), 1, + anon_sym_COLON, + STATE(4169), 2, sym_comment, sym_include, - [155989] = 5, + [156755] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6329), 1, - sym__integer_literal, - STATE(4150), 2, + ACTIONS(5154), 1, + anon_sym_COLON, + STATE(4170), 2, sym_comment, sym_include, - [156006] = 5, + [156772] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6331), 1, + ACTIONS(6371), 1, sym__terminator, - STATE(4151), 2, + STATE(4171), 2, sym_comment, sym_include, - [156023] = 5, + [156789] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6333), 1, - anon_sym_RPAREN, - STATE(4152), 2, - sym_comment, - sym_include, - [156040] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6335), 1, - sym_identifier, - STATE(4153), 2, + ACTIONS(6373), 1, + anon_sym_LPAREN, + STATE(4172), 2, sym_comment, sym_include, - [156057] = 5, + [156806] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4233), 1, + ACTIONS(6375), 1, anon_sym_COLON, - STATE(4154), 2, + STATE(4173), 2, sym_comment, sym_include, - [156074] = 5, + [156823] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6337), 1, + ACTIONS(5077), 1, sym__terminator, - STATE(4155), 2, + STATE(4174), 2, sym_comment, sym_include, - [156091] = 5, + [156840] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6339), 1, - sym__terminator, - STATE(4156), 2, + ACTIONS(6377), 1, + aux_sym_buffer_definition_token2, + STATE(4175), 2, sym_comment, sym_include, - [156108] = 5, + [156857] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6341), 1, + ACTIONS(5075), 1, sym__terminator, - STATE(4157), 2, + STATE(4176), 2, sym_comment, sym_include, - [156125] = 5, + [156874] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6343), 1, - aux_sym_do_block_token1, - STATE(4158), 2, + ACTIONS(6379), 1, + sym__terminator, + STATE(4177), 2, sym_comment, sym_include, - [156142] = 5, + [156891] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5851), 1, - anon_sym_DOT, - STATE(4159), 2, + ACTIONS(6381), 1, + aux_sym_buffer_definition_token2, + STATE(4178), 2, sym_comment, sym_include, - [156159] = 5, + [156908] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_COLON, - STATE(4160), 2, + ACTIONS(6383), 1, + sym__terminator, + STATE(4179), 2, sym_comment, sym_include, - [156176] = 5, - ACTIONS(3), 1, + [156925] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6345), 1, - sym_identifier, - STATE(4161), 2, + ACTIONS(3348), 1, + anon_sym_COLON, + STATE(4180), 2, sym_comment, sym_include, - [156193] = 5, - ACTIONS(3), 1, + [156942] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6347), 1, - sym_identifier, - STATE(4162), 2, + ACTIONS(4997), 1, + aux_sym_do_block_token1, + STATE(4181), 2, sym_comment, sym_include, - [156210] = 5, - ACTIONS(3), 1, + [156959] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6349), 1, - sym_identifier, - STATE(4163), 2, + ACTIONS(6385), 1, + aux_sym__block_terminator_token1, + STATE(4182), 2, sym_comment, sym_include, - [156227] = 5, + [156976] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6351), 1, - aux_sym_property_definition_token1, - STATE(4164), 2, + ACTIONS(4847), 1, + anon_sym_COLON, + STATE(4183), 2, sym_comment, sym_include, - [156244] = 5, - ACTIONS(3), 1, + [156993] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6353), 1, - sym_identifier, - STATE(4165), 2, + ACTIONS(6387), 1, + sym__terminator, + STATE(4184), 2, sym_comment, sym_include, - [156261] = 5, + [157010] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6355), 1, - anon_sym_LPAREN, - STATE(4166), 2, + ACTIONS(6389), 1, + sym__terminator, + STATE(4185), 2, sym_comment, sym_include, - [156278] = 5, + [157027] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6357), 1, + ACTIONS(6391), 1, sym_identifier, - STATE(4167), 2, + STATE(4186), 2, sym_comment, sym_include, - [156295] = 5, + [157044] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6359), 1, - anon_sym_COLON, - STATE(4168), 2, + ACTIONS(6067), 1, + sym__terminator, + STATE(4187), 2, sym_comment, sym_include, - [156312] = 5, - ACTIONS(59), 1, + [157061] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6361), 1, - aux_sym__block_terminator_token1, - STATE(4169), 2, + ACTIONS(6393), 1, + sym_identifier, + STATE(4188), 2, sym_comment, sym_include, - [156329] = 5, + [157078] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6363), 1, + ACTIONS(6053), 1, sym__terminator, - STATE(4170), 2, + STATE(4189), 2, sym_comment, sym_include, - [156346] = 5, + [157095] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6063), 1, - sym__terminator, - STATE(4171), 2, + ACTIONS(6395), 1, + aux_sym__block_terminator_token1, + STATE(4190), 2, sym_comment, sym_include, - [156363] = 5, + [157112] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6365), 1, - anon_sym_DOT, - STATE(4172), 2, + ACTIONS(6397), 1, + aux_sym_input_expression_token2, + STATE(4191), 2, sym_comment, sym_include, - [156380] = 5, + [157129] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4885), 1, - anon_sym_COLON, - STATE(4173), 2, + ACTIONS(5071), 1, + sym__terminator, + STATE(4192), 2, sym_comment, sym_include, - [156397] = 5, + [157146] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4443), 1, + ACTIONS(5069), 1, anon_sym_COLON, - STATE(4174), 2, + STATE(4193), 2, sym_comment, sym_include, - [156414] = 5, + [157163] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6367), 1, + ACTIONS(4340), 1, anon_sym_COLON, - STATE(4175), 2, + STATE(4194), 2, sym_comment, sym_include, - [156431] = 5, + [157180] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6369), 1, - sym__terminator, - STATE(4176), 2, + ACTIONS(6399), 1, + anon_sym_RBRACE, + STATE(4195), 2, sym_comment, sym_include, - [156448] = 5, + [157197] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6371), 1, + ACTIONS(6401), 1, sym__terminator, - STATE(4177), 2, + STATE(4196), 2, sym_comment, sym_include, - [156465] = 5, + [157214] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6047), 1, - anon_sym_DOT, - STATE(4178), 2, + ACTIONS(6403), 1, + sym__terminator, + STATE(4197), 2, sym_comment, sym_include, - [156482] = 5, + [157231] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4748), 1, + ACTIONS(3411), 1, anon_sym_COLON, - STATE(4179), 2, - sym_comment, - sym_include, - [156499] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6373), 1, - sym_identifier, - STATE(4180), 2, + STATE(4198), 2, sym_comment, sym_include, - [156516] = 5, + [157248] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6375), 1, + ACTIONS(6045), 1, sym__terminator, - STATE(4181), 2, + STATE(4199), 2, sym_comment, sym_include, - [156533] = 5, + [157265] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6377), 1, - sym__terminator, - STATE(4182), 2, + ACTIONS(6405), 1, + anon_sym_LPAREN, + STATE(4200), 2, sym_comment, sym_include, - [156550] = 5, - ACTIONS(59), 1, + [157282] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6379), 1, - sym__terminator, - STATE(4183), 2, + ACTIONS(6407), 1, + sym_identifier, + STATE(4201), 2, sym_comment, sym_include, - [156567] = 5, + [157299] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6381), 1, - anon_sym_COMMA, - STATE(4184), 2, + ACTIONS(6409), 1, + anon_sym_LPAREN, + STATE(4202), 2, sym_comment, sym_include, - [156584] = 5, + [157316] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6383), 1, + ACTIONS(6411), 1, sym__terminator, - STATE(4185), 2, + STATE(4203), 2, sym_comment, sym_include, - [156601] = 5, + [157333] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3344), 1, - anon_sym_COLON, - STATE(4186), 2, + ACTIONS(3701), 1, + aux_sym_property_definition_token1, + STATE(4204), 2, sym_comment, sym_include, - [156618] = 5, + [157350] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6385), 1, - anon_sym_RBRACE, - STATE(4187), 2, + ACTIONS(6041), 1, + sym__terminator, + STATE(4205), 2, sym_comment, sym_include, - [156635] = 5, + [157367] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4874), 1, - aux_sym_do_block_token1, - STATE(4188), 2, + ACTIONS(3271), 1, + aux_sym__block_terminator_token1, + STATE(4206), 2, sym_comment, sym_include, - [156652] = 5, + [157384] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6387), 1, - anon_sym_RPAREN, - STATE(4189), 2, + ACTIONS(6413), 1, + sym__terminator, + STATE(4207), 2, sym_comment, sym_include, - [156669] = 5, + [157401] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6389), 1, - aux_sym__block_terminator_token1, - STATE(4190), 2, + ACTIONS(4362), 1, + anon_sym_COLON, + STATE(4208), 2, sym_comment, sym_include, - [156686] = 5, + [157418] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6391), 1, - sym__integer_literal, - STATE(4191), 2, + ACTIONS(6415), 1, + aux_sym_data_source_definition_token1, + STATE(4209), 2, sym_comment, sym_include, - [156703] = 5, - ACTIONS(59), 1, + [157435] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6393), 1, - anon_sym_COMMA, - STATE(4192), 2, + ACTIONS(6417), 1, + sym_identifier, + STATE(4210), 2, sym_comment, sym_include, - [156720] = 5, - ACTIONS(59), 1, + [157452] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6395), 1, - anon_sym_RBRACE, - STATE(4193), 2, + ACTIONS(6419), 1, + sym_identifier, + STATE(4211), 2, sym_comment, sym_include, - [156737] = 5, + [157469] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6397), 1, - sym__terminator, - STATE(4194), 2, + ACTIONS(6421), 1, + aux_sym_function_parameter_token1, + STATE(4212), 2, sym_comment, sym_include, - [156754] = 5, + [157486] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6399), 1, - anon_sym_COMMA, - STATE(4195), 2, + ACTIONS(6423), 1, + sym__terminator, + STATE(4213), 2, sym_comment, sym_include, - [156771] = 5, + [157503] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6401), 1, - sym__terminator, - STATE(4196), 2, + ACTIONS(6425), 1, + aux_sym_buffer_definition_token2, + STATE(4214), 2, sym_comment, sym_include, - [156788] = 5, - ACTIONS(59), 1, + [157520] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6403), 1, - sym__terminator, - STATE(4197), 2, + ACTIONS(6427), 1, + sym_identifier, + STATE(4215), 2, sym_comment, sym_include, - [156805] = 5, - ACTIONS(59), 1, + [157537] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6405), 1, - sym__terminator, - STATE(4198), 2, + ACTIONS(6429), 1, + sym_identifier, + STATE(4216), 2, sym_comment, sym_include, - [156822] = 5, + [157554] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6407), 1, - anon_sym_LPAREN, - STATE(4199), 2, + ACTIONS(6431), 1, + aux_sym_buffer_definition_token2, + STATE(4217), 2, sym_comment, sym_include, - [156839] = 5, + [157571] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6409), 1, - anon_sym_COLON, - STATE(4200), 2, + ACTIONS(6433), 1, + sym__terminator, + STATE(4218), 2, sym_comment, sym_include, - [156856] = 5, + [157588] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6411), 1, - anon_sym_COLON, - STATE(4201), 2, + ACTIONS(6435), 1, + sym__terminator, + STATE(4219), 2, sym_comment, sym_include, - [156873] = 5, + [157605] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4678), 1, + ACTIONS(6437), 1, anon_sym_COLON, - STATE(4202), 2, + STATE(4220), 2, sym_comment, sym_include, - [156890] = 5, + [157622] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(213), 1, - sym__terminator, - STATE(4203), 2, + ACTIONS(6439), 1, + anon_sym_COLON, + STATE(4221), 2, sym_comment, sym_include, - [156907] = 5, - ACTIONS(59), 1, + [157639] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6413), 1, - sym__terminator, - STATE(4204), 2, + ACTIONS(6441), 1, + sym_identifier, + STATE(4222), 2, sym_comment, sym_include, - [156924] = 5, + [157656] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6415), 1, + ACTIONS(6443), 1, sym_identifier, - STATE(4205), 2, + STATE(4223), 2, sym_comment, sym_include, - [156941] = 5, + [157673] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6417), 1, + ACTIONS(6445), 1, sym__terminator, - STATE(4206), 2, + STATE(4224), 2, sym_comment, sym_include, - [156958] = 5, + [157690] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6419), 1, + ACTIONS(6447), 1, sym__terminator, - STATE(4207), 2, + STATE(4225), 2, sym_comment, sym_include, - [156975] = 5, + [157707] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6421), 1, - sym__terminator, - STATE(4208), 2, + ACTIONS(6449), 1, + aux_sym__block_terminator_token1, + STATE(4226), 2, + sym_comment, + sym_include, + [157724] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6451), 1, + sym_identifier, + STATE(4227), 2, sym_comment, sym_include, - [156992] = 5, + [157741] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6423), 1, - anon_sym_RBRACE, - STATE(4209), 2, + ACTIONS(2628), 1, + aux_sym__block_terminator_token1, + STATE(4228), 2, sym_comment, sym_include, - [157009] = 5, + [157758] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6425), 1, + ACTIONS(6453), 1, sym_identifier, - STATE(4210), 2, + STATE(4229), 2, sym_comment, sym_include, - [157026] = 5, + [157775] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6427), 1, + ACTIONS(6455), 1, sym__terminator, - STATE(4211), 2, + STATE(4230), 2, sym_comment, sym_include, - [157043] = 5, - ACTIONS(3), 1, + [157792] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6429), 1, - sym_identifier, - STATE(4212), 2, + ACTIONS(6457), 1, + sym__terminator, + STATE(4231), 2, sym_comment, sym_include, - [157060] = 5, + [157809] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6431), 1, - sym__integer_literal, - STATE(4213), 2, + ACTIONS(6459), 1, + sym__terminator, + STATE(4232), 2, sym_comment, sym_include, - [157077] = 5, - ACTIONS(3), 1, + [157826] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6433), 1, - sym_identifier, - STATE(4214), 2, + ACTIONS(6461), 1, + sym__terminator, + STATE(4233), 2, sym_comment, sym_include, - [157094] = 5, + [157843] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6435), 1, - sym__terminator, - STATE(4215), 2, + ACTIONS(6463), 1, + anon_sym_LPAREN, + STATE(4234), 2, sym_comment, sym_include, - [157111] = 5, + [157860] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6437), 1, - anon_sym_RPAREN, - STATE(4216), 2, + ACTIONS(3200), 1, + anon_sym_COLON, + STATE(4235), 2, sym_comment, sym_include, - [157128] = 5, - ACTIONS(3), 1, + [157877] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6439), 1, - sym_identifier, - STATE(4217), 2, + ACTIONS(6465), 1, + aux_sym_primitive_type_token1, + STATE(4236), 2, sym_comment, sym_include, - [157145] = 5, + [157894] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4856), 1, + ACTIONS(6467), 1, sym__terminator, - STATE(4218), 2, + STATE(4237), 2, sym_comment, sym_include, - [157162] = 5, + [157911] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6441), 1, - sym__terminator, - STATE(4219), 2, + ACTIONS(5065), 1, + anon_sym_COLON, + STATE(4238), 2, sym_comment, sym_include, - [157179] = 5, - ACTIONS(3), 1, + [157928] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6443), 1, - sym_identifier, - STATE(4220), 2, + ACTIONS(6469), 1, + sym__terminator, + STATE(4239), 2, sym_comment, sym_include, - [157196] = 5, + [157945] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6445), 1, - aux_sym__block_terminator_token1, - STATE(4221), 2, + ACTIONS(6471), 1, + sym__terminator, + STATE(4240), 2, sym_comment, sym_include, - [157213] = 5, + [157962] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6113), 1, - anon_sym_DOT, - STATE(4222), 2, + ACTIONS(5995), 1, + sym__terminator, + STATE(4241), 2, sym_comment, sym_include, - [157230] = 5, + [157979] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6447), 1, + ACTIONS(6473), 1, aux_sym__block_terminator_token1, - STATE(4223), 2, + STATE(4242), 2, sym_comment, sym_include, - [157247] = 5, + [157996] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6449), 1, + ACTIONS(6475), 1, sym__terminator, - STATE(4224), 2, + STATE(4243), 2, sym_comment, sym_include, - [157264] = 5, + [158013] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6451), 1, - sym__terminator, - STATE(4225), 2, + ACTIONS(3950), 1, + anon_sym_COLON, + STATE(4244), 2, + sym_comment, + sym_include, + [158030] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6477), 1, + sym_identifier, + STATE(4245), 2, sym_comment, sym_include, - [157281] = 5, + [158047] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3340), 1, + ACTIONS(3332), 1, anon_sym_COLON, - STATE(4226), 2, + STATE(4246), 2, sym_comment, sym_include, - [157298] = 5, + [158064] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3265), 1, + ACTIONS(6479), 1, aux_sym__block_terminator_token1, - STATE(4227), 2, + STATE(4247), 2, sym_comment, sym_include, - [157315] = 5, + [158081] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6453), 1, - sym__terminator, - STATE(4228), 2, + ACTIONS(6481), 1, + anon_sym_COLON, + STATE(4248), 2, sym_comment, sym_include, - [157332] = 5, + [158098] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6455), 1, + ACTIONS(6483), 1, sym_identifier, - STATE(4229), 2, + STATE(4249), 2, sym_comment, sym_include, - [157349] = 5, + [158115] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6457), 1, + ACTIONS(6485), 1, + sym__terminator, + STATE(4250), 2, + sym_comment, + sym_include, + [158132] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5197), 1, anon_sym_LPAREN, - STATE(4230), 2, + STATE(4251), 2, sym_comment, sym_include, - [157366] = 5, + [158149] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2166), 1, + ACTIONS(6487), 1, sym_identifier, - STATE(4231), 2, + STATE(4252), 2, sym_comment, sym_include, - [157383] = 5, - ACTIONS(59), 1, + [158166] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4215), 1, - anon_sym_COLON, - STATE(4232), 2, + ACTIONS(6489), 1, + sym_identifier, + STATE(4253), 2, sym_comment, sym_include, - [157400] = 5, + [158183] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6459), 1, + ACTIONS(6491), 1, sym__terminator, - STATE(4233), 2, + STATE(4254), 2, sym_comment, sym_include, - [157417] = 5, + [158200] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6461), 1, + ACTIONS(6493), 1, sym__terminator, - STATE(4234), 2, + STATE(4255), 2, sym_comment, sym_include, - [157434] = 5, - ACTIONS(3), 1, + [158217] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6463), 1, - sym_identifier, - STATE(4235), 2, + ACTIONS(6495), 1, + sym__terminator, + STATE(4256), 2, sym_comment, sym_include, - [157451] = 5, + [158234] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6465), 1, - anon_sym_RBRACE, - STATE(4236), 2, + ACTIONS(6497), 1, + anon_sym_COLON, + STATE(4257), 2, sym_comment, sym_include, - [157468] = 5, + [158251] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6467), 1, + ACTIONS(5057), 1, sym__terminator, - STATE(4237), 2, - sym_comment, - sym_include, - [157485] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6469), 1, - sym_identifier, - STATE(4238), 2, + STATE(4258), 2, sym_comment, sym_include, - [157502] = 5, + [158268] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6471), 1, + ACTIONS(6499), 1, sym_identifier, - STATE(4239), 2, + STATE(4259), 2, sym_comment, sym_include, - [157519] = 5, + [158285] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6473), 1, - sym__terminator, - STATE(4240), 2, + ACTIONS(3144), 1, + anon_sym_COLON, + STATE(4260), 2, sym_comment, sym_include, - [157536] = 5, + [158302] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5965), 1, - sym__terminator, - STATE(4241), 2, + ACTIONS(6501), 1, + aux_sym_do_block_token1, + STATE(4261), 2, sym_comment, sym_include, - [157553] = 5, + [158319] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6475), 1, + ACTIONS(6503), 1, sym_identifier, - STATE(4242), 2, + STATE(4262), 2, sym_comment, sym_include, - [157570] = 5, - ACTIONS(3), 1, + [158336] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6477), 1, - sym_identifier, - STATE(4243), 2, + ACTIONS(6505), 1, + anon_sym_COLON, + STATE(4263), 2, sym_comment, sym_include, - [157587] = 5, - ACTIONS(3), 1, + [158353] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6479), 1, - sym_identifier, - STATE(4244), 2, + ACTIONS(6507), 1, + aux_sym__block_terminator_token1, + STATE(4264), 2, sym_comment, sym_include, - [157604] = 5, - ACTIONS(3), 1, + [158370] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6481), 1, - sym_identifier, - STATE(4245), 2, + ACTIONS(5347), 1, + anon_sym_DOT, + STATE(4265), 2, sym_comment, sym_include, - [157621] = 5, + [158387] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6483), 1, + ACTIONS(5953), 1, sym__terminator, - STATE(4246), 2, + STATE(4266), 2, sym_comment, sym_include, - [157638] = 5, - ACTIONS(3), 1, + [158404] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6485), 1, - sym_identifier, - STATE(4247), 2, + ACTIONS(6509), 1, + sym__terminator, + STATE(4267), 2, sym_comment, sym_include, - [157655] = 5, + [158421] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6487), 1, + ACTIONS(6511), 1, sym_identifier, - STATE(4248), 2, + STATE(4268), 2, sym_comment, sym_include, - [157672] = 5, + [158438] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6489), 1, + ACTIONS(6513), 1, sym_identifier, - STATE(4249), 2, + STATE(4269), 2, sym_comment, sym_include, - [157689] = 5, + [158455] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6491), 1, + ACTIONS(5949), 1, sym__terminator, - STATE(4250), 2, + STATE(4270), 2, sym_comment, sym_include, - [157706] = 5, + [158472] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5999), 1, - sym__terminator, - STATE(4251), 2, + ACTIONS(6515), 1, + anon_sym_DOT, + STATE(4271), 2, sym_comment, sym_include, - [157723] = 5, + [158489] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2608), 1, - aux_sym__block_terminator_token1, - STATE(4252), 2, + ACTIONS(6517), 1, + sym__terminator, + STATE(4272), 2, sym_comment, sym_include, - [157740] = 5, + [158506] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6493), 1, + ACTIONS(6519), 1, sym__terminator, - STATE(4253), 2, + STATE(4273), 2, sym_comment, sym_include, - [157757] = 5, + [158523] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3805), 1, + ACTIONS(3948), 1, anon_sym_COLON, - STATE(4254), 2, + STATE(4274), 2, sym_comment, sym_include, - [157774] = 5, + [158540] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5951), 1, + ACTIONS(6521), 1, sym__terminator, - STATE(4255), 2, + STATE(4275), 2, sym_comment, sym_include, - [157791] = 5, + [158557] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6495), 1, - anon_sym_RPAREN, - STATE(4256), 2, + ACTIONS(4645), 1, + anon_sym_COLON, + STATE(4276), 2, sym_comment, sym_include, - [157808] = 5, + [158574] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5927), 1, + ACTIONS(6523), 1, sym__terminator, - STATE(4257), 2, + STATE(4277), 2, sym_comment, sym_include, - [157825] = 5, + [158591] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6497), 1, - aux_sym__block_terminator_token1, - STATE(4258), 2, + ACTIONS(6525), 1, + sym__terminator, + STATE(4278), 2, sym_comment, sym_include, - [157842] = 5, + [158608] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3048), 1, + ACTIONS(3162), 1, anon_sym_COLON, - STATE(4259), 2, + STATE(4279), 2, sym_comment, sym_include, - [157859] = 5, + [158625] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3079), 1, - anon_sym_COLON, - STATE(4260), 2, + ACTIONS(6527), 1, + anon_sym_COMMA, + STATE(4280), 2, sym_comment, sym_include, - [157876] = 5, - ACTIONS(3), 1, + [158642] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2305), 1, - sym_identifier, - STATE(4261), 2, + ACTIONS(6529), 1, + sym__terminator, + STATE(4281), 2, sym_comment, sym_include, - [157893] = 5, + [158659] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5939), 1, - sym__terminator, - STATE(4262), 2, + ACTIONS(6531), 1, + anon_sym_COMMA, + STATE(4282), 2, sym_comment, sym_include, - [157910] = 5, + [158676] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6499), 1, + ACTIONS(6533), 1, anon_sym_COLON, - STATE(4263), 2, + STATE(4283), 2, sym_comment, sym_include, - [157927] = 5, + [158693] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6501), 1, + ACTIONS(3804), 1, anon_sym_COLON, - STATE(4264), 2, + STATE(4284), 2, sym_comment, sym_include, - [157944] = 5, + [158710] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4817), 1, - anon_sym_COLON, - STATE(4265), 2, + ACTIONS(6535), 1, + anon_sym_COMMA, + STATE(4285), 2, sym_comment, sym_include, - [157961] = 5, + [158727] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6503), 1, - sym__terminator, - STATE(4266), 2, + ACTIONS(6537), 1, + anon_sym_RBRACE, + STATE(4286), 2, sym_comment, sym_include, - [157978] = 5, + [158744] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3888), 1, - anon_sym_COLON, - STATE(4267), 2, + ACTIONS(6539), 1, + sym__terminator, + STATE(4287), 2, sym_comment, sym_include, - [157995] = 5, + [158761] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6505), 1, + ACTIONS(6541), 1, sym_identifier, - STATE(4268), 2, + STATE(4288), 2, sym_comment, sym_include, - [158012] = 5, + [158778] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6507), 1, - sym__terminator, - STATE(4269), 2, + ACTIONS(6543), 1, + anon_sym_RPAREN, + STATE(4289), 2, sym_comment, sym_include, - [158029] = 5, + [158795] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4821), 1, + ACTIONS(5034), 1, anon_sym_LPAREN, - STATE(4270), 2, + STATE(4290), 2, sym_comment, sym_include, - [158046] = 5, + [158812] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6509), 1, - anon_sym_COLON, - STATE(4271), 2, + ACTIONS(6545), 1, + sym__integer_literal, + STATE(4291), 2, sym_comment, sym_include, - [158063] = 5, + [158829] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6511), 1, + ACTIONS(6547), 1, sym_identifier, - STATE(4272), 2, + STATE(4292), 2, sym_comment, sym_include, - [158080] = 5, - ACTIONS(3), 1, + [158846] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6513), 1, - sym_identifier, - STATE(4273), 2, + ACTIONS(6549), 1, + aux_sym_input_expression_token2, + STATE(4293), 2, sym_comment, sym_include, - [158097] = 5, + [158863] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4823), 1, - sym__terminator, - STATE(4274), 2, + ACTIONS(6551), 1, + anon_sym_RPAREN, + STATE(4294), 2, sym_comment, sym_include, - [158114] = 5, + [158880] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6515), 1, + ACTIONS(6553), 1, sym_identifier, - STATE(4275), 2, + STATE(4295), 2, sym_comment, sym_include, - [158131] = 5, + [158897] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(6555), 1, anon_sym_LPAREN, - STATE(4276), 2, + STATE(4296), 2, sym_comment, sym_include, - [158148] = 5, + [158914] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6517), 1, - sym_identifier, - STATE(4277), 2, - sym_comment, - sym_include, - [158165] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6519), 1, - anon_sym_LPAREN, - STATE(4278), 2, + ACTIONS(6557), 1, + sym_identifier, + STATE(4297), 2, sym_comment, sym_include, - [158182] = 5, + [158931] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6521), 1, + ACTIONS(6559), 1, sym_identifier, - STATE(4279), 2, + STATE(4298), 2, sym_comment, sym_include, - [158199] = 5, + [158948] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6523), 1, - anon_sym_COLON, - STATE(4280), 2, + ACTIONS(6561), 1, + sym__terminator, + STATE(4299), 2, sym_comment, sym_include, - [158216] = 5, + [158965] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3870), 1, - anon_sym_COLON, - STATE(4281), 2, + ACTIONS(6563), 1, + sym__terminator, + STATE(4300), 2, sym_comment, sym_include, - [158233] = 5, + [158982] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6525), 1, - sym__terminator, - STATE(4282), 2, + ACTIONS(3742), 1, + anon_sym_COLON, + STATE(4301), 2, sym_comment, sym_include, - [158250] = 5, + [158999] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3104), 1, - anon_sym_COLON, - STATE(4283), 2, + ACTIONS(6565), 1, + sym__terminator, + STATE(4302), 2, sym_comment, sym_include, - [158267] = 5, + [159016] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3374), 1, - anon_sym_COLON, - STATE(4284), 2, + ACTIONS(6567), 1, + sym__integer_literal, + STATE(4303), 2, sym_comment, sym_include, - [158284] = 5, - ACTIONS(59), 1, + [159033] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6527), 1, - aux_sym_buffer_definition_token2, - STATE(4285), 2, + ACTIONS(6569), 1, + sym_identifier, + STATE(4304), 2, sym_comment, sym_include, - [158301] = 5, + [159050] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6529), 1, - sym__terminator, - STATE(4286), 2, + ACTIONS(5563), 1, + anon_sym_DOT, + STATE(4305), 2, + sym_comment, + sym_include, + [159067] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6571), 1, + sym_identifier, + STATE(4306), 2, sym_comment, sym_include, - [158318] = 5, + [159084] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5863), 1, - aux_sym_primitive_type_token1, - STATE(4287), 2, + ACTIONS(6573), 1, + anon_sym_RBRACE, + STATE(4307), 2, sym_comment, sym_include, - [158335] = 5, + [159101] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6531), 1, + ACTIONS(6575), 1, sym__terminator, - STATE(4288), 2, + STATE(4308), 2, sym_comment, sym_include, - [158352] = 5, + [159118] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3158), 1, + ACTIONS(3192), 1, anon_sym_COLON, - STATE(4289), 2, + STATE(4309), 2, sym_comment, sym_include, - [158369] = 5, + [159135] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6533), 1, + ACTIONS(6577), 1, sym__terminator, - STATE(4290), 2, + STATE(4310), 2, sym_comment, sym_include, - [158386] = 5, + [159152] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3858), 1, - anon_sym_COLON, - STATE(4291), 2, + ACTIONS(6579), 1, + sym__terminator, + STATE(4311), 2, sym_comment, sym_include, - [158403] = 5, + [159169] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6535), 1, - aux_sym_buffer_definition_token2, - STATE(4292), 2, + ACTIONS(5028), 1, + sym__terminator, + STATE(4312), 2, sym_comment, sym_include, - [158420] = 5, + [159186] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4997), 1, + ACTIONS(6581), 1, sym__terminator, - STATE(4293), 2, + STATE(4313), 2, sym_comment, sym_include, - [158437] = 5, - ACTIONS(3), 1, + [159203] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6537), 1, - sym_identifier, - STATE(4294), 2, + ACTIONS(6583), 1, + sym__terminator, + STATE(4314), 2, sym_comment, sym_include, - [158454] = 5, + [159220] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6539), 1, - aux_sym_of_token1, - STATE(4295), 2, + ACTIONS(6585), 1, + aux_sym__block_terminator_token1, + STATE(4315), 2, sym_comment, sym_include, - [158471] = 5, - ACTIONS(3), 1, + [159237] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6541), 1, - sym_identifier, - STATE(4296), 2, + ACTIONS(6587), 1, + anon_sym_RBRACE, + STATE(4316), 2, sym_comment, sym_include, - [158488] = 5, + [159254] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6543), 1, - sym__terminator, - STATE(4297), 2, + ACTIONS(6589), 1, + sym__integer_literal, + STATE(4317), 2, sym_comment, sym_include, - [158505] = 5, + [159271] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2622), 1, + ACTIONS(2670), 1, aux_sym__block_terminator_token1, - STATE(4298), 2, + STATE(4318), 2, sym_comment, sym_include, - [158522] = 5, + [159288] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2351), 1, + ACTIONS(6591), 1, sym_identifier, - STATE(4299), 2, + STATE(4319), 2, sym_comment, sym_include, - [158539] = 5, + [159305] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3206), 1, - aux_sym__block_terminator_token1, - STATE(4300), 2, + ACTIONS(6593), 1, + anon_sym_LPAREN, + STATE(4320), 2, sym_comment, sym_include, - [158556] = 5, + [159322] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6545), 1, + ACTIONS(6595), 1, sym_identifier, - STATE(4301), 2, + STATE(4321), 2, sym_comment, sym_include, - [158573] = 5, + [159339] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6547), 1, - anon_sym_DOT, - STATE(4302), 2, + ACTIONS(6597), 1, + sym__terminator, + STATE(4322), 2, sym_comment, sym_include, - [158590] = 5, + [159356] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6549), 1, - anon_sym_LPAREN, - STATE(4303), 2, + ACTIONS(6599), 1, + sym__terminator, + STATE(4323), 2, sym_comment, sym_include, - [158607] = 5, + [159373] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6551), 1, + ACTIONS(6601), 1, sym_identifier, - STATE(4304), 2, + STATE(4324), 2, sym_comment, sym_include, - [158624] = 5, - ACTIONS(59), 1, + [159390] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6553), 1, - sym__terminator, - STATE(4305), 2, + ACTIONS(6603), 1, + sym_identifier, + STATE(4325), 2, sym_comment, sym_include, - [158641] = 5, + [159407] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5839), 1, + ACTIONS(6605), 1, sym__terminator, - STATE(4306), 2, + STATE(4326), 2, sym_comment, sym_include, - [158658] = 5, - ACTIONS(59), 1, + [159424] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6555), 1, - anon_sym_LPAREN, - STATE(4307), 2, + ACTIONS(6607), 1, + sym_identifier, + STATE(4327), 2, sym_comment, sym_include, - [158675] = 5, - ACTIONS(59), 1, + [159441] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6557), 1, - aux_sym_setter_token1, - STATE(4308), 2, + ACTIONS(6609), 1, + sym_identifier, + STATE(4328), 2, sym_comment, sym_include, - [158692] = 5, - ACTIONS(59), 1, + [159458] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6559), 1, - anon_sym_RPAREN, - STATE(4309), 2, + ACTIONS(6611), 1, + sym_identifier, + STATE(4329), 2, sym_comment, sym_include, - [158709] = 5, + [159475] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6561), 1, + ACTIONS(6613), 1, sym__terminator, - STATE(4310), 2, + STATE(4330), 2, sym_comment, sym_include, - [158726] = 5, + [159492] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_COLON, - STATE(4311), 2, + ACTIONS(6615), 1, + anon_sym_RPAREN, + STATE(4331), 2, sym_comment, sym_include, - [158743] = 5, + [159509] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6565), 1, + ACTIONS(5907), 1, sym__terminator, - STATE(4312), 2, + STATE(4332), 2, sym_comment, sym_include, - [158760] = 5, + [159526] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6567), 1, + ACTIONS(6617), 1, sym__terminator, - STATE(4313), 2, + STATE(4333), 2, sym_comment, sym_include, - [158777] = 5, - ACTIONS(59), 1, + [159543] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6569), 1, - sym__terminator, - STATE(4314), 2, + ACTIONS(6619), 1, + sym_identifier, + STATE(4334), 2, sym_comment, sym_include, - [158794] = 5, + [159560] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4253), 1, + ACTIONS(4189), 1, anon_sym_COLON, - STATE(4315), 2, + STATE(4335), 2, sym_comment, sym_include, - [158811] = 5, + [159577] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6571), 1, + ACTIONS(6621), 1, sym__terminator, - STATE(4316), 2, + STATE(4336), 2, sym_comment, sym_include, - [158828] = 5, + [159594] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6573), 1, - sym__terminator, - STATE(4317), 2, + ACTIONS(6623), 1, + anon_sym_RPAREN, + STATE(4337), 2, sym_comment, sym_include, - [158845] = 5, + [159611] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3220), 1, + ACTIONS(3320), 1, aux_sym__block_terminator_token1, - STATE(4318), 2, + STATE(4338), 2, sym_comment, sym_include, - [158862] = 5, + [159628] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4344), 1, - anon_sym_COLON, - STATE(4319), 2, + ACTIONS(6625), 1, + sym__terminator, + STATE(4339), 2, sym_comment, sym_include, - [158879] = 5, + [159645] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6575), 1, - aux_sym__block_terminator_token1, - STATE(4320), 2, + ACTIONS(6627), 1, + sym__terminator, + STATE(4340), 2, sym_comment, sym_include, - [158896] = 5, + [159662] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6577), 1, - aux_sym_setter_token1, - STATE(4321), 2, + ACTIONS(6629), 1, + sym__terminator, + STATE(4341), 2, sym_comment, sym_include, - [158913] = 5, + [159679] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6579), 1, - sym__terminator, - STATE(4322), 2, + ACTIONS(5689), 1, + anon_sym_DOT, + STATE(4342), 2, sym_comment, sym_include, - [158930] = 5, + [159696] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3366), 1, + ACTIONS(3328), 1, anon_sym_COLON, - STATE(4323), 2, + STATE(4343), 2, sym_comment, sym_include, - [158947] = 5, + [159713] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5829), 1, + ACTIONS(139), 1, sym__terminator, - STATE(4324), 2, + STATE(4344), 2, sym_comment, sym_include, - [158964] = 5, + [159730] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6581), 1, - sym__terminator, - STATE(4325), 2, + ACTIONS(6631), 1, + anon_sym_RBRACE, + STATE(4345), 2, sym_comment, sym_include, - [158981] = 5, + [159747] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6583), 1, + ACTIONS(6633), 1, sym__terminator, - STATE(4326), 2, + STATE(4346), 2, sym_comment, sym_include, - [158998] = 5, - ACTIONS(3), 1, + [159764] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6585), 1, - sym_identifier, - STATE(4327), 2, + ACTIONS(6635), 1, + anon_sym_RBRACE, + STATE(4347), 2, sym_comment, sym_include, - [159015] = 5, + [159781] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5095), 1, + ACTIONS(5871), 1, sym__terminator, - STATE(4328), 2, + STATE(4348), 2, sym_comment, sym_include, - [159032] = 5, + [159798] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6587), 1, - anon_sym_RPAREN, - STATE(4329), 2, + ACTIONS(5020), 1, + anon_sym_COLON, + STATE(4349), 2, sym_comment, sym_include, - [159049] = 5, - ACTIONS(59), 1, + [159815] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6589), 1, - sym__terminator, - STATE(4330), 2, + ACTIONS(6637), 1, + sym_identifier, + STATE(4350), 2, sym_comment, sym_include, - [159066] = 5, + [159832] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6591), 1, + ACTIONS(6639), 1, aux_sym__block_terminator_token1, - STATE(4331), 2, + STATE(4351), 2, sym_comment, sym_include, - [159083] = 5, + [159849] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(209), 1, - sym__terminator, - STATE(4332), 2, + ACTIONS(6641), 1, + anon_sym_LPAREN, + STATE(4352), 2, sym_comment, sym_include, - [159100] = 5, + [159866] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5811), 1, + ACTIONS(6643), 1, sym__terminator, - STATE(4333), 2, + STATE(4353), 2, sym_comment, sym_include, - [159117] = 5, + [159883] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6593), 1, + ACTIONS(6645), 1, sym__terminator, - STATE(4334), 2, + STATE(4354), 2, sym_comment, sym_include, - [159134] = 5, + [159900] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6595), 1, + ACTIONS(6647), 1, sym_identifier, - STATE(4335), 2, + STATE(4355), 2, sym_comment, sym_include, - [159151] = 5, + [159917] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6597), 1, - aux_sym__block_terminator_token1, - STATE(4336), 2, + ACTIONS(6649), 1, + sym__terminator, + STATE(4356), 2, sym_comment, sym_include, - [159168] = 5, + [159934] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6599), 1, + ACTIONS(6651), 1, sym_identifier, - STATE(4337), 2, + STATE(4357), 2, sym_comment, sym_include, - [159185] = 5, + [159951] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5805), 1, + ACTIONS(6653), 1, sym__terminator, - STATE(4338), 2, + STATE(4358), 2, sym_comment, sym_include, - [159202] = 5, + [159968] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5103), 1, - aux_sym_on_stop_phrase_token1, - STATE(4339), 2, + ACTIONS(6655), 1, + sym__terminator, + STATE(4359), 2, sym_comment, sym_include, - [159219] = 5, + [159985] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6601), 1, - aux_sym_setter_token1, - STATE(4340), 2, + ACTIONS(6657), 1, + sym__terminator, + STATE(4360), 2, sym_comment, sym_include, - [159236] = 5, + [160002] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6603), 1, + ACTIONS(6659), 1, sym__terminator, - STATE(4341), 2, + STATE(4361), 2, sym_comment, sym_include, - [159253] = 5, + [160019] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6605), 1, - aux_sym_sort_clause_token2, - STATE(4342), 2, + ACTIONS(6661), 1, + anon_sym_COLON, + STATE(4362), 2, sym_comment, sym_include, - [159270] = 5, + [160036] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4887), 1, - sym__terminator, - STATE(4343), 2, + ACTIONS(3334), 1, + anon_sym_COLON, + STATE(4363), 2, sym_comment, sym_include, - [159287] = 5, + [160053] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6607), 1, - aux_sym_buffer_definition_token2, - STATE(4344), 2, + ACTIONS(6663), 1, + anon_sym_COLON, + STATE(4364), 2, sym_comment, sym_include, - [159304] = 5, + [160070] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6609), 1, - aux_sym_buffer_definition_token2, - STATE(4345), 2, + ACTIONS(6665), 1, + sym__terminator, + STATE(4365), 2, sym_comment, sym_include, - [159321] = 5, + [160087] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4740), 1, + ACTIONS(4780), 1, anon_sym_COLON, - STATE(4346), 2, + STATE(4366), 2, sym_comment, sym_include, - [159338] = 5, + [160104] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4893), 1, + ACTIONS(6667), 1, sym__terminator, - STATE(4347), 2, + STATE(4367), 2, sym_comment, sym_include, - [159355] = 5, + [160121] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6611), 1, + ACTIONS(6669), 1, aux_sym__block_terminator_token1, - STATE(4348), 2, + STATE(4368), 2, sym_comment, sym_include, - [159372] = 5, + [160138] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5175), 1, + ACTIONS(4919), 1, aux_sym_do_block_token1, - STATE(4349), 2, + STATE(4369), 2, sym_comment, sym_include, - [159389] = 5, + [160155] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5797), 1, + ACTIONS(6671), 1, sym__terminator, - STATE(4350), 2, + STATE(4370), 2, sym_comment, sym_include, - [159406] = 5, + [160172] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3342), 1, + ACTIONS(3399), 1, anon_sym_COLON, - STATE(4351), 2, + STATE(4371), 2, sym_comment, sym_include, - [159423] = 5, - ACTIONS(3), 1, + [160189] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6613), 1, - sym_identifier, - STATE(4352), 2, + ACTIONS(6673), 1, + sym__terminator, + STATE(4372), 2, sym_comment, sym_include, - [159440] = 5, + [160206] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6615), 1, + ACTIONS(6675), 1, sym__terminator, - STATE(4353), 2, + STATE(4373), 2, sym_comment, sym_include, - [159457] = 5, + [160223] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6617), 1, + ACTIONS(5819), 1, sym__terminator, - STATE(4354), 2, + STATE(4374), 2, sym_comment, sym_include, - [159474] = 5, + [160240] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6619), 1, + ACTIONS(6677), 1, sym__terminator, - STATE(4355), 2, + STATE(4375), 2, sym_comment, sym_include, - [159491] = 5, - ACTIONS(3), 1, + [160257] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6621), 1, - sym_identifier, - STATE(4356), 2, + ACTIONS(6679), 1, + aux_sym__block_terminator_token1, + STATE(4376), 2, sym_comment, sym_include, - [159508] = 5, - ACTIONS(3), 1, + [160274] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6623), 1, - sym_identifier, - STATE(4357), 2, + ACTIONS(6681), 1, + aux_sym_of_token1, + STATE(4377), 2, sym_comment, sym_include, - [159525] = 5, + [160291] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6625), 1, - anon_sym_COLON, - STATE(4358), 2, + ACTIONS(6683), 1, + sym__terminator, + STATE(4378), 2, sym_comment, sym_include, - [159542] = 5, + [160308] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6627), 1, - anon_sym_COLON, - STATE(4359), 2, + ACTIONS(3275), 1, + aux_sym__block_terminator_token1, + STATE(4379), 2, sym_comment, sym_include, - [159559] = 5, + [160325] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6629), 1, - sym__terminator, - STATE(4360), 2, + ACTIONS(6685), 1, + aux_sym__block_terminator_token1, + STATE(4380), 2, sym_comment, sym_include, - [159576] = 5, - ACTIONS(3), 1, + [160342] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6631), 1, - sym_identifier, - STATE(4361), 2, + ACTIONS(6687), 1, + anon_sym_LPAREN, + STATE(4381), 2, sym_comment, sym_include, - [159593] = 5, + [160359] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5777), 1, - sym__terminator, - STATE(4362), 2, + ACTIONS(6689), 1, + anon_sym_COLON, + STATE(4382), 2, sym_comment, sym_include, - [159610] = 5, + [160376] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6633), 1, + ACTIONS(6691), 1, sym__terminator, - STATE(4363), 2, + STATE(4383), 2, sym_comment, sym_include, - [159627] = 5, + [160393] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6635), 1, - aux_sym_variable_definition_token5, - STATE(4364), 2, + ACTIONS(6693), 1, + sym__terminator, + STATE(4384), 2, sym_comment, sym_include, - [159644] = 5, + [160410] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6637), 1, - aux_sym__block_terminator_token1, - STATE(4365), 2, + ACTIONS(6695), 1, + anon_sym_RPAREN, + STATE(4385), 2, sym_comment, sym_include, - [159661] = 5, + [160427] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6639), 1, - aux_sym__block_terminator_token1, - STATE(4366), 2, + ACTIONS(5797), 1, + sym__terminator, + STATE(4386), 2, sym_comment, sym_include, - [159678] = 5, - ACTIONS(59), 1, + [160444] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5773), 1, - sym__terminator, - STATE(4367), 2, + ACTIONS(6697), 1, + sym_identifier, + STATE(4387), 2, sym_comment, sym_include, - [159695] = 5, + [160461] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6641), 1, + ACTIONS(5247), 1, sym__terminator, - STATE(4368), 2, + STATE(4388), 2, sym_comment, sym_include, - [159712] = 5, + [160478] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6643), 1, + ACTIONS(6699), 1, sym__terminator, - STATE(4369), 2, + STATE(4389), 2, sym_comment, sym_include, - [159729] = 5, + [160495] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6645), 1, - aux_sym_input_expression_token2, - STATE(4370), 2, + ACTIONS(6701), 1, + sym__terminator, + STATE(4390), 2, sym_comment, sym_include, - [159746] = 5, + [160512] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2618), 1, - aux_sym__block_terminator_token1, - STATE(4371), 2, + ACTIONS(5785), 1, + sym__terminator, + STATE(4391), 2, sym_comment, sym_include, - [159763] = 5, + [160529] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5621), 1, - sym__terminator, - STATE(4372), 2, + ACTIONS(6703), 1, + aux_sym__block_terminator_token1, + STATE(4392), 2, sym_comment, sym_include, - [159780] = 5, + [160546] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6647), 1, - sym__terminator, - STATE(4373), 2, + ACTIONS(4321), 1, + anon_sym_COLON, + STATE(4393), 2, sym_comment, sym_include, - [159797] = 5, + [160563] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6649), 1, - sym__terminator, - STATE(4374), 2, + ACTIONS(4217), 1, + anon_sym_COLON, + STATE(4394), 2, sym_comment, sym_include, - [159814] = 5, + [160580] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6651), 1, - sym__terminator, - STATE(4375), 2, + ACTIONS(5245), 1, + anon_sym_COLON, + STATE(4395), 2, sym_comment, sym_include, - [159831] = 5, + [160597] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4936), 1, + ACTIONS(4991), 1, anon_sym_COLON, - STATE(4376), 2, + STATE(4396), 2, sym_comment, sym_include, - [159848] = 5, + [160614] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4147), 1, + ACTIONS(4177), 1, anon_sym_COLON, - STATE(4377), 2, + STATE(4397), 2, sym_comment, sym_include, - [159865] = 5, + [160631] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5753), 1, + ACTIONS(6705), 1, sym__terminator, - STATE(4378), 2, + STATE(4398), 2, sym_comment, sym_include, - [159882] = 5, + [160648] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6653), 1, - sym__terminator, - STATE(4379), 2, + ACTIONS(6707), 1, + anon_sym_COLON, + STATE(4399), 2, sym_comment, sym_include, - [159899] = 5, + [160665] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6655), 1, + ACTIONS(6709), 1, sym__terminator, - STATE(4380), 2, + STATE(4400), 2, sym_comment, sym_include, - [159916] = 5, + [160682] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6657), 1, - anon_sym_COLON, - STATE(4381), 2, + ACTIONS(6711), 1, + sym__terminator, + STATE(4401), 2, sym_comment, sym_include, - [159933] = 5, + [160699] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6659), 1, - aux_sym__block_terminator_token1, - STATE(4382), 2, + ACTIONS(6713), 1, + sym__terminator, + STATE(4402), 2, sym_comment, sym_include, - [159950] = 5, + [160716] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(165), 1, + ACTIONS(6715), 1, sym__terminator, - STATE(4383), 2, + STATE(4403), 2, sym_comment, sym_include, - [159967] = 5, + [160733] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6661), 1, + ACTIONS(6717), 1, sym__terminator, - STATE(4384), 2, + STATE(4404), 2, sym_comment, sym_include, - [159984] = 5, + [160750] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4819), 1, + ACTIONS(6719), 1, sym__terminator, - STATE(4385), 2, + STATE(4405), 2, sym_comment, sym_include, - [160001] = 5, + [160767] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6663), 1, - aux_sym__block_terminator_token1, - STATE(4386), 2, + ACTIONS(6721), 1, + anon_sym_RBRACE, + STATE(4406), 2, sym_comment, sym_include, - [160018] = 5, + [160784] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6665), 1, + ACTIONS(6723), 1, sym__terminator, - STATE(4387), 2, + STATE(4407), 2, sym_comment, sym_include, - [160035] = 5, + [160801] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6667), 1, + ACTIONS(6725), 1, anon_sym_COLON, - STATE(4388), 2, + STATE(4408), 2, sym_comment, sym_include, - [160052] = 5, + [160818] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6669), 1, - aux_sym__block_terminator_token1, - STATE(4389), 2, + ACTIONS(5753), 1, + sym__terminator, + STATE(4409), 2, sym_comment, sym_include, - [160069] = 5, + [160835] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6671), 1, + ACTIONS(6727), 1, sym__terminator, - STATE(4390), 2, + STATE(4410), 2, sym_comment, sym_include, - [160086] = 5, + [160852] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(6729), 1, sym__terminator, - STATE(4391), 2, + STATE(4411), 2, sym_comment, sym_include, - [160103] = 5, - ACTIONS(3), 1, + [160869] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6673), 1, - sym_identifier, - STATE(4392), 2, + ACTIONS(6731), 1, + sym__terminator, + STATE(4412), 2, sym_comment, sym_include, - [160120] = 5, + [160886] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6675), 1, - anon_sym_EQ, - STATE(4393), 2, + ACTIONS(6733), 1, + aux_sym_sort_clause_token2, + STATE(4413), 2, sym_comment, sym_include, - [160137] = 5, + [160903] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5126), 1, - anon_sym_COLON, - STATE(4394), 2, + ACTIONS(6735), 1, + aux_sym_buffer_definition_token2, + STATE(4414), 2, sym_comment, sym_include, - [160154] = 5, + [160920] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6677), 1, - aux_sym__block_terminator_token1, - STATE(4395), 2, + ACTIONS(6737), 1, + aux_sym_buffer_definition_token2, + STATE(4415), 2, sym_comment, sym_include, - [160171] = 5, + [160937] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6679), 1, - aux_sym_buffer_definition_token2, - STATE(4396), 2, + ACTIONS(6739), 1, + anon_sym_RPAREN, + STATE(4416), 2, sym_comment, sym_include, - [160188] = 5, + [160954] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6681), 1, + ACTIONS(5745), 1, sym__terminator, - STATE(4397), 2, + STATE(4417), 2, sym_comment, sym_include, - [160205] = 5, + [160971] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6683), 1, + ACTIONS(5255), 1, sym__terminator, - STATE(4398), 2, + STATE(4418), 2, sym_comment, sym_include, - [160222] = 5, - ACTIONS(59), 1, + [160988] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6685), 1, - aux_sym_setter_token1, - STATE(4399), 2, + ACTIONS(6741), 1, + sym_identifier, + STATE(4419), 2, sym_comment, sym_include, - [160239] = 5, + [161005] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6687), 1, + ACTIONS(5257), 1, sym__terminator, - STATE(4400), 2, + STATE(4420), 2, sym_comment, sym_include, - [160256] = 5, - ACTIONS(59), 1, + [161022] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6689), 1, - sym__terminator, - STATE(4401), 2, + ACTIONS(6743), 1, + sym_identifier, + STATE(4421), 2, sym_comment, sym_include, - [160273] = 5, + [161039] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6691), 1, + ACTIONS(6745), 1, sym_identifier, - STATE(4402), 2, + STATE(4422), 2, sym_comment, sym_include, - [160290] = 5, + [161056] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6693), 1, + ACTIONS(6747), 1, anon_sym_COLON, - STATE(4403), 2, + STATE(4423), 2, sym_comment, sym_include, - [160307] = 5, + [161073] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6695), 1, + ACTIONS(6749), 1, anon_sym_COLON, - STATE(4404), 2, + STATE(4424), 2, sym_comment, sym_include, - [160324] = 5, + [161090] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5134), 1, + ACTIONS(5741), 1, sym__terminator, - STATE(4405), 2, + STATE(4425), 2, sym_comment, sym_include, - [160341] = 5, + [161107] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6697), 1, + ACTIONS(6751), 1, + aux_sym__block_terminator_token1, + STATE(4426), 2, + sym_comment, + sym_include, + [161124] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5193), 1, sym__terminator, - STATE(4406), 2, + STATE(4427), 2, sym_comment, sym_include, - [160358] = 5, + [161141] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6699), 1, + ACTIONS(5721), 1, sym__terminator, - STATE(4407), 2, + STATE(4428), 2, sym_comment, sym_include, - [160375] = 5, + [161158] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3130), 1, - anon_sym_COLON, - STATE(4408), 2, + ACTIONS(6753), 1, + aux_sym__block_terminator_token1, + STATE(4429), 2, sym_comment, sym_include, - [160392] = 5, + [161175] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6701), 1, - sym__terminator, - STATE(4409), 2, + ACTIONS(3354), 1, + anon_sym_COLON, + STATE(4430), 2, sym_comment, sym_include, - [160409] = 5, + [161192] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6703), 1, - sym__terminator, - STATE(4410), 2, + ACTIONS(6755), 1, + aux_sym_do_block_token1, + STATE(4431), 2, sym_comment, sym_include, - [160426] = 5, + [161209] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5146), 1, - sym__terminator, - STATE(4411), 2, + ACTIONS(6757), 1, + aux_sym__block_terminator_token1, + STATE(4432), 2, sym_comment, sym_include, - [160443] = 5, + [161226] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6705), 1, + ACTIONS(6759), 1, sym_identifier, - STATE(4412), 2, + STATE(4433), 2, sym_comment, sym_include, - [160460] = 5, + [161243] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5711), 1, - sym__terminator, - STATE(4413), 2, + ACTIONS(6761), 1, + aux_sym_variable_definition_token5, + STATE(4434), 2, sym_comment, sym_include, - [160477] = 5, + [161260] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3290), 1, - anon_sym_COLON, - STATE(4414), 2, + ACTIONS(2664), 1, + aux_sym__block_terminator_token1, + STATE(4435), 2, sym_comment, sym_include, - [160494] = 5, + [161277] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6707), 1, - sym__terminator, - STATE(4415), 2, + ACTIONS(4849), 1, + anon_sym_COLON, + STATE(4436), 2, sym_comment, sym_include, - [160511] = 5, + [161294] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4672), 1, - aux_sym_of_token1, - STATE(4416), 2, + ACTIONS(6763), 1, + anon_sym_COMMA, + STATE(4437), 2, sym_comment, sym_include, - [160528] = 5, + [161311] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6709), 1, - anon_sym_LPAREN, - STATE(4417), 2, + ACTIONS(6765), 1, + anon_sym_COMMA, + STATE(4438), 2, sym_comment, sym_include, - [160545] = 5, + [161328] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5699), 1, + ACTIONS(5707), 1, sym__terminator, - STATE(4418), 2, + STATE(4439), 2, sym_comment, sym_include, - [160562] = 5, + [161345] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6711), 1, - aux_sym_do_block_token1, - STATE(4419), 2, + ACTIONS(6767), 1, + sym__terminator, + STATE(4440), 2, sym_comment, sym_include, - [160579] = 5, + [161362] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6713), 1, - aux_sym__block_terminator_token1, - STATE(4420), 2, + ACTIONS(6769), 1, + sym__terminator, + STATE(4441), 2, sym_comment, sym_include, - [160596] = 5, + [161379] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6715), 1, - anon_sym_COLON, - STATE(4421), 2, + ACTIONS(5649), 1, + anon_sym_DOT, + STATE(4442), 2, sym_comment, sym_include, - [160613] = 5, + [161396] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5691), 1, + ACTIONS(5697), 1, sym__terminator, - STATE(4422), 2, + STATE(4443), 2, sym_comment, sym_include, - [160630] = 5, + [161413] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4595), 1, - anon_sym_COLON, - STATE(4423), 2, + ACTIONS(6771), 1, + aux_sym__block_terminator_token1, + STATE(4444), 2, sym_comment, sym_include, - [160647] = 5, + [161430] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6717), 1, - anon_sym_COLON, - STATE(4424), 2, + ACTIONS(6773), 1, + sym__terminator, + STATE(4445), 2, sym_comment, sym_include, - [160664] = 5, + [161447] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6719), 1, - anon_sym_COMMA, - STATE(4425), 2, + ACTIONS(6775), 1, + anon_sym_LPAREN, + STATE(4446), 2, sym_comment, sym_include, - [160681] = 5, + [161464] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6721), 1, - anon_sym_COMMA, - STATE(4426), 2, + ACTIONS(6777), 1, + sym__terminator, + STATE(4447), 2, sym_comment, sym_include, - [160698] = 5, + [161481] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6723), 1, - aux_sym_primitive_type_token1, - STATE(4427), 2, + ACTIONS(6779), 1, + sym__terminator, + STATE(4448), 2, sym_comment, sym_include, - [160715] = 5, - ACTIONS(59), 1, + [161498] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6725), 1, - aux_sym__block_terminator_token1, - STATE(4428), 2, + ACTIONS(6781), 1, + sym_identifier, + STATE(4449), 2, sym_comment, sym_include, - [160732] = 5, + [161515] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5681), 1, + ACTIONS(6783), 1, sym__terminator, - STATE(4429), 2, + STATE(4450), 2, sym_comment, sym_include, - [160749] = 5, + [161532] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6727), 1, - aux_sym__block_terminator_token1, - STATE(4430), 2, + ACTIONS(6785), 1, + anon_sym_RPAREN, + STATE(4451), 2, sym_comment, sym_include, - [160766] = 5, + [161549] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6729), 1, - anon_sym_LPAREN, - STATE(4431), 2, + ACTIONS(6787), 1, + sym__terminator, + STATE(4452), 2, sym_comment, sym_include, - [160783] = 5, + [161566] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3693), 1, - anon_sym_COLON, - STATE(4432), 2, + ACTIONS(155), 1, + sym__terminator, + STATE(4453), 2, sym_comment, sym_include, - [160800] = 5, + [161583] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6731), 1, + ACTIONS(6789), 1, sym_identifier, - STATE(4433), 2, + STATE(4454), 2, sym_comment, sym_include, - [160817] = 5, + [161600] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5675), 1, + ACTIONS(6791), 1, sym__terminator, - STATE(4434), 2, + STATE(4455), 2, sym_comment, sym_include, - [160834] = 5, + [161617] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6733), 1, - sym__terminator, - STATE(4435), 2, - sym_comment, - sym_include, - [160851] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6735), 1, - sym_identifier, - STATE(4436), 2, + ACTIONS(6793), 1, + sym__integer_literal, + STATE(4456), 2, sym_comment, sym_include, - [160868] = 5, + [161634] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5651), 1, - sym__terminator, - STATE(4437), 2, + ACTIONS(6795), 1, + anon_sym_RBRACE, + STATE(4457), 2, sym_comment, sym_include, - [160885] = 5, + [161651] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6737), 1, - aux_sym__block_terminator_token1, - STATE(4438), 2, + ACTIONS(6797), 1, + anon_sym_RBRACE, + STATE(4458), 2, sym_comment, sym_include, - [160902] = 5, + [161668] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6739), 1, - aux_sym__block_terminator_token1, - STATE(4439), 2, + ACTIONS(6799), 1, + sym__terminator, + STATE(4459), 2, sym_comment, sym_include, - [160919] = 5, + [161685] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6741), 1, - anon_sym_COLON, - STATE(4440), 2, + ACTIONS(6801), 1, + sym__terminator, + STATE(4460), 2, sym_comment, sym_include, - [160936] = 5, + [161702] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5663), 1, + ACTIONS(5681), 1, sym__terminator, - STATE(4441), 2, + STATE(4461), 2, sym_comment, sym_include, - [160953] = 5, + [161719] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, + ACTIONS(6803), 1, sym__terminator, - STATE(4442), 2, + STATE(4462), 2, sym_comment, sym_include, - [160970] = 5, + [161736] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5647), 1, + ACTIONS(5273), 1, sym__terminator, - STATE(4443), 2, + STATE(4463), 2, sym_comment, sym_include, - [160987] = 5, - ACTIONS(59), 1, + [161753] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6743), 1, - aux_sym_on_error_phrase_token3, - STATE(4444), 2, + ACTIONS(6805), 1, + sym_identifier, + STATE(4464), 2, sym_comment, sym_include, - [161004] = 5, + [161770] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3368), 1, - anon_sym_COLON, - STATE(4445), 2, + ACTIONS(6807), 1, + aux_sym__block_terminator_token1, + STATE(4465), 2, sym_comment, sym_include, - [161021] = 5, + [161787] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6745), 1, + ACTIONS(6809), 1, sym_identifier, - STATE(4446), 2, + STATE(4466), 2, sym_comment, sym_include, - [161038] = 5, + [161804] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, + ACTIONS(4967), 1, sym__terminator, - STATE(4447), 2, + STATE(4467), 2, sym_comment, sym_include, - [161055] = 5, + [161821] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, + ACTIONS(4965), 1, anon_sym_LPAREN, - STATE(4448), 2, + STATE(4468), 2, sym_comment, sym_include, - [161072] = 5, + [161838] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6749), 1, - sym__terminator, - STATE(4449), 2, + ACTIONS(6811), 1, + anon_sym_EQ, + STATE(4469), 2, sym_comment, sym_include, - [161089] = 5, + [161855] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6751), 1, - aux_sym_on_error_phrase_token3, - STATE(4450), 2, + ACTIONS(6813), 1, + anon_sym_LPAREN, + STATE(4470), 2, sym_comment, sym_include, - [161106] = 5, + [161872] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3284), 1, - aux_sym__block_terminator_token1, - STATE(4451), 2, + ACTIONS(6815), 1, + sym__terminator, + STATE(4471), 2, sym_comment, sym_include, - [161123] = 5, + [161889] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6753), 1, + ACTIONS(4963), 1, sym__terminator, - STATE(4452), 2, + STATE(4472), 2, sym_comment, sym_include, - [161140] = 5, + [161906] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4113), 1, - anon_sym_COLON, - STATE(4453), 2, + ACTIONS(6817), 1, + aux_sym__block_terminator_token1, + STATE(4473), 2, sym_comment, sym_include, - [161157] = 5, + [161923] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6755), 1, - sym__terminator, - STATE(4454), 2, + ACTIONS(6819), 1, + anon_sym_COLON, + STATE(4474), 2, sym_comment, sym_include, - [161174] = 5, + [161940] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6757), 1, + ACTIONS(6821), 1, sym_identifier, - STATE(4455), 2, + STATE(4475), 2, sym_comment, sym_include, - [161191] = 5, + [161957] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6759), 1, - anon_sym_COLON, - STATE(4456), 2, + ACTIONS(6823), 1, + sym__terminator, + STATE(4476), 2, sym_comment, sym_include, - [161208] = 5, + [161974] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5063), 1, + ACTIONS(4955), 1, anon_sym_LPAREN, - STATE(4457), 2, + STATE(4477), 2, sym_comment, sym_include, - [161225] = 5, + [161991] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6761), 1, - sym__terminator, - STATE(4458), 2, + ACTIONS(3326), 1, + anon_sym_COLON, + STATE(4478), 2, sym_comment, sym_include, - [161242] = 5, + [162008] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5781), 1, - anon_sym_DOT, - STATE(4459), 2, + ACTIONS(6825), 1, + sym__terminator, + STATE(4479), 2, sym_comment, sym_include, - [161259] = 5, + [162025] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6763), 1, + ACTIONS(3255), 1, aux_sym__block_terminator_token1, - STATE(4460), 2, + STATE(4480), 2, sym_comment, sym_include, - [161276] = 5, + [162042] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5065), 1, - sym__terminator, - STATE(4461), 2, + ACTIONS(4331), 1, + anon_sym_COLON, + STATE(4481), 2, sym_comment, sym_include, - [161293] = 5, - ACTIONS(3), 1, + [162059] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6765), 1, - sym_identifier, - STATE(4462), 2, + ACTIONS(3065), 1, + anon_sym_COLON, + STATE(4482), 2, sym_comment, sym_include, - [161310] = 5, + [162076] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6767), 1, - aux_sym_setter_token1, - STATE(4463), 2, + ACTIONS(177), 1, + sym__terminator, + STATE(4483), 2, sym_comment, sym_include, - [161327] = 5, + [162093] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5081), 1, + ACTIONS(4941), 1, anon_sym_LPAREN, - STATE(4464), 2, + STATE(4484), 2, sym_comment, sym_include, - [161344] = 5, + [162110] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6769), 1, - aux_sym_input_expression_token2, - STATE(4465), 2, + ACTIONS(5619), 1, + sym__terminator, + STATE(4485), 2, sym_comment, sym_include, - [161361] = 5, + [162127] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5099), 1, + ACTIONS(4935), 1, anon_sym_LPAREN, - STATE(4466), 2, + STATE(4486), 2, sym_comment, sym_include, - [161378] = 5, + [162144] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6771), 1, - anon_sym_RBRACE, - STATE(4467), 2, + ACTIONS(4885), 1, + aux_sym_on_stop_phrase_token1, + STATE(4487), 2, sym_comment, sym_include, - [161395] = 5, - ACTIONS(3), 1, + [162161] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6773), 1, - sym_identifier, - STATE(4468), 2, + ACTIONS(5639), 1, + sym__terminator, + STATE(4488), 2, sym_comment, sym_include, - [161412] = 5, + [162178] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6775), 1, + ACTIONS(6827), 1, sym_identifier, - STATE(4469), 2, + STATE(4489), 2, sym_comment, sym_include, - [161429] = 5, + [162195] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6777), 1, + ACTIONS(6829), 1, sym_identifier, - STATE(4470), 2, + STATE(4490), 2, sym_comment, sym_include, - [161446] = 5, + [162212] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6779), 1, - anon_sym_LPAREN, - STATE(4471), 2, + ACTIONS(193), 1, + sym__terminator, + STATE(4491), 2, sym_comment, sym_include, - [161463] = 5, + [162229] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6781), 1, + ACTIONS(6831), 1, sym_identifier, - STATE(4472), 2, + STATE(4492), 2, sym_comment, sym_include, - [161480] = 5, + [162246] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6783), 1, + ACTIONS(6833), 1, anon_sym_COLON, - STATE(4473), 2, + STATE(4493), 2, sym_comment, sym_include, - [161497] = 5, - ACTIONS(3), 1, + [162263] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6785), 1, - sym_identifier, - STATE(4474), 2, + ACTIONS(6835), 1, + aux_sym__block_terminator_token1, + STATE(4494), 2, sym_comment, sym_include, - [161514] = 5, + [162280] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6787), 1, + ACTIONS(6837), 1, anon_sym_LPAREN, - STATE(4475), 2, + STATE(4495), 2, sym_comment, sym_include, - [161531] = 5, + [162297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6789), 1, + ACTIONS(6839), 1, sym_identifier, - STATE(4476), 2, + STATE(4496), 2, sym_comment, sym_include, - [161548] = 5, + [162314] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6791), 1, + ACTIONS(6841), 1, sym_identifier, - STATE(4477), 2, + STATE(4497), 2, sym_comment, sym_include, - [161565] = 5, - ACTIONS(3), 1, + [162331] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6793), 1, - sym_identifier, - STATE(4478), 2, + ACTIONS(3142), 1, + anon_sym_COLON, + STATE(4498), 2, sym_comment, sym_include, - [161582] = 5, + [162348] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6795), 1, + ACTIONS(6843), 1, sym_identifier, - STATE(4479), 2, + STATE(4499), 2, sym_comment, sym_include, - [161599] = 5, + [162365] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6797), 1, + ACTIONS(6845), 1, sym_identifier, - STATE(4480), 2, + STATE(4500), 2, sym_comment, sym_include, - [161616] = 5, + [162382] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6799), 1, + ACTIONS(5625), 1, sym__terminator, - STATE(4481), 2, + STATE(4501), 2, sym_comment, sym_include, - [161633] = 5, + [162399] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6801), 1, + ACTIONS(6847), 1, sym_identifier, - STATE(4482), 2, + STATE(4502), 2, sym_comment, sym_include, - [161650] = 5, + [162416] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6803), 1, + ACTIONS(6849), 1, sym_identifier, - STATE(4483), 2, + STATE(4503), 2, sym_comment, sym_include, - [161667] = 5, + [162433] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2610), 1, + ACTIONS(2616), 1, aux_sym__block_terminator_token1, - STATE(4484), 2, + STATE(4504), 2, sym_comment, sym_include, - [161684] = 5, + [162450] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6805), 1, - sym__terminator, - STATE(4485), 2, + ACTIONS(6851), 1, + aux_sym__block_terminator_token1, + STATE(4505), 2, sym_comment, sym_include, - [161701] = 5, - ACTIONS(59), 1, + [162467] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5591), 1, - sym__terminator, - STATE(4486), 2, + ACTIONS(6853), 1, + sym_identifier, + STATE(4506), 2, sym_comment, sym_include, - [161718] = 5, + [162484] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6807), 1, - aux_sym_buffer_definition_token2, - STATE(4487), 2, + ACTIONS(6855), 1, + aux_sym__block_terminator_token1, + STATE(4507), 2, sym_comment, sym_include, - [161735] = 5, + [162501] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6809), 1, + ACTIONS(6857), 1, anon_sym_COMMA, - STATE(4488), 2, + STATE(4508), 2, sym_comment, sym_include, - [161752] = 5, + [162518] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6811), 1, - aux_sym_buffer_definition_token2, - STATE(4489), 2, + ACTIONS(4617), 1, + aux_sym_of_token1, + STATE(4509), 2, sym_comment, sym_include, - [161769] = 5, + [162535] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5191), 1, - sym__terminator, - STATE(4490), 2, + ACTIONS(6859), 1, + aux_sym__block_terminator_token1, + STATE(4510), 2, sym_comment, sym_include, - [161786] = 5, + [162552] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6813), 1, - aux_sym__block_terminator_token1, - STATE(4491), 2, + ACTIONS(5599), 1, + sym__terminator, + STATE(4511), 2, sym_comment, sym_include, - [161803] = 5, + [162569] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6815), 1, + ACTIONS(6861), 1, aux_sym_buffer_definition_token2, - STATE(4492), 2, + STATE(4512), 2, sym_comment, sym_include, - [161820] = 5, + [162586] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6817), 1, + ACTIONS(6863), 1, aux_sym_buffer_definition_token2, - STATE(4493), 2, + STATE(4513), 2, sym_comment, sym_include, - [161837] = 5, + [162603] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6819), 1, + ACTIONS(6865), 1, aux_sym_on_error_phrase_token3, - STATE(4494), 2, + STATE(4514), 2, sym_comment, sym_include, - [161854] = 5, + [162620] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6821), 1, + ACTIONS(6867), 1, anon_sym_COLON, - STATE(4495), 2, + STATE(4515), 2, sym_comment, sym_include, - [161871] = 5, + [162637] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4608), 1, + ACTIONS(4689), 1, aux_sym_of_token1, - STATE(4496), 2, + STATE(4516), 2, sym_comment, sym_include, - [161888] = 5, + [162654] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6823), 1, - sym__terminator, - STATE(4497), 2, + ACTIONS(6869), 1, + anon_sym_COLON, + STATE(4517), 2, sym_comment, sym_include, - [161905] = 5, - ACTIONS(3), 1, + [162671] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6825), 1, - sym_identifier, - STATE(4498), 2, + ACTIONS(6871), 1, + anon_sym_COLON, + STATE(4518), 2, sym_comment, sym_include, - [161922] = 5, - ACTIONS(59), 1, + [162688] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6827), 1, - sym__terminator, - STATE(4499), 2, + ACTIONS(6873), 1, + sym_identifier, + STATE(4519), 2, sym_comment, sym_include, - [161939] = 5, + [162705] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3069), 1, - anon_sym_COLON, - STATE(4500), 2, + ACTIONS(6875), 1, + aux_sym__block_terminator_token1, + STATE(4520), 2, sym_comment, sym_include, - [161956] = 5, + [162722] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6829), 1, + ACTIONS(6877), 1, aux_sym_variable_definition_token5, - STATE(4501), 2, + STATE(4521), 2, sym_comment, sym_include, - [161973] = 5, + [162739] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6831), 1, - sym__terminator, - STATE(4502), 2, + ACTIONS(6879), 1, + anon_sym_RPAREN, + STATE(4522), 2, sym_comment, sym_include, - [161990] = 5, + [162756] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6833), 1, + ACTIONS(6881), 1, aux_sym_buffer_definition_token2, - STATE(4503), 2, + STATE(4523), 2, sym_comment, sym_include, - [162007] = 5, + [162773] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6835), 1, + ACTIONS(6883), 1, aux_sym_buffer_definition_token2, - STATE(4504), 2, + STATE(4524), 2, sym_comment, sym_include, - [162024] = 5, + [162790] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6837), 1, - anon_sym_COLON, - STATE(4505), 2, + ACTIONS(6885), 1, + sym__terminator, + STATE(4525), 2, sym_comment, sym_include, - [162041] = 5, + [162807] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6839), 1, + ACTIONS(6887), 1, aux_sym_of_token1, - STATE(4506), 2, + STATE(4526), 2, sym_comment, sym_include, - [162058] = 5, + [162824] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6841), 1, + ACTIONS(6889), 1, sym__terminator, - STATE(4507), 2, + STATE(4527), 2, sym_comment, sym_include, - [162075] = 5, + [162841] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4989), 1, + ACTIONS(4923), 1, anon_sym_COLON, - STATE(4508), 2, + STATE(4528), 2, sym_comment, sym_include, - [162092] = 5, + [162858] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3773), 1, + ACTIONS(6891), 1, anon_sym_COLON, - STATE(4509), 2, + STATE(4529), 2, sym_comment, sym_include, - [162109] = 5, + [162875] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6843), 1, + ACTIONS(6893), 1, sym__terminator, - STATE(4510), 2, + STATE(4530), 2, sym_comment, sym_include, - [162126] = 5, + [162892] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5132), 1, + ACTIONS(4921), 1, anon_sym_COLON, - STATE(4511), 2, + STATE(4531), 2, sym_comment, sym_include, - [162143] = 5, - ACTIONS(3), 1, + [162909] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6845), 1, - sym_identifier, - STATE(4512), 2, + ACTIONS(3881), 1, + anon_sym_COLON, + STATE(4532), 2, sym_comment, sym_include, - [162160] = 5, + [162926] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6847), 1, - sym__terminator, - STATE(4513), 2, + ACTIONS(3936), 1, + anon_sym_COLON, + STATE(4533), 2, sym_comment, sym_include, - [162177] = 5, - ACTIONS(59), 1, + [162943] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6849), 1, - aux_sym__block_terminator_token1, - STATE(4514), 2, + ACTIONS(6895), 1, + sym_identifier, + STATE(4534), 2, sym_comment, sym_include, - [162194] = 5, + [162960] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6851), 1, + ACTIONS(6897), 1, sym_identifier, - STATE(4515), 2, + STATE(4535), 2, sym_comment, sym_include, - [162211] = 5, + [162977] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5203), 1, + ACTIONS(6899), 1, anon_sym_LPAREN, - STATE(4516), 2, + STATE(4536), 2, sym_comment, sym_include, - [162228] = 5, + [162994] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6853), 1, + ACTIONS(6901), 1, anon_sym_LPAREN, - STATE(4517), 2, + STATE(4537), 2, sym_comment, sym_include, - [162245] = 5, + [163011] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6855), 1, + ACTIONS(6903), 1, sym_identifier, - STATE(4518), 2, + STATE(4538), 2, sym_comment, sym_include, - [162262] = 5, + [163028] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6857), 1, + ACTIONS(6905), 1, sym_identifier, - STATE(4519), 2, + STATE(4539), 2, sym_comment, sym_include, - [162279] = 5, + [163045] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_LPAREN, - STATE(4520), 2, + ACTIONS(6907), 1, + aux_sym_setter_token1, + STATE(4540), 2, sym_comment, sym_include, - [162296] = 5, + [163062] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6859), 1, - sym__terminator, - STATE(4521), 2, + ACTIONS(6909), 1, + aux_sym_on_error_phrase_token3, + STATE(4541), 2, sym_comment, sym_include, - [162313] = 5, - ACTIONS(3), 1, + [163079] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6861), 1, - sym_identifier, - STATE(4522), 2, + ACTIONS(6911), 1, + aux_sym_on_error_phrase_token3, + STATE(4542), 2, + sym_comment, + sym_include, + [163096] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5295), 1, + anon_sym_LPAREN, + STATE(4543), 2, sym_comment, sym_include, - [162330] = 5, + [163113] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6863), 1, + ACTIONS(6913), 1, sym_identifier, - STATE(4523), 2, + STATE(4544), 2, sym_comment, sym_include, - [162347] = 5, + [163130] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6865), 1, + ACTIONS(6915), 1, sym_identifier, - STATE(4524), 2, + STATE(4545), 2, sym_comment, sym_include, - [162364] = 5, + [163147] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6867), 1, + ACTIONS(6917), 1, sym_identifier, - STATE(4525), 2, + STATE(4546), 2, sym_comment, sym_include, - [162381] = 5, + [163164] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5525), 1, + ACTIONS(6919), 1, sym__terminator, - STATE(4526), 2, - sym_comment, - sym_include, - [162398] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6869), 1, - sym_identifier, - STATE(4527), 2, + STATE(4547), 2, sym_comment, sym_include, - [162415] = 5, + [163181] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6871), 1, - anon_sym_COLON, - STATE(4528), 2, + ACTIONS(5789), 1, + anon_sym_DOT, + STATE(4548), 2, sym_comment, sym_include, - [162432] = 5, + [163198] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(6921), 1, anon_sym_COMMA, - STATE(4529), 2, + STATE(4549), 2, sym_comment, sym_include, - [162449] = 5, - ACTIONS(3), 1, + [163215] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6875), 1, - sym_identifier, - STATE(4530), 2, + ACTIONS(6923), 1, + aux_sym__block_terminator_token1, + STATE(4550), 2, sym_comment, sym_include, - [162466] = 5, + [163232] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6877), 1, - anon_sym_RPAREN, - STATE(4531), 2, + ACTIONS(6925), 1, + anon_sym_COLON, + STATE(4551), 2, sym_comment, sym_include, - [162483] = 5, + [163249] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6879), 1, - anon_sym_LPAREN, - STATE(4532), 2, + ACTIONS(6927), 1, + anon_sym_COLON, + STATE(4552), 2, sym_comment, sym_include, - [162500] = 5, + [163266] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6881), 1, + ACTIONS(6929), 1, aux_sym_buffer_definition_token2, - STATE(4533), 2, + STATE(4553), 2, sym_comment, sym_include, - [162517] = 5, + [163283] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6883), 1, + ACTIONS(6931), 1, aux_sym_buffer_definition_token2, - STATE(4534), 2, + STATE(4554), 2, sym_comment, sym_include, - [162534] = 5, + [163300] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6885), 1, + ACTIONS(6933), 1, anon_sym_COLON, - STATE(4535), 2, + STATE(4555), 2, sym_comment, sym_include, - [162551] = 5, + [163317] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4589), 1, + ACTIONS(4812), 1, aux_sym_of_token1, - STATE(4536), 2, + STATE(4556), 2, sym_comment, sym_include, - [162568] = 5, - ACTIONS(59), 1, + [163334] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3134), 1, - anon_sym_COLON, - STATE(4537), 2, + ACTIONS(6935), 1, + sym_identifier, + STATE(4557), 2, sym_comment, sym_include, - [162585] = 5, + [163351] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6887), 1, + ACTIONS(6937), 1, sym_identifier, - STATE(4538), 2, + STATE(4558), 2, sym_comment, sym_include, - [162602] = 5, - ACTIONS(59), 1, + [163368] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6889), 1, - sym__terminator, - STATE(4539), 2, + ACTIONS(6939), 1, + sym_identifier, + STATE(4559), 2, sym_comment, sym_include, - [162619] = 5, + [163385] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6891), 1, - aux_sym__block_terminator_token1, - STATE(4540), 2, + ACTIONS(6941), 1, + sym__terminator, + STATE(4560), 2, sym_comment, sym_include, - [162636] = 5, - ACTIONS(59), 1, + [163402] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_COLON, - STATE(4541), 2, + ACTIONS(2133), 1, + sym_identifier, + STATE(4561), 2, sym_comment, sym_include, - [162653] = 5, + [163419] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6893), 1, + ACTIONS(6943), 1, aux_sym_buffer_definition_token2, - STATE(4542), 2, + STATE(4562), 2, sym_comment, sym_include, - [162670] = 5, + [163436] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6895), 1, + ACTIONS(6945), 1, aux_sym_buffer_definition_token2, - STATE(4543), 2, + STATE(4563), 2, sym_comment, sym_include, - [162687] = 5, + [163453] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6897), 1, + ACTIONS(6947), 1, sym__terminator, - STATE(4544), 2, + STATE(4564), 2, sym_comment, sym_include, - [162704] = 5, + [163470] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6899), 1, + ACTIONS(6949), 1, aux_sym_of_token1, - STATE(4545), 2, + STATE(4565), 2, sym_comment, sym_include, - [162721] = 5, - ACTIONS(59), 1, + [163487] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(189), 1, - sym__terminator, - STATE(4546), 2, + ACTIONS(6951), 1, + sym_identifier, + STATE(4566), 2, sym_comment, sym_include, - [162738] = 5, + [163504] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6901), 1, - aux_sym__block_terminator_token1, - STATE(4547), 2, + ACTIONS(3152), 1, + anon_sym_COLON, + STATE(4567), 2, sym_comment, sym_include, - [162755] = 5, + [163521] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6903), 1, + ACTIONS(6953), 1, sym_identifier, - STATE(4548), 2, + STATE(4568), 2, sym_comment, sym_include, - [162772] = 5, + [163538] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5475), 1, + ACTIONS(5515), 1, sym__terminator, - STATE(4549), 2, + STATE(4569), 2, sym_comment, sym_include, - [162789] = 5, + [163555] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6905), 1, + ACTIONS(6955), 1, anon_sym_LPAREN, - STATE(4550), 2, + STATE(4570), 2, sym_comment, sym_include, - [162806] = 5, + [163572] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6907), 1, + ACTIONS(6957), 1, sym_identifier, - STATE(4551), 2, + STATE(4571), 2, sym_comment, sym_include, - [162823] = 5, + [163589] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6909), 1, + ACTIONS(6959), 1, sym_identifier, - STATE(4552), 2, + STATE(4572), 2, sym_comment, sym_include, - [162840] = 5, + [163606] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6911), 1, + ACTIONS(6961), 1, sym__terminator, - STATE(4553), 2, + STATE(4573), 2, sym_comment, sym_include, - [162857] = 5, - ACTIONS(3), 1, + [163623] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6913), 1, - sym_identifier, - STATE(4554), 2, + ACTIONS(6963), 1, + aux_sym_buffer_definition_token2, + STATE(4574), 2, sym_comment, sym_include, - [162874] = 5, + [163640] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6915), 1, - sym__terminator, - STATE(4555), 2, + ACTIONS(6965), 1, + aux_sym_buffer_definition_token2, + STATE(4575), 2, sym_comment, sym_include, - [162891] = 5, - ACTIONS(3), 1, + [163657] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6917), 1, - sym_identifier, - STATE(4556), 2, + ACTIONS(5503), 1, + sym__terminator, + STATE(4576), 2, sym_comment, sym_include, - [162908] = 5, + [163674] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6919), 1, + ACTIONS(6967), 1, sym_identifier, - STATE(4557), 2, + STATE(4577), 2, sym_comment, sym_include, - [162925] = 5, + [163691] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6921), 1, + ACTIONS(6969), 1, sym_identifier, - STATE(4558), 2, + STATE(4578), 2, sym_comment, sym_include, - [162942] = 5, + [163708] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6923), 1, - sym__terminator, - STATE(4559), 2, + ACTIONS(3962), 1, + anon_sym_COLON, + STATE(4579), 2, sym_comment, sym_include, - [162959] = 5, + [163725] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6925), 1, + ACTIONS(6971), 1, aux_sym__block_terminator_token1, - STATE(4560), 2, + STATE(4580), 2, sym_comment, sym_include, - [162976] = 5, - ACTIONS(59), 1, + [163742] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6927), 1, - sym__integer_literal, - STATE(4561), 2, + ACTIONS(6973), 1, + sym_identifier, + STATE(4581), 2, sym_comment, sym_include, - [162993] = 5, + [163759] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6929), 1, + ACTIONS(6975), 1, anon_sym_COMMA, - STATE(4562), 2, + STATE(4582), 2, sym_comment, sym_include, - [163010] = 5, + [163776] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6931), 1, - anon_sym_RBRACE, - STATE(4563), 2, + ACTIONS(5495), 1, + sym__terminator, + STATE(4583), 2, sym_comment, sym_include, - [163027] = 5, + [163793] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_EQ, - STATE(4564), 2, + ACTIONS(6977), 1, + aux_sym__block_terminator_token1, + STATE(4584), 2, sym_comment, sym_include, - [163044] = 5, - ACTIONS(59), 1, + [163810] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6933), 1, - aux_sym__block_terminator_token1, - STATE(4565), 2, + ACTIONS(6979), 1, + sym_identifier, + STATE(4585), 2, sym_comment, sym_include, - [163061] = 5, + [163827] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6935), 1, + ACTIONS(6981), 1, aux_sym_buffer_definition_token2, - STATE(4566), 2, + STATE(4586), 2, sym_comment, sym_include, - [163078] = 5, + [163844] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6937), 1, + ACTIONS(6983), 1, aux_sym_buffer_definition_token2, - STATE(4567), 2, + STATE(4587), 2, sym_comment, sym_include, - [163095] = 5, + [163861] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6939), 1, + ACTIONS(6985), 1, anon_sym_COLON, - STATE(4568), 2, + STATE(4588), 2, sym_comment, sym_include, - [163112] = 5, + [163878] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4571), 1, + ACTIONS(4721), 1, aux_sym_of_token1, - STATE(4569), 2, + STATE(4589), 2, sym_comment, sym_include, - [163129] = 5, - ACTIONS(3), 1, + [163895] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6941), 1, - sym_identifier, - STATE(4570), 2, + ACTIONS(4913), 1, + anon_sym_LPAREN, + STATE(4590), 2, sym_comment, sym_include, - [163146] = 5, + [163912] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6943), 1, - anon_sym_COLON, - STATE(4571), 2, + ACTIONS(4855), 1, + sym__terminator, + STATE(4591), 2, sym_comment, sym_include, - [163163] = 5, - ACTIONS(59), 1, + [163929] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5459), 1, - sym__terminator, - STATE(4572), 2, + ACTIONS(6987), 1, + sym_identifier, + STATE(4592), 2, sym_comment, sym_include, - [163180] = 5, - ACTIONS(59), 1, + [163946] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6945), 1, - anon_sym_RPAREN, - STATE(4573), 2, + ACTIONS(6989), 1, + sym_identifier, + STATE(4593), 2, sym_comment, sym_include, - [163197] = 5, + [163963] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, + ACTIONS(5475), 1, sym__terminator, - STATE(4574), 2, + STATE(4594), 2, sym_comment, sym_include, - [163214] = 5, + [163980] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(6991), 1, aux_sym_buffer_definition_token2, - STATE(4575), 2, + STATE(4595), 2, sym_comment, sym_include, - [163231] = 5, + [163997] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6949), 1, + ACTIONS(6993), 1, aux_sym_buffer_definition_token2, - STATE(4576), 2, + STATE(4596), 2, sym_comment, sym_include, - [163248] = 5, + [164014] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6951), 1, + ACTIONS(6995), 1, aux_sym_of_token1, - STATE(4577), 2, + STATE(4597), 2, sym_comment, sym_include, - [163265] = 5, + [164031] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6953), 1, - anon_sym_RPAREN, - STATE(4578), 2, + ACTIONS(6997), 1, + sym__terminator, + STATE(4598), 2, sym_comment, sym_include, - [163282] = 5, + [164048] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6955), 1, - anon_sym_RPAREN, - STATE(4579), 2, + ACTIONS(4368), 1, + anon_sym_EQ, + STATE(4599), 2, sym_comment, sym_include, - [163299] = 5, + [164065] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6957), 1, + ACTIONS(6999), 1, sym_identifier, - STATE(4580), 2, + STATE(4600), 2, sym_comment, sym_include, - [163316] = 5, + [164082] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6959), 1, - aux_sym__block_terminator_token1, - STATE(4581), 2, + ACTIONS(7001), 1, + anon_sym_RPAREN, + STATE(4601), 2, sym_comment, sym_include, - [163333] = 5, + [164099] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6961), 1, + ACTIONS(7003), 1, anon_sym_LPAREN, - STATE(4582), 2, + STATE(4602), 2, sym_comment, sym_include, - [163350] = 5, + [164116] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6963), 1, + ACTIONS(7005), 1, sym_identifier, - STATE(4583), 2, + STATE(4603), 2, sym_comment, sym_include, - [163367] = 5, + [164133] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6965), 1, + ACTIONS(7007), 1, sym_identifier, - STATE(4584), 2, + STATE(4604), 2, sym_comment, sym_include, - [163384] = 5, + [164150] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6967), 1, + ACTIONS(7009), 1, sym__terminator, - STATE(4585), 2, + STATE(4605), 2, sym_comment, sym_include, - [163401] = 5, + [164167] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6969), 1, + ACTIONS(7011), 1, sym_identifier, - STATE(4586), 2, + STATE(4606), 2, sym_comment, sym_include, - [163418] = 5, + [164184] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6971), 1, + ACTIONS(7013), 1, anon_sym_RPAREN, - STATE(4587), 2, + STATE(4607), 2, sym_comment, sym_include, - [163435] = 5, + [164201] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6973), 1, + ACTIONS(7015), 1, anon_sym_RPAREN, - STATE(4588), 2, + STATE(4608), 2, sym_comment, sym_include, - [163452] = 5, + [164218] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6975), 1, + ACTIONS(7017), 1, sym_identifier, - STATE(4589), 2, + STATE(4609), 2, sym_comment, sym_include, - [163469] = 5, + [164235] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6977), 1, + ACTIONS(7019), 1, sym_identifier, - STATE(4590), 2, + STATE(4610), 2, sym_comment, sym_include, - [163486] = 5, + [164252] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6979), 1, + ACTIONS(7021), 1, anon_sym_COLON, - STATE(4591), 2, + STATE(4611), 2, sym_comment, sym_include, - [163503] = 5, - ACTIONS(59), 1, + [164269] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6981), 1, - sym__terminator, - STATE(4592), 2, + ACTIONS(2335), 1, + sym_identifier, + STATE(4612), 2, sym_comment, sym_include, - [163520] = 5, - ACTIONS(3), 1, + [164286] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6983), 1, - sym_identifier, - STATE(4593), 2, + ACTIONS(7023), 1, + sym__terminator, + STATE(4613), 2, sym_comment, sym_include, - [163537] = 5, + [164303] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6985), 1, + ACTIONS(7025), 1, anon_sym_COMMA, - STATE(4594), 2, + STATE(4614), 2, sym_comment, sym_include, - [163554] = 5, + [164320] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6987), 1, - sym__terminator, - STATE(4595), 2, + ACTIONS(7027), 1, + aux_sym_setter_token1, + STATE(4615), 2, sym_comment, sym_include, - [163571] = 5, + [164337] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6989), 1, - sym__terminator, - STATE(4596), 2, + ACTIONS(7029), 1, + anon_sym_RPAREN, + STATE(4616), 2, sym_comment, sym_include, - [163588] = 5, + [164354] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6991), 1, - anon_sym_RBRACE, - STATE(4597), 2, + ACTIONS(7031), 1, + aux_sym__block_terminator_token1, + STATE(4617), 2, sym_comment, sym_include, - [163605] = 5, + [164371] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7033), 1, aux_sym_buffer_definition_token2, - STATE(4598), 2, + STATE(4618), 2, sym_comment, sym_include, - [163622] = 5, + [164388] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6995), 1, + ACTIONS(7035), 1, aux_sym_buffer_definition_token2, - STATE(4599), 2, + STATE(4619), 2, sym_comment, sym_include, - [163639] = 5, + [164405] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6997), 1, + ACTIONS(7037), 1, anon_sym_COLON, - STATE(4600), 2, + STATE(4620), 2, sym_comment, sym_include, - [163656] = 5, + [164422] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4531), 1, + ACTIONS(4647), 1, aux_sym_of_token1, - STATE(4601), 2, + STATE(4621), 2, sym_comment, sym_include, - [163673] = 5, + [164439] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6999), 1, - sym__terminator, - STATE(4602), 2, + ACTIONS(7039), 1, + anon_sym_RBRACE, + STATE(4622), 2, sym_comment, sym_include, - [163690] = 5, + [164456] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5101), 1, - aux_sym_on_error_phrase_token2, - STATE(4603), 2, + ACTIONS(7041), 1, + sym__integer_literal, + STATE(4623), 2, sym_comment, sym_include, - [163707] = 5, + [164473] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7001), 1, - aux_sym_variable_definition_token5, - STATE(4604), 2, + ACTIONS(7043), 1, + anon_sym_RBRACE, + STATE(4624), 2, sym_comment, sym_include, - [163724] = 5, + [164490] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7003), 1, + ACTIONS(7045), 1, anon_sym_RPAREN, - STATE(4605), 2, + STATE(4625), 2, sym_comment, sym_include, - [163741] = 5, + [164507] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5419), 1, - sym__terminator, - STATE(4606), 2, + ACTIONS(7047), 1, + anon_sym_COLON, + STATE(4626), 2, sym_comment, sym_include, - [163758] = 5, + [164524] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7005), 1, + ACTIONS(7049), 1, aux_sym_buffer_definition_token2, - STATE(4607), 2, + STATE(4627), 2, sym_comment, sym_include, - [163775] = 5, + [164541] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7007), 1, + ACTIONS(7051), 1, aux_sym_buffer_definition_token2, - STATE(4608), 2, + STATE(4628), 2, sym_comment, sym_include, - [163792] = 5, + [164558] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7009), 1, + ACTIONS(7053), 1, aux_sym_of_token1, - STATE(4609), 2, + STATE(4629), 2, sym_comment, sym_include, - [163809] = 5, + [164575] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7011), 1, - sym__integer_literal, - STATE(4610), 2, + ACTIONS(7055), 1, + sym__terminator, + STATE(4630), 2, sym_comment, sym_include, - [163826] = 5, + [164592] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7013), 1, + ACTIONS(7057), 1, anon_sym_LPAREN, - STATE(4611), 2, + STATE(4631), 2, sym_comment, sym_include, - [163843] = 5, + [164609] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7015), 1, - anon_sym_RBRACE, - STATE(4612), 2, + ACTIONS(7059), 1, + sym__integer_literal, + STATE(4632), 2, sym_comment, sym_include, - [163860] = 5, + [164626] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7017), 1, + ACTIONS(7061), 1, anon_sym_RBRACE, - STATE(4613), 2, + STATE(4633), 2, sym_comment, sym_include, - [163877] = 5, + [164643] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7019), 1, + ACTIONS(7063), 1, anon_sym_LPAREN, - STATE(4614), 2, + STATE(4634), 2, sym_comment, sym_include, - [163894] = 5, + [164660] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7021), 1, + ACTIONS(7065), 1, sym__terminator, - STATE(4615), 2, + STATE(4635), 2, sym_comment, sym_include, - [163911] = 5, + [164677] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7023), 1, + ACTIONS(5423), 1, sym__terminator, - STATE(4616), 2, + STATE(4636), 2, sym_comment, sym_include, - [163928] = 5, + [164694] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7025), 1, + ACTIONS(7067), 1, sym_identifier, - STATE(4617), 2, + STATE(4637), 2, sym_comment, sym_include, - [163945] = 5, + [164711] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7027), 1, + ACTIONS(7069), 1, sym_identifier, - STATE(4618), 2, + STATE(4638), 2, sym_comment, sym_include, - [163962] = 5, + [164728] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7029), 1, - sym__integer_literal, - STATE(4619), 2, + ACTIONS(5411), 1, + sym__terminator, + STATE(4639), 2, sym_comment, sym_include, - [163979] = 5, + [164745] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7031), 1, + ACTIONS(7071), 1, sym_identifier, - STATE(4620), 2, + STATE(4640), 2, sym_comment, sym_include, - [163996] = 5, + [164762] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7033), 1, - aux_sym_comment_token1, - STATE(4621), 2, + ACTIONS(7073), 1, + sym_identifier, + STATE(4641), 2, sym_comment, sym_include, - [164013] = 5, + [164779] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5231), 1, - sym__terminator, - STATE(4622), 2, + ACTIONS(7075), 1, + aux_sym__block_terminator_token1, + STATE(4642), 2, sym_comment, sym_include, - [164030] = 5, + [164796] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7035), 1, + ACTIONS(7077), 1, sym_identifier, - STATE(4623), 2, + STATE(4643), 2, sym_comment, sym_include, - [164047] = 5, + [164813] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7037), 1, + ACTIONS(7079), 1, sym_identifier, - STATE(4624), 2, + STATE(4644), 2, sym_comment, sym_include, - [164064] = 5, + [164830] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7039), 1, + ACTIONS(7081), 1, sym_identifier, - STATE(4625), 2, + STATE(4645), 2, sym_comment, sym_include, - [164081] = 5, + [164847] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3065), 1, - anon_sym_COLON, - STATE(4626), 2, + ACTIONS(7083), 1, + sym__terminator, + STATE(4646), 2, sym_comment, sym_include, - [164098] = 5, + [164864] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7041), 1, - sym__terminator, - STATE(4627), 2, + ACTIONS(4931), 1, + aux_sym_on_error_phrase_token2, + STATE(4647), 2, sym_comment, sym_include, - [164115] = 5, + [164881] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7043), 1, - anon_sym_COLON, - STATE(4628), 2, + ACTIONS(7085), 1, + sym__terminator, + STATE(4648), 2, sym_comment, sym_include, - [164132] = 5, + [164898] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7045), 1, + ACTIONS(7087), 1, sym_identifier, - STATE(4629), 2, + STATE(4649), 2, sym_comment, sym_include, - [164149] = 5, + [164915] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7047), 1, + ACTIONS(7089), 1, sym_identifier, - STATE(4630), 2, + STATE(4650), 2, + sym_comment, + sym_include, + [164932] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7091), 1, + sym_identifier, + STATE(4651), 2, + sym_comment, + sym_include, + [164949] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7093), 1, + sym_identifier, + STATE(4652), 2, + sym_comment, + sym_include, + [164966] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(7095), 1, + sym__terminator, + STATE(4653), 2, sym_comment, sym_include, - [164166] = 5, - ACTIONS(3), 1, + [164983] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7049), 1, - sym_identifier, - STATE(4631), 2, + ACTIONS(7097), 1, + anon_sym_LPAREN, + STATE(4654), 2, sym_comment, sym_include, - [164183] = 5, - ACTIONS(3), 1, + [165000] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7051), 1, - sym_identifier, - STATE(4632), 2, + ACTIONS(7099), 1, + anon_sym_RPAREN, + STATE(4655), 2, sym_comment, sym_include, - [164200] = 5, + [165017] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5387), 1, - sym__terminator, - STATE(4633), 2, + ACTIONS(7101), 1, + aux_sym_variable_definition_token5, + STATE(4656), 2, sym_comment, sym_include, - [164217] = 5, + [165034] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7053), 1, - anon_sym_LPAREN, - STATE(4634), 2, + ACTIONS(7103), 1, + sym__terminator, + STATE(4657), 2, sym_comment, sym_include, - [164234] = 5, + [165051] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7055), 1, - anon_sym_COLON, - STATE(4635), 2, + ACTIONS(7105), 1, + sym__terminator, + STATE(4658), 2, sym_comment, sym_include, - [164251] = 5, + [165068] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7057), 1, - anon_sym_COMMA, - STATE(4636), 2, + ACTIONS(7107), 1, + aux_sym_setter_token1, + STATE(4659), 2, + sym_comment, + sym_include, + [165085] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7109), 1, + sym_identifier, + STATE(4660), 2, + sym_comment, + sym_include, + [165102] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(7111), 1, + aux_sym_comment_token1, + STATE(4661), 2, sym_comment, sym_include, - [164268] = 5, + [165119] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7059), 1, - anon_sym_RPAREN, - STATE(4637), 2, + ACTIONS(3120), 1, + anon_sym_COLON, + STATE(4662), 2, sym_comment, sym_include, - [164285] = 5, + [165136] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7061), 1, - anon_sym_RPAREN, - STATE(4638), 2, + ACTIONS(7113), 1, + anon_sym_COMMA, + STATE(4663), 2, sym_comment, sym_include, - [164302] = 5, + [165153] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7063), 1, - sym__terminator, - STATE(4639), 2, + ACTIONS(7115), 1, + anon_sym_RBRACE, + STATE(4664), 2, sym_comment, sym_include, - [164319] = 5, + [165170] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7065), 1, - anon_sym_LPAREN, - STATE(4640), 2, + ACTIONS(7117), 1, + aux_sym__block_terminator_token1, + STATE(4665), 2, sym_comment, sym_include, - [164336] = 5, + [165187] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7067), 1, - anon_sym_RBRACE, - STATE(4641), 2, + ACTIONS(7119), 1, + anon_sym_RPAREN, + STATE(4666), 2, sym_comment, sym_include, - [164353] = 5, + [165204] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7069), 1, + ACTIONS(7121), 1, sym__terminator, - STATE(4642), 2, + STATE(4667), 2, sym_comment, sym_include, - [164370] = 5, + [165221] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3850), 1, - anon_sym_COLON, - STATE(4643), 2, + ACTIONS(7123), 1, + sym__integer_literal, + STATE(4668), 2, sym_comment, sym_include, - [164387] = 5, + [165238] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7071), 1, - sym__terminator, - STATE(4644), 2, + ACTIONS(3873), 1, + anon_sym_COLON, + STATE(4669), 2, sym_comment, sym_include, - [164404] = 5, + [165255] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7073), 1, + ACTIONS(7125), 1, aux_sym_output_stream_statement_token1, - STATE(4645), 2, + STATE(4670), 2, sym_comment, sym_include, - [164421] = 5, + [165272] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7075), 1, - anon_sym_RPAREN, - STATE(4646), 2, + ACTIONS(7127), 1, + anon_sym_RBRACE, + STATE(4671), 2, sym_comment, sym_include, - [164438] = 5, + [165289] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7077), 1, + ACTIONS(7129), 1, sym__terminator, - STATE(4647), 2, + STATE(4672), 2, sym_comment, sym_include, - [164455] = 5, + [165306] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7079), 1, + ACTIONS(7131), 1, sym_identifier, - STATE(4648), 2, + STATE(4673), 2, sym_comment, sym_include, - [164472] = 5, + [165323] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7081), 1, + ACTIONS(7133), 1, sym_identifier, - STATE(4649), 2, + STATE(4674), 2, sym_comment, sym_include, - [164489] = 5, + [165340] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7083), 1, + ACTIONS(7135), 1, sym__terminator, - STATE(4650), 2, - sym_comment, - sym_include, - [164506] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(7085), 1, - sym_identifier, - STATE(4651), 2, + STATE(4675), 2, sym_comment, sym_include, - [164523] = 5, + [165357] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7087), 1, + ACTIONS(7137), 1, sym_identifier, - STATE(4652), 2, + STATE(4676), 2, sym_comment, sym_include, - [164540] = 5, + [165374] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7089), 1, + ACTIONS(7139), 1, sym_identifier, - STATE(4653), 2, + STATE(4677), 2, sym_comment, sym_include, - [164557] = 5, + [165391] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7091), 1, + ACTIONS(7141), 1, sym_identifier, - STATE(4654), 2, + STATE(4678), 2, sym_comment, sym_include, - [164574] = 5, + [165408] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7093), 1, + ACTIONS(7143), 1, sym_identifier, - STATE(4655), 2, - sym_comment, - sym_include, - [164591] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(7095), 1, - aux_sym_procedure_parameter_definition_token2, - STATE(4656), 2, - sym_comment, - sym_include, - [164608] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(7097), 1, - sym__integer_literal, - STATE(4657), 2, - sym_comment, - sym_include, - [164625] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(7099), 1, - sym__terminator, - STATE(4658), 2, + STATE(4679), 2, sym_comment, sym_include, - [164642] = 5, + [165425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7101), 1, + ACTIONS(7145), 1, sym_identifier, - STATE(4659), 2, + STATE(4680), 2, sym_comment, sym_include, - [164659] = 5, + [165442] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7103), 1, + ACTIONS(7147), 1, sym_identifier, - STATE(4660), 2, + STATE(4681), 2, sym_comment, sym_include, - [164676] = 5, + [165459] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7105), 1, + ACTIONS(7149), 1, sym_identifier, - STATE(4661), 2, + STATE(4682), 2, sym_comment, sym_include, - [164693] = 5, + [165476] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7107), 1, + ACTIONS(7151), 1, sym_identifier, - STATE(4662), 2, + STATE(4683), 2, sym_comment, sym_include, - [164710] = 5, + [165493] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7109), 1, + ACTIONS(7153), 1, sym_identifier, - STATE(4663), 2, - sym_comment, - sym_include, - [164727] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(7111), 1, - anon_sym_RBRACE, - STATE(4664), 2, + STATE(4684), 2, sym_comment, sym_include, - [164744] = 5, + [165510] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7113), 1, - sym__terminator, - STATE(4665), 2, + ACTIONS(7155), 1, + aux_sym_procedure_parameter_definition_token2, + STATE(4685), 2, sym_comment, sym_include, - [164761] = 5, + [165527] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(7157), 1, sym__terminator, - STATE(4666), 2, + STATE(4686), 2, sym_comment, sym_include, - [164778] = 5, + [165544] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7117), 1, + ACTIONS(7159), 1, sym_identifier, - STATE(4667), 2, + STATE(4687), 2, sym_comment, sym_include, - [164795] = 5, + [165561] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7119), 1, + ACTIONS(7161), 1, sym_identifier, - STATE(4668), 2, + STATE(4688), 2, sym_comment, sym_include, - [164812] = 5, + [165578] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7121), 1, + ACTIONS(7163), 1, sym_identifier, - STATE(4669), 2, + STATE(4689), 2, sym_comment, sym_include, - [164829] = 5, + [165595] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7123), 1, - anon_sym_LPAREN, - STATE(4670), 2, + ACTIONS(7165), 1, + sym__terminator, + STATE(4690), 2, sym_comment, sym_include, - [164846] = 5, - ACTIONS(3), 1, + [165612] = 5, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7125), 1, - sym_identifier, - STATE(4671), 2, + ACTIONS(7167), 1, + aux_sym_setter_token1, + STATE(4691), 2, sym_comment, sym_include, - [164863] = 5, + [165629] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7127), 1, + ACTIONS(7169), 1, sym_identifier, - STATE(4672), 2, + STATE(4692), 2, sym_comment, sym_include, - [164880] = 5, - ACTIONS(59), 1, + [165646] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7129), 1, - sym__terminator, - STATE(4673), 2, + ACTIONS(7171), 1, + sym_identifier, + STATE(4693), 2, sym_comment, sym_include, - [164897] = 5, + [165663] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7131), 1, - sym__terminator, - STATE(4674), 2, + ACTIONS(7173), 1, + aux_sym__block_terminator_token1, + STATE(4694), 2, sym_comment, sym_include, - [164914] = 5, + [165680] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7133), 1, + ACTIONS(7175), 1, sym_identifier, - STATE(4675), 2, + STATE(4695), 2, sym_comment, sym_include, - [164931] = 5, + [165697] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7135), 1, + ACTIONS(7177), 1, sym_identifier, - STATE(4676), 2, + STATE(4696), 2, sym_comment, sym_include, - [164948] = 5, + [165714] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7137), 1, + ACTIONS(7179), 1, sym_identifier, - STATE(4677), 2, + STATE(4697), 2, sym_comment, sym_include, - [164965] = 5, + [165731] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5345), 1, - sym__terminator, - STATE(4678), 2, + ACTIONS(7181), 1, + anon_sym_LPAREN, + STATE(4698), 2, sym_comment, sym_include, - [164982] = 5, + [165748] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7139), 1, - anon_sym_RBRACE, - STATE(4679), 2, + ACTIONS(7183), 1, + sym__terminator, + STATE(4699), 2, sym_comment, sym_include, - [164999] = 5, + [165765] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7141), 1, + ACTIONS(7185), 1, sym__terminator, - STATE(4680), 2, - sym_comment, - sym_include, - [165016] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(7143), 1, - sym_identifier, - STATE(4681), 2, + STATE(4700), 2, sym_comment, sym_include, - [165033] = 5, + [165782] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7145), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(4682), 2, + STATE(4701), 2, sym_comment, sym_include, - [165050] = 5, + [165799] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7147), 1, + ACTIONS(7189), 1, sym_identifier, - STATE(4683), 2, + STATE(4702), 2, sym_comment, sym_include, - [165067] = 5, + [165816] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7149), 1, + ACTIONS(7191), 1, sym_identifier, - STATE(4684), 2, + STATE(4703), 2, sym_comment, sym_include, - [165084] = 5, + [165833] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7151), 1, - aux_sym__block_terminator_token1, - STATE(4685), 2, + ACTIONS(7193), 1, + sym__terminator, + STATE(4704), 2, sym_comment, sym_include, - [165101] = 5, + [165850] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7153), 1, - aux_sym__block_terminator_token1, - STATE(4686), 2, + ACTIONS(7195), 1, + aux_sym_setter_token1, + STATE(4705), 2, sym_comment, sym_include, - [165118] = 5, + [165867] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7155), 1, - anon_sym_SLASH, - STATE(4687), 2, + ACTIONS(7197), 1, + sym__terminator, + STATE(4706), 2, sym_comment, sym_include, - [165135] = 5, + [165884] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7157), 1, - aux_sym_comment_token2, - STATE(4688), 2, + ACTIONS(7199), 1, + sym_identifier, + STATE(4707), 2, sym_comment, sym_include, - [165152] = 5, + [165901] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5389), 1, + sym__terminator, + STATE(4708), 2, + sym_comment, + sym_include, + [165918] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7159), 1, + ACTIONS(7201), 1, sym_identifier, - STATE(4689), 2, + STATE(4709), 2, sym_comment, sym_include, - [165169] = 5, + [165935] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7161), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(4690), 2, + STATE(4710), 2, sym_comment, sym_include, - [165186] = 5, + [165952] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7163), 1, + ACTIONS(7205), 1, sym_identifier, - STATE(4691), 2, + STATE(4711), 2, sym_comment, sym_include, - [165203] = 5, + [165969] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7165), 1, - anon_sym_RPAREN, - STATE(4692), 2, + ACTIONS(7207), 1, + anon_sym_SLASH, + STATE(4712), 2, sym_comment, sym_include, - [165220] = 5, - ACTIONS(59), 1, + [165986] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7167), 1, - sym__terminator, - STATE(4693), 2, + ACTIONS(7209), 1, + aux_sym_comment_token2, + STATE(4713), 2, sym_comment, sym_include, - [165237] = 5, + [166003] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5319), 1, - sym__terminator, - STATE(4694), 2, + ACTIONS(7211), 1, + anon_sym_RPAREN, + STATE(4714), 2, sym_comment, sym_include, - [165254] = 5, + [166020] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7169), 1, + ACTIONS(7213), 1, sym_identifier, - STATE(4695), 2, + STATE(4715), 2, sym_comment, sym_include, - [165271] = 5, + [166037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7171), 1, + ACTIONS(7215), 1, sym_identifier, - STATE(4696), 2, + STATE(4716), 2, sym_comment, sym_include, - [165288] = 5, + [166054] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7173), 1, + ACTIONS(7217), 1, sym_identifier, - STATE(4697), 2, + STATE(4717), 2, + sym_comment, + sym_include, + [166071] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2383), 1, + sym_identifier, + STATE(4718), 2, sym_comment, sym_include, - [165305] = 5, + [166088] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7175), 1, + ACTIONS(7219), 1, sym__terminator, - STATE(4698), 2, + STATE(4719), 2, + sym_comment, + sym_include, + [166105] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(7221), 1, + sym__terminator, + STATE(4720), 2, sym_comment, sym_include, - [165322] = 5, + [166122] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4316), 1, + ACTIONS(4483), 1, anon_sym_EQ, - STATE(4699), 2, + STATE(4721), 2, sym_comment, sym_include, - [165339] = 5, + [166139] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7177), 1, - ts_builtin_sym_end, - STATE(4700), 2, + ACTIONS(7223), 1, + aux_sym_procedure_parameter_definition_token2, + STATE(4722), 2, sym_comment, sym_include, - [165356] = 5, + [166156] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7179), 1, - anon_sym_RBRACE, - STATE(4701), 2, + ACTIONS(7225), 1, + ts_builtin_sym_end, + STATE(4723), 2, sym_comment, sym_include, - [165373] = 5, + [166173] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7181), 1, - aux_sym_procedure_parameter_definition_token2, - STATE(4702), 2, + ACTIONS(7227), 1, + aux_sym_variable_definition_token5, + STATE(4724), 2, sym_comment, sym_include, - [165390] = 5, + [166190] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7183), 1, - anon_sym_COLON, - STATE(4703), 2, + ACTIONS(7229), 1, + anon_sym_RBRACE, + STATE(4725), 2, sym_comment, sym_include, - [165407] = 5, + [166207] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7185), 1, - aux_sym_variable_definition_token5, - STATE(4704), 2, + ACTIONS(7231), 1, + anon_sym_COLON, + STATE(4726), 2, sym_comment, sym_include, - [165424] = 5, + [166224] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7187), 1, + ACTIONS(7233), 1, sym_identifier, - STATE(4705), 2, + STATE(4727), 2, sym_comment, sym_include, - [165441] = 5, + [166241] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7189), 1, + ACTIONS(7235), 1, sym_identifier, - STATE(4706), 2, + STATE(4728), 2, sym_comment, sym_include, - [165458] = 5, + [166258] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7191), 1, - aux_sym__block_terminator_token1, - STATE(4707), 2, + ACTIONS(7237), 1, + anon_sym_RPAREN, + STATE(4729), 2, sym_comment, sym_include, - [165475] = 5, + [166275] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_RPAREN, - STATE(4708), 2, + ACTIONS(7239), 1, + sym__integer_literal, + STATE(4730), 2, sym_comment, sym_include, - [165492] = 5, + [166292] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7195), 1, + ACTIONS(7241), 1, sym_identifier, - STATE(4709), 2, + STATE(4731), 2, sym_comment, sym_include, - [165509] = 5, + [166309] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7197), 1, + ACTIONS(7243), 1, sym_identifier, - STATE(4710), 2, + STATE(4732), 2, sym_comment, sym_include, - [165526] = 5, + [166326] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7199), 1, - sym__integer_literal, - STATE(4711), 2, - sym_comment, - sym_include, - [165543] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6011), 1, - anon_sym_DOT, - STATE(4712), 2, - sym_comment, - sym_include, - [165560] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(7201), 1, - sym__terminator, - STATE(4713), 2, + ACTIONS(7245), 1, + anon_sym_RBRACE, + STATE(4733), 2, sym_comment, sym_include, - [165577] = 5, + [166343] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7203), 1, + ACTIONS(7247), 1, sym_file_name, - STATE(4714), 2, + STATE(4734), 2, sym_comment, sym_include, - [165594] = 1, - ACTIONS(7205), 1, + [166360] = 1, + ACTIONS(7249), 1, ts_builtin_sym_end, - [165598] = 1, - ACTIONS(7207), 1, + [166364] = 1, + ACTIONS(7251), 1, ts_builtin_sym_end, - [165602] = 1, - ACTIONS(7209), 1, + [166368] = 1, + ACTIONS(7253), 1, ts_builtin_sym_end, - [165606] = 1, - ACTIONS(7211), 1, + [166372] = 1, + ACTIONS(7255), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(297)] = 0, - [SMALL_STATE(298)] = 135, - [SMALL_STATE(299)] = 270, - [SMALL_STATE(300)] = 405, - [SMALL_STATE(301)] = 540, - [SMALL_STATE(302)] = 675, - [SMALL_STATE(303)] = 805, - [SMALL_STATE(304)] = 935, - [SMALL_STATE(305)] = 1065, - [SMALL_STATE(306)] = 1195, - [SMALL_STATE(307)] = 1325, - [SMALL_STATE(308)] = 1455, - [SMALL_STATE(309)] = 1585, - [SMALL_STATE(310)] = 1715, - [SMALL_STATE(311)] = 1845, - [SMALL_STATE(312)] = 1975, - [SMALL_STATE(313)] = 2105, - [SMALL_STATE(314)] = 2235, - [SMALL_STATE(315)] = 2365, - [SMALL_STATE(316)] = 2495, - [SMALL_STATE(317)] = 2625, - [SMALL_STATE(318)] = 2755, - [SMALL_STATE(319)] = 2885, - [SMALL_STATE(320)] = 3015, - [SMALL_STATE(321)] = 3145, - [SMALL_STATE(322)] = 3275, - [SMALL_STATE(323)] = 3399, - [SMALL_STATE(324)] = 3517, - [SMALL_STATE(325)] = 3635, - [SMALL_STATE(326)] = 3753, - [SMALL_STATE(327)] = 3871, - [SMALL_STATE(328)] = 3988, - [SMALL_STATE(329)] = 4105, - [SMALL_STATE(330)] = 4222, - [SMALL_STATE(331)] = 4339, - [SMALL_STATE(332)] = 4454, - [SMALL_STATE(333)] = 4527, - [SMALL_STATE(334)] = 4642, - [SMALL_STATE(335)] = 4759, - [SMALL_STATE(336)] = 4874, - [SMALL_STATE(337)] = 4945, - [SMALL_STATE(338)] = 5060, - [SMALL_STATE(339)] = 5175, - [SMALL_STATE(340)] = 5289, - [SMALL_STATE(341)] = 5403, - [SMALL_STATE(342)] = 5517, - [SMALL_STATE(343)] = 5585, - [SMALL_STATE(344)] = 5699, - [SMALL_STATE(345)] = 5813, - [SMALL_STATE(346)] = 5924, - [SMALL_STATE(347)] = 6035, - [SMALL_STATE(348)] = 6146, - [SMALL_STATE(349)] = 6257, - [SMALL_STATE(350)] = 6368, - [SMALL_STATE(351)] = 6479, - [SMALL_STATE(352)] = 6590, - [SMALL_STATE(353)] = 6701, - [SMALL_STATE(354)] = 6812, - [SMALL_STATE(355)] = 6923, - [SMALL_STATE(356)] = 7034, - [SMALL_STATE(357)] = 7145, - [SMALL_STATE(358)] = 7256, - [SMALL_STATE(359)] = 7367, - [SMALL_STATE(360)] = 7478, - [SMALL_STATE(361)] = 7589, - [SMALL_STATE(362)] = 7700, - [SMALL_STATE(363)] = 7811, - [SMALL_STATE(364)] = 7922, - [SMALL_STATE(365)] = 8033, - [SMALL_STATE(366)] = 8144, - [SMALL_STATE(367)] = 8255, - [SMALL_STATE(368)] = 8366, - [SMALL_STATE(369)] = 8477, - [SMALL_STATE(370)] = 8588, - [SMALL_STATE(371)] = 8699, - [SMALL_STATE(372)] = 8810, - [SMALL_STATE(373)] = 8921, - [SMALL_STATE(374)] = 9032, - [SMALL_STATE(375)] = 9143, - [SMALL_STATE(376)] = 9254, - [SMALL_STATE(377)] = 9365, - [SMALL_STATE(378)] = 9476, - [SMALL_STATE(379)] = 9587, - [SMALL_STATE(380)] = 9698, - [SMALL_STATE(381)] = 9809, - [SMALL_STATE(382)] = 9920, - [SMALL_STATE(383)] = 10031, - [SMALL_STATE(384)] = 10142, - [SMALL_STATE(385)] = 10253, - [SMALL_STATE(386)] = 10364, - [SMALL_STATE(387)] = 10475, - [SMALL_STATE(388)] = 10586, - [SMALL_STATE(389)] = 10697, - [SMALL_STATE(390)] = 10808, - [SMALL_STATE(391)] = 10919, - [SMALL_STATE(392)] = 11030, - [SMALL_STATE(393)] = 11141, - [SMALL_STATE(394)] = 11252, - [SMALL_STATE(395)] = 11363, - [SMALL_STATE(396)] = 11474, - [SMALL_STATE(397)] = 11585, - [SMALL_STATE(398)] = 11696, - [SMALL_STATE(399)] = 11807, - [SMALL_STATE(400)] = 11918, - [SMALL_STATE(401)] = 12029, - [SMALL_STATE(402)] = 12140, - [SMALL_STATE(403)] = 12251, - [SMALL_STATE(404)] = 12362, - [SMALL_STATE(405)] = 12473, - [SMALL_STATE(406)] = 12584, - [SMALL_STATE(407)] = 12695, - [SMALL_STATE(408)] = 12806, - [SMALL_STATE(409)] = 12917, - [SMALL_STATE(410)] = 13028, - [SMALL_STATE(411)] = 13139, - [SMALL_STATE(412)] = 13250, - [SMALL_STATE(413)] = 13361, - [SMALL_STATE(414)] = 13472, - [SMALL_STATE(415)] = 13583, - [SMALL_STATE(416)] = 13694, - [SMALL_STATE(417)] = 13805, - [SMALL_STATE(418)] = 13916, - [SMALL_STATE(419)] = 14027, - [SMALL_STATE(420)] = 14138, - [SMALL_STATE(421)] = 14249, - [SMALL_STATE(422)] = 14360, - [SMALL_STATE(423)] = 14471, - [SMALL_STATE(424)] = 14582, - [SMALL_STATE(425)] = 14693, - [SMALL_STATE(426)] = 14804, - [SMALL_STATE(427)] = 14915, - [SMALL_STATE(428)] = 15026, - [SMALL_STATE(429)] = 15137, - [SMALL_STATE(430)] = 15248, - [SMALL_STATE(431)] = 15359, - [SMALL_STATE(432)] = 15470, - [SMALL_STATE(433)] = 15581, - [SMALL_STATE(434)] = 15692, - [SMALL_STATE(435)] = 15803, - [SMALL_STATE(436)] = 15914, - [SMALL_STATE(437)] = 16025, - [SMALL_STATE(438)] = 16136, - [SMALL_STATE(439)] = 16247, - [SMALL_STATE(440)] = 16358, - [SMALL_STATE(441)] = 16469, - [SMALL_STATE(442)] = 16580, - [SMALL_STATE(443)] = 16691, - [SMALL_STATE(444)] = 16802, - [SMALL_STATE(445)] = 16913, - [SMALL_STATE(446)] = 17024, - [SMALL_STATE(447)] = 17135, - [SMALL_STATE(448)] = 17246, - [SMALL_STATE(449)] = 17357, - [SMALL_STATE(450)] = 17468, - [SMALL_STATE(451)] = 17579, - [SMALL_STATE(452)] = 17690, - [SMALL_STATE(453)] = 17801, - [SMALL_STATE(454)] = 17912, - [SMALL_STATE(455)] = 18023, - [SMALL_STATE(456)] = 18134, - [SMALL_STATE(457)] = 18245, - [SMALL_STATE(458)] = 18356, - [SMALL_STATE(459)] = 18467, - [SMALL_STATE(460)] = 18578, - [SMALL_STATE(461)] = 18689, - [SMALL_STATE(462)] = 18800, - [SMALL_STATE(463)] = 18911, - [SMALL_STATE(464)] = 19022, - [SMALL_STATE(465)] = 19133, - [SMALL_STATE(466)] = 19244, - [SMALL_STATE(467)] = 19355, - [SMALL_STATE(468)] = 19466, - [SMALL_STATE(469)] = 19577, - [SMALL_STATE(470)] = 19688, - [SMALL_STATE(471)] = 19799, - [SMALL_STATE(472)] = 19910, - [SMALL_STATE(473)] = 20021, - [SMALL_STATE(474)] = 20132, - [SMALL_STATE(475)] = 20243, - [SMALL_STATE(476)] = 20354, - [SMALL_STATE(477)] = 20465, - [SMALL_STATE(478)] = 20576, - [SMALL_STATE(479)] = 20687, - [SMALL_STATE(480)] = 20798, - [SMALL_STATE(481)] = 20909, - [SMALL_STATE(482)] = 21020, - [SMALL_STATE(483)] = 21131, - [SMALL_STATE(484)] = 21242, - [SMALL_STATE(485)] = 21353, - [SMALL_STATE(486)] = 21464, - [SMALL_STATE(487)] = 21575, - [SMALL_STATE(488)] = 21686, - [SMALL_STATE(489)] = 21797, - [SMALL_STATE(490)] = 21908, - [SMALL_STATE(491)] = 22019, - [SMALL_STATE(492)] = 22130, - [SMALL_STATE(493)] = 22241, - [SMALL_STATE(494)] = 22352, - [SMALL_STATE(495)] = 22463, - [SMALL_STATE(496)] = 22574, - [SMALL_STATE(497)] = 22685, - [SMALL_STATE(498)] = 22796, - [SMALL_STATE(499)] = 22907, - [SMALL_STATE(500)] = 23018, - [SMALL_STATE(501)] = 23129, - [SMALL_STATE(502)] = 23240, - [SMALL_STATE(503)] = 23351, - [SMALL_STATE(504)] = 23462, - [SMALL_STATE(505)] = 23573, - [SMALL_STATE(506)] = 23684, - [SMALL_STATE(507)] = 23795, - [SMALL_STATE(508)] = 23906, - [SMALL_STATE(509)] = 24017, - [SMALL_STATE(510)] = 24128, - [SMALL_STATE(511)] = 24239, - [SMALL_STATE(512)] = 24350, - [SMALL_STATE(513)] = 24461, - [SMALL_STATE(514)] = 24572, - [SMALL_STATE(515)] = 24683, - [SMALL_STATE(516)] = 24794, - [SMALL_STATE(517)] = 24905, - [SMALL_STATE(518)] = 25016, - [SMALL_STATE(519)] = 25127, - [SMALL_STATE(520)] = 25238, - [SMALL_STATE(521)] = 25312, - [SMALL_STATE(522)] = 25390, - [SMALL_STATE(523)] = 25468, - [SMALL_STATE(524)] = 25546, - [SMALL_STATE(525)] = 25620, - [SMALL_STATE(526)] = 25692, - [SMALL_STATE(527)] = 25768, - [SMALL_STATE(528)] = 25846, - [SMALL_STATE(529)] = 25920, - [SMALL_STATE(530)] = 25998, - [SMALL_STATE(531)] = 26076, - [SMALL_STATE(532)] = 26154, - [SMALL_STATE(533)] = 26232, - [SMALL_STATE(534)] = 26298, - [SMALL_STATE(535)] = 26364, - [SMALL_STATE(536)] = 26428, - [SMALL_STATE(537)] = 26494, - [SMALL_STATE(538)] = 26560, - [SMALL_STATE(539)] = 26624, - [SMALL_STATE(540)] = 26685, - [SMALL_STATE(541)] = 26776, - [SMALL_STATE(542)] = 26867, - [SMALL_STATE(543)] = 26928, - [SMALL_STATE(544)] = 26991, - [SMALL_STATE(545)] = 27082, - [SMALL_STATE(546)] = 27145, - [SMALL_STATE(547)] = 27236, - [SMALL_STATE(548)] = 27327, - [SMALL_STATE(549)] = 27418, - [SMALL_STATE(550)] = 27509, - [SMALL_STATE(551)] = 27600, - [SMALL_STATE(552)] = 27691, - [SMALL_STATE(553)] = 27782, - [SMALL_STATE(554)] = 27845, - [SMALL_STATE(555)] = 27905, - [SMALL_STATE(556)] = 27965, - [SMALL_STATE(557)] = 28025, - [SMALL_STATE(558)] = 28085, - [SMALL_STATE(559)] = 28145, - [SMALL_STATE(560)] = 28205, - [SMALL_STATE(561)] = 28265, - [SMALL_STATE(562)] = 28325, - [SMALL_STATE(563)] = 28385, - [SMALL_STATE(564)] = 28445, - [SMALL_STATE(565)] = 28505, - [SMALL_STATE(566)] = 28565, - [SMALL_STATE(567)] = 28625, - [SMALL_STATE(568)] = 28685, - [SMALL_STATE(569)] = 28747, - [SMALL_STATE(570)] = 28807, - [SMALL_STATE(571)] = 28867, - [SMALL_STATE(572)] = 28927, - [SMALL_STATE(573)] = 28987, - [SMALL_STATE(574)] = 29047, - [SMALL_STATE(575)] = 29107, - [SMALL_STATE(576)] = 29167, - [SMALL_STATE(577)] = 29227, - [SMALL_STATE(578)] = 29287, - [SMALL_STATE(579)] = 29347, - [SMALL_STATE(580)] = 29407, - [SMALL_STATE(581)] = 29467, - [SMALL_STATE(582)] = 29527, - [SMALL_STATE(583)] = 29589, - [SMALL_STATE(584)] = 29671, - [SMALL_STATE(585)] = 29731, - [SMALL_STATE(586)] = 29791, - [SMALL_STATE(587)] = 29851, - [SMALL_STATE(588)] = 29930, - [SMALL_STATE(589)] = 30009, - [SMALL_STATE(590)] = 30088, - [SMALL_STATE(591)] = 30156, - [SMALL_STATE(592)] = 30248, - [SMALL_STATE(593)] = 30340, - [SMALL_STATE(594)] = 30432, - [SMALL_STATE(595)] = 30524, - [SMALL_STATE(596)] = 30616, - [SMALL_STATE(597)] = 30708, - [SMALL_STATE(598)] = 30800, - [SMALL_STATE(599)] = 30868, - [SMALL_STATE(600)] = 30960, - [SMALL_STATE(601)] = 31052, - [SMALL_STATE(602)] = 31144, - [SMALL_STATE(603)] = 31236, - [SMALL_STATE(604)] = 31328, - [SMALL_STATE(605)] = 31420, - [SMALL_STATE(606)] = 31512, - [SMALL_STATE(607)] = 31587, - [SMALL_STATE(608)] = 31658, - [SMALL_STATE(609)] = 31735, - [SMALL_STATE(610)] = 31812, - [SMALL_STATE(611)] = 31877, - [SMALL_STATE(612)] = 31946, - [SMALL_STATE(613)] = 32023, - [SMALL_STATE(614)] = 32100, - [SMALL_STATE(615)] = 32177, - [SMALL_STATE(616)] = 32254, - [SMALL_STATE(617)] = 32331, - [SMALL_STATE(618)] = 32389, - [SMALL_STATE(619)] = 32449, - [SMALL_STATE(620)] = 32532, - [SMALL_STATE(621)] = 32615, - [SMALL_STATE(622)] = 32674, - [SMALL_STATE(623)] = 32729, - [SMALL_STATE(624)] = 32794, - [SMALL_STATE(625)] = 32877, - [SMALL_STATE(626)] = 32960, - [SMALL_STATE(627)] = 33043, - [SMALL_STATE(628)] = 33126, - [SMALL_STATE(629)] = 33183, - [SMALL_STATE(630)] = 33266, - [SMALL_STATE(631)] = 33325, - [SMALL_STATE(632)] = 33408, - [SMALL_STATE(633)] = 33467, - [SMALL_STATE(634)] = 33550, - [SMALL_STATE(635)] = 33615, - [SMALL_STATE(636)] = 33698, - [SMALL_STATE(637)] = 33764, - [SMALL_STATE(638)] = 33830, - [SMALL_STATE(639)] = 33902, - [SMALL_STATE(640)] = 33974, - [SMALL_STATE(641)] = 34030, - [SMALL_STATE(642)] = 34086, - [SMALL_STATE(643)] = 34160, - [SMALL_STATE(644)] = 34216, - [SMALL_STATE(645)] = 34284, - [SMALL_STATE(646)] = 34356, - [SMALL_STATE(647)] = 34428, - [SMALL_STATE(648)] = 34500, - [SMALL_STATE(649)] = 34556, - [SMALL_STATE(650)] = 34628, - [SMALL_STATE(651)] = 34700, - [SMALL_STATE(652)] = 34772, - [SMALL_STATE(653)] = 34844, - [SMALL_STATE(654)] = 34914, - [SMALL_STATE(655)] = 34986, - [SMALL_STATE(656)] = 35048, - [SMALL_STATE(657)] = 35104, - [SMALL_STATE(658)] = 35158, - [SMALL_STATE(659)] = 35230, - [SMALL_STATE(660)] = 35298, - [SMALL_STATE(661)] = 35368, - [SMALL_STATE(662)] = 35430, - [SMALL_STATE(663)] = 35502, - [SMALL_STATE(664)] = 35574, - [SMALL_STATE(665)] = 35646, - [SMALL_STATE(666)] = 35717, - [SMALL_STATE(667)] = 35770, - [SMALL_STATE(668)] = 35823, - [SMALL_STATE(669)] = 35876, - [SMALL_STATE(670)] = 35929, - [SMALL_STATE(671)] = 35982, - [SMALL_STATE(672)] = 36035, - [SMALL_STATE(673)] = 36088, - [SMALL_STATE(674)] = 36141, - [SMALL_STATE(675)] = 36194, - [SMALL_STATE(676)] = 36247, - [SMALL_STATE(677)] = 36332, - [SMALL_STATE(678)] = 36385, - [SMALL_STATE(679)] = 36438, - [SMALL_STATE(680)] = 36523, - [SMALL_STATE(681)] = 36608, - [SMALL_STATE(682)] = 36661, - [SMALL_STATE(683)] = 36714, - [SMALL_STATE(684)] = 36799, - [SMALL_STATE(685)] = 36852, - [SMALL_STATE(686)] = 36937, - [SMALL_STATE(687)] = 36990, - [SMALL_STATE(688)] = 37075, - [SMALL_STATE(689)] = 37128, - [SMALL_STATE(690)] = 37181, - [SMALL_STATE(691)] = 37234, - [SMALL_STATE(692)] = 37287, - [SMALL_STATE(693)] = 37372, - [SMALL_STATE(694)] = 37425, - [SMALL_STATE(695)] = 37510, - [SMALL_STATE(696)] = 37581, - [SMALL_STATE(697)] = 37666, - [SMALL_STATE(698)] = 37719, - [SMALL_STATE(699)] = 37804, - [SMALL_STATE(700)] = 37859, - [SMALL_STATE(701)] = 37912, - [SMALL_STATE(702)] = 37965, - [SMALL_STATE(703)] = 38050, - [SMALL_STATE(704)] = 38103, - [SMALL_STATE(705)] = 38156, - [SMALL_STATE(706)] = 38241, - [SMALL_STATE(707)] = 38294, - [SMALL_STATE(708)] = 38351, - [SMALL_STATE(709)] = 38436, - [SMALL_STATE(710)] = 38489, - [SMALL_STATE(711)] = 38574, - [SMALL_STATE(712)] = 38627, - [SMALL_STATE(713)] = 38712, - [SMALL_STATE(714)] = 38765, - [SMALL_STATE(715)] = 38836, - [SMALL_STATE(716)] = 38886, - [SMALL_STATE(717)] = 38956, - [SMALL_STATE(718)] = 39008, - [SMALL_STATE(719)] = 39064, - [SMALL_STATE(720)] = 39116, - [SMALL_STATE(721)] = 39172, - [SMALL_STATE(722)] = 39228, - [SMALL_STATE(723)] = 39282, - [SMALL_STATE(724)] = 39335, - [SMALL_STATE(725)] = 39388, - [SMALL_STATE(726)] = 39441, - [SMALL_STATE(727)] = 39494, - [SMALL_STATE(728)] = 39547, - [SMALL_STATE(729)] = 39598, - [SMALL_STATE(730)] = 39651, - [SMALL_STATE(731)] = 39700, - [SMALL_STATE(732)] = 39797, - [SMALL_STATE(733)] = 39850, - [SMALL_STATE(734)] = 39900, - [SMALL_STATE(735)] = 39950, - [SMALL_STATE(736)] = 40018, - [SMALL_STATE(737)] = 40068, - [SMALL_STATE(738)] = 40118, - [SMALL_STATE(739)] = 40168, - [SMALL_STATE(740)] = 40218, - [SMALL_STATE(741)] = 40268, - [SMALL_STATE(742)] = 40318, - [SMALL_STATE(743)] = 40384, - [SMALL_STATE(744)] = 40434, - [SMALL_STATE(745)] = 40484, - [SMALL_STATE(746)] = 40534, - [SMALL_STATE(747)] = 40584, - [SMALL_STATE(748)] = 40634, - [SMALL_STATE(749)] = 40684, - [SMALL_STATE(750)] = 40734, - [SMALL_STATE(751)] = 40784, - [SMALL_STATE(752)] = 40834, - [SMALL_STATE(753)] = 40884, - [SMALL_STATE(754)] = 40934, - [SMALL_STATE(755)] = 40984, - [SMALL_STATE(756)] = 41034, - [SMALL_STATE(757)] = 41084, - [SMALL_STATE(758)] = 41134, - [SMALL_STATE(759)] = 41184, - [SMALL_STATE(760)] = 41234, - [SMALL_STATE(761)] = 41284, - [SMALL_STATE(762)] = 41334, - [SMALL_STATE(763)] = 41384, - [SMALL_STATE(764)] = 41434, - [SMALL_STATE(765)] = 41484, - [SMALL_STATE(766)] = 41543, - [SMALL_STATE(767)] = 41612, - [SMALL_STATE(768)] = 41671, - [SMALL_STATE(769)] = 41721, - [SMALL_STATE(770)] = 41783, - [SMALL_STATE(771)] = 41843, - [SMALL_STATE(772)] = 41927, - [SMALL_STATE(773)] = 41989, - [SMALL_STATE(774)] = 42041, - [SMALL_STATE(775)] = 42091, - [SMALL_STATE(776)] = 42147, - [SMALL_STATE(777)] = 42205, - [SMALL_STATE(778)] = 42267, - [SMALL_STATE(779)] = 42329, - [SMALL_STATE(780)] = 42391, - [SMALL_STATE(781)] = 42447, - [SMALL_STATE(782)] = 42509, - [SMALL_STATE(783)] = 42561, - [SMALL_STATE(784)] = 42613, - [SMALL_STATE(785)] = 42675, - [SMALL_STATE(786)] = 42737, - [SMALL_STATE(787)] = 42791, - [SMALL_STATE(788)] = 42857, - [SMALL_STATE(789)] = 42913, - [SMALL_STATE(790)] = 42967, - [SMALL_STATE(791)] = 43020, - [SMALL_STATE(792)] = 43069, - [SMALL_STATE(793)] = 43128, - [SMALL_STATE(794)] = 43199, - [SMALL_STATE(795)] = 43258, - [SMALL_STATE(796)] = 43315, - [SMALL_STATE(797)] = 43374, - [SMALL_STATE(798)] = 43433, - [SMALL_STATE(799)] = 43492, - [SMALL_STATE(800)] = 43549, - [SMALL_STATE(801)] = 43600, - [SMALL_STATE(802)] = 43671, - [SMALL_STATE(803)] = 43730, - [SMALL_STATE(804)] = 43789, - [SMALL_STATE(805)] = 43860, - [SMALL_STATE(806)] = 43919, - [SMALL_STATE(807)] = 43990, - [SMALL_STATE(808)] = 44037, - [SMALL_STATE(809)] = 44094, - [SMALL_STATE(810)] = 44149, - [SMALL_STATE(811)] = 44220, - [SMALL_STATE(812)] = 44285, - [SMALL_STATE(813)] = 44332, - [SMALL_STATE(814)] = 44390, - [SMALL_STATE(815)] = 44436, - [SMALL_STATE(816)] = 44496, - [SMALL_STATE(817)] = 44546, - [SMALL_STATE(818)] = 44594, - [SMALL_STATE(819)] = 44654, - [SMALL_STATE(820)] = 44712, - [SMALL_STATE(821)] = 44772, - [SMALL_STATE(822)] = 44820, - [SMALL_STATE(823)] = 44880, - [SMALL_STATE(824)] = 44938, - [SMALL_STATE(825)] = 45002, - [SMALL_STATE(826)] = 45062, - [SMALL_STATE(827)] = 45112, - [SMALL_STATE(828)] = 45170, - [SMALL_STATE(829)] = 45216, - [SMALL_STATE(830)] = 45276, - [SMALL_STATE(831)] = 45330, - [SMALL_STATE(832)] = 45386, - [SMALL_STATE(833)] = 45446, - [SMALL_STATE(834)] = 45506, - [SMALL_STATE(835)] = 45556, - [SMALL_STATE(836)] = 45599, - [SMALL_STATE(837)] = 45644, - [SMALL_STATE(838)] = 45689, - [SMALL_STATE(839)] = 45732, - [SMALL_STATE(840)] = 45775, - [SMALL_STATE(841)] = 45818, - [SMALL_STATE(842)] = 45861, - [SMALL_STATE(843)] = 45906, - [SMALL_STATE(844)] = 45951, - [SMALL_STATE(845)] = 45994, - [SMALL_STATE(846)] = 46037, - [SMALL_STATE(847)] = 46100, - [SMALL_STATE(848)] = 46143, - [SMALL_STATE(849)] = 46186, + [SMALL_STATE(299)] = 0, + [SMALL_STATE(300)] = 135, + [SMALL_STATE(301)] = 270, + [SMALL_STATE(302)] = 405, + [SMALL_STATE(303)] = 540, + [SMALL_STATE(304)] = 675, + [SMALL_STATE(305)] = 805, + [SMALL_STATE(306)] = 935, + [SMALL_STATE(307)] = 1065, + [SMALL_STATE(308)] = 1195, + [SMALL_STATE(309)] = 1325, + [SMALL_STATE(310)] = 1455, + [SMALL_STATE(311)] = 1585, + [SMALL_STATE(312)] = 1715, + [SMALL_STATE(313)] = 1845, + [SMALL_STATE(314)] = 1975, + [SMALL_STATE(315)] = 2105, + [SMALL_STATE(316)] = 2235, + [SMALL_STATE(317)] = 2365, + [SMALL_STATE(318)] = 2495, + [SMALL_STATE(319)] = 2625, + [SMALL_STATE(320)] = 2755, + [SMALL_STATE(321)] = 2885, + [SMALL_STATE(322)] = 3015, + [SMALL_STATE(323)] = 3145, + [SMALL_STATE(324)] = 3275, + [SMALL_STATE(325)] = 3399, + [SMALL_STATE(326)] = 3517, + [SMALL_STATE(327)] = 3635, + [SMALL_STATE(328)] = 3753, + [SMALL_STATE(329)] = 3871, + [SMALL_STATE(330)] = 3988, + [SMALL_STATE(331)] = 4061, + [SMALL_STATE(332)] = 4176, + [SMALL_STATE(333)] = 4293, + [SMALL_STATE(334)] = 4408, + [SMALL_STATE(335)] = 4525, + [SMALL_STATE(336)] = 4640, + [SMALL_STATE(337)] = 4757, + [SMALL_STATE(338)] = 4828, + [SMALL_STATE(339)] = 4945, + [SMALL_STATE(340)] = 5060, + [SMALL_STATE(341)] = 5175, + [SMALL_STATE(342)] = 5289, + [SMALL_STATE(343)] = 5403, + [SMALL_STATE(344)] = 5471, + [SMALL_STATE(345)] = 5585, + [SMALL_STATE(346)] = 5699, + [SMALL_STATE(347)] = 5813, + [SMALL_STATE(348)] = 5924, + [SMALL_STATE(349)] = 6035, + [SMALL_STATE(350)] = 6146, + [SMALL_STATE(351)] = 6257, + [SMALL_STATE(352)] = 6368, + [SMALL_STATE(353)] = 6479, + [SMALL_STATE(354)] = 6590, + [SMALL_STATE(355)] = 6701, + [SMALL_STATE(356)] = 6812, + [SMALL_STATE(357)] = 6923, + [SMALL_STATE(358)] = 7034, + [SMALL_STATE(359)] = 7145, + [SMALL_STATE(360)] = 7256, + [SMALL_STATE(361)] = 7367, + [SMALL_STATE(362)] = 7478, + [SMALL_STATE(363)] = 7589, + [SMALL_STATE(364)] = 7700, + [SMALL_STATE(365)] = 7811, + [SMALL_STATE(366)] = 7922, + [SMALL_STATE(367)] = 8033, + [SMALL_STATE(368)] = 8144, + [SMALL_STATE(369)] = 8255, + [SMALL_STATE(370)] = 8366, + [SMALL_STATE(371)] = 8477, + [SMALL_STATE(372)] = 8588, + [SMALL_STATE(373)] = 8699, + [SMALL_STATE(374)] = 8810, + [SMALL_STATE(375)] = 8921, + [SMALL_STATE(376)] = 9032, + [SMALL_STATE(377)] = 9143, + [SMALL_STATE(378)] = 9254, + [SMALL_STATE(379)] = 9365, + [SMALL_STATE(380)] = 9476, + [SMALL_STATE(381)] = 9587, + [SMALL_STATE(382)] = 9698, + [SMALL_STATE(383)] = 9809, + [SMALL_STATE(384)] = 9920, + [SMALL_STATE(385)] = 10031, + [SMALL_STATE(386)] = 10142, + [SMALL_STATE(387)] = 10253, + [SMALL_STATE(388)] = 10364, + [SMALL_STATE(389)] = 10475, + [SMALL_STATE(390)] = 10586, + [SMALL_STATE(391)] = 10697, + [SMALL_STATE(392)] = 10808, + [SMALL_STATE(393)] = 10919, + [SMALL_STATE(394)] = 11030, + [SMALL_STATE(395)] = 11141, + [SMALL_STATE(396)] = 11252, + [SMALL_STATE(397)] = 11363, + [SMALL_STATE(398)] = 11474, + [SMALL_STATE(399)] = 11585, + [SMALL_STATE(400)] = 11696, + [SMALL_STATE(401)] = 11807, + [SMALL_STATE(402)] = 11918, + [SMALL_STATE(403)] = 12029, + [SMALL_STATE(404)] = 12140, + [SMALL_STATE(405)] = 12251, + [SMALL_STATE(406)] = 12362, + [SMALL_STATE(407)] = 12473, + [SMALL_STATE(408)] = 12584, + [SMALL_STATE(409)] = 12695, + [SMALL_STATE(410)] = 12806, + [SMALL_STATE(411)] = 12917, + [SMALL_STATE(412)] = 13028, + [SMALL_STATE(413)] = 13139, + [SMALL_STATE(414)] = 13250, + [SMALL_STATE(415)] = 13361, + [SMALL_STATE(416)] = 13472, + [SMALL_STATE(417)] = 13583, + [SMALL_STATE(418)] = 13694, + [SMALL_STATE(419)] = 13805, + [SMALL_STATE(420)] = 13916, + [SMALL_STATE(421)] = 14027, + [SMALL_STATE(422)] = 14138, + [SMALL_STATE(423)] = 14249, + [SMALL_STATE(424)] = 14360, + [SMALL_STATE(425)] = 14471, + [SMALL_STATE(426)] = 14582, + [SMALL_STATE(427)] = 14693, + [SMALL_STATE(428)] = 14804, + [SMALL_STATE(429)] = 14915, + [SMALL_STATE(430)] = 15026, + [SMALL_STATE(431)] = 15137, + [SMALL_STATE(432)] = 15248, + [SMALL_STATE(433)] = 15359, + [SMALL_STATE(434)] = 15470, + [SMALL_STATE(435)] = 15581, + [SMALL_STATE(436)] = 15692, + [SMALL_STATE(437)] = 15803, + [SMALL_STATE(438)] = 15914, + [SMALL_STATE(439)] = 16025, + [SMALL_STATE(440)] = 16136, + [SMALL_STATE(441)] = 16247, + [SMALL_STATE(442)] = 16358, + [SMALL_STATE(443)] = 16469, + [SMALL_STATE(444)] = 16580, + [SMALL_STATE(445)] = 16691, + [SMALL_STATE(446)] = 16802, + [SMALL_STATE(447)] = 16913, + [SMALL_STATE(448)] = 17024, + [SMALL_STATE(449)] = 17135, + [SMALL_STATE(450)] = 17246, + [SMALL_STATE(451)] = 17357, + [SMALL_STATE(452)] = 17468, + [SMALL_STATE(453)] = 17579, + [SMALL_STATE(454)] = 17690, + [SMALL_STATE(455)] = 17801, + [SMALL_STATE(456)] = 17912, + [SMALL_STATE(457)] = 18023, + [SMALL_STATE(458)] = 18134, + [SMALL_STATE(459)] = 18245, + [SMALL_STATE(460)] = 18356, + [SMALL_STATE(461)] = 18467, + [SMALL_STATE(462)] = 18578, + [SMALL_STATE(463)] = 18689, + [SMALL_STATE(464)] = 18800, + [SMALL_STATE(465)] = 18911, + [SMALL_STATE(466)] = 19022, + [SMALL_STATE(467)] = 19133, + [SMALL_STATE(468)] = 19244, + [SMALL_STATE(469)] = 19355, + [SMALL_STATE(470)] = 19466, + [SMALL_STATE(471)] = 19577, + [SMALL_STATE(472)] = 19688, + [SMALL_STATE(473)] = 19799, + [SMALL_STATE(474)] = 19910, + [SMALL_STATE(475)] = 20021, + [SMALL_STATE(476)] = 20132, + [SMALL_STATE(477)] = 20243, + [SMALL_STATE(478)] = 20354, + [SMALL_STATE(479)] = 20465, + [SMALL_STATE(480)] = 20576, + [SMALL_STATE(481)] = 20687, + [SMALL_STATE(482)] = 20798, + [SMALL_STATE(483)] = 20909, + [SMALL_STATE(484)] = 21020, + [SMALL_STATE(485)] = 21131, + [SMALL_STATE(486)] = 21242, + [SMALL_STATE(487)] = 21353, + [SMALL_STATE(488)] = 21464, + [SMALL_STATE(489)] = 21575, + [SMALL_STATE(490)] = 21686, + [SMALL_STATE(491)] = 21797, + [SMALL_STATE(492)] = 21908, + [SMALL_STATE(493)] = 22019, + [SMALL_STATE(494)] = 22130, + [SMALL_STATE(495)] = 22241, + [SMALL_STATE(496)] = 22352, + [SMALL_STATE(497)] = 22463, + [SMALL_STATE(498)] = 22574, + [SMALL_STATE(499)] = 22685, + [SMALL_STATE(500)] = 22796, + [SMALL_STATE(501)] = 22907, + [SMALL_STATE(502)] = 23018, + [SMALL_STATE(503)] = 23129, + [SMALL_STATE(504)] = 23240, + [SMALL_STATE(505)] = 23351, + [SMALL_STATE(506)] = 23462, + [SMALL_STATE(507)] = 23573, + [SMALL_STATE(508)] = 23684, + [SMALL_STATE(509)] = 23795, + [SMALL_STATE(510)] = 23906, + [SMALL_STATE(511)] = 24017, + [SMALL_STATE(512)] = 24128, + [SMALL_STATE(513)] = 24239, + [SMALL_STATE(514)] = 24350, + [SMALL_STATE(515)] = 24461, + [SMALL_STATE(516)] = 24572, + [SMALL_STATE(517)] = 24683, + [SMALL_STATE(518)] = 24794, + [SMALL_STATE(519)] = 24905, + [SMALL_STATE(520)] = 25016, + [SMALL_STATE(521)] = 25127, + [SMALL_STATE(522)] = 25238, + [SMALL_STATE(523)] = 25314, + [SMALL_STATE(524)] = 25388, + [SMALL_STATE(525)] = 25466, + [SMALL_STATE(526)] = 25544, + [SMALL_STATE(527)] = 25622, + [SMALL_STATE(528)] = 25700, + [SMALL_STATE(529)] = 25778, + [SMALL_STATE(530)] = 25852, + [SMALL_STATE(531)] = 25924, + [SMALL_STATE(532)] = 26002, + [SMALL_STATE(533)] = 26080, + [SMALL_STATE(534)] = 26158, + [SMALL_STATE(535)] = 26232, + [SMALL_STATE(536)] = 26298, + [SMALL_STATE(537)] = 26364, + [SMALL_STATE(538)] = 26430, + [SMALL_STATE(539)] = 26496, + [SMALL_STATE(540)] = 26560, + [SMALL_STATE(541)] = 26624, + [SMALL_STATE(542)] = 26715, + [SMALL_STATE(543)] = 26778, + [SMALL_STATE(544)] = 26869, + [SMALL_STATE(545)] = 26932, + [SMALL_STATE(546)] = 26995, + [SMALL_STATE(547)] = 27056, + [SMALL_STATE(548)] = 27117, + [SMALL_STATE(549)] = 27208, + [SMALL_STATE(550)] = 27271, + [SMALL_STATE(551)] = 27362, + [SMALL_STATE(552)] = 27425, + [SMALL_STATE(553)] = 27516, + [SMALL_STATE(554)] = 27607, + [SMALL_STATE(555)] = 27698, + [SMALL_STATE(556)] = 27789, + [SMALL_STATE(557)] = 27880, + [SMALL_STATE(558)] = 27971, + [SMALL_STATE(559)] = 28033, + [SMALL_STATE(560)] = 28093, + [SMALL_STATE(561)] = 28153, + [SMALL_STATE(562)] = 28213, + [SMALL_STATE(563)] = 28273, + [SMALL_STATE(564)] = 28333, + [SMALL_STATE(565)] = 28393, + [SMALL_STATE(566)] = 28453, + [SMALL_STATE(567)] = 28513, + [SMALL_STATE(568)] = 28573, + [SMALL_STATE(569)] = 28655, + [SMALL_STATE(570)] = 28715, + [SMALL_STATE(571)] = 28775, + [SMALL_STATE(572)] = 28835, + [SMALL_STATE(573)] = 28895, + [SMALL_STATE(574)] = 28955, + [SMALL_STATE(575)] = 29015, + [SMALL_STATE(576)] = 29075, + [SMALL_STATE(577)] = 29135, + [SMALL_STATE(578)] = 29195, + [SMALL_STATE(579)] = 29255, + [SMALL_STATE(580)] = 29315, + [SMALL_STATE(581)] = 29375, + [SMALL_STATE(582)] = 29435, + [SMALL_STATE(583)] = 29495, + [SMALL_STATE(584)] = 29555, + [SMALL_STATE(585)] = 29615, + [SMALL_STATE(586)] = 29675, + [SMALL_STATE(587)] = 29735, + [SMALL_STATE(588)] = 29795, + [SMALL_STATE(589)] = 29855, + [SMALL_STATE(590)] = 29915, + [SMALL_STATE(591)] = 29977, + [SMALL_STATE(592)] = 30056, + [SMALL_STATE(593)] = 30135, + [SMALL_STATE(594)] = 30214, + [SMALL_STATE(595)] = 30306, + [SMALL_STATE(596)] = 30398, + [SMALL_STATE(597)] = 30490, + [SMALL_STATE(598)] = 30582, + [SMALL_STATE(599)] = 30674, + [SMALL_STATE(600)] = 30766, + [SMALL_STATE(601)] = 30858, + [SMALL_STATE(602)] = 30926, + [SMALL_STATE(603)] = 31018, + [SMALL_STATE(604)] = 31110, + [SMALL_STATE(605)] = 31202, + [SMALL_STATE(606)] = 31270, + [SMALL_STATE(607)] = 31362, + [SMALL_STATE(608)] = 31454, + [SMALL_STATE(609)] = 31546, + [SMALL_STATE(610)] = 31638, + [SMALL_STATE(611)] = 31715, + [SMALL_STATE(612)] = 31792, + [SMALL_STATE(613)] = 31869, + [SMALL_STATE(614)] = 31946, + [SMALL_STATE(615)] = 32023, + [SMALL_STATE(616)] = 32100, + [SMALL_STATE(617)] = 32177, + [SMALL_STATE(618)] = 32246, + [SMALL_STATE(619)] = 32311, + [SMALL_STATE(620)] = 32382, + [SMALL_STATE(621)] = 32457, + [SMALL_STATE(622)] = 32517, + [SMALL_STATE(623)] = 32575, + [SMALL_STATE(624)] = 32634, + [SMALL_STATE(625)] = 32699, + [SMALL_STATE(626)] = 32782, + [SMALL_STATE(627)] = 32865, + [SMALL_STATE(628)] = 32930, + [SMALL_STATE(629)] = 33013, + [SMALL_STATE(630)] = 33096, + [SMALL_STATE(631)] = 33179, + [SMALL_STATE(632)] = 33262, + [SMALL_STATE(633)] = 33345, + [SMALL_STATE(634)] = 33428, + [SMALL_STATE(635)] = 33487, + [SMALL_STATE(636)] = 33570, + [SMALL_STATE(637)] = 33625, + [SMALL_STATE(638)] = 33708, + [SMALL_STATE(639)] = 33765, + [SMALL_STATE(640)] = 33824, + [SMALL_STATE(641)] = 33890, + [SMALL_STATE(642)] = 33962, + [SMALL_STATE(643)] = 34018, + [SMALL_STATE(644)] = 34088, + [SMALL_STATE(645)] = 34160, + [SMALL_STATE(646)] = 34234, + [SMALL_STATE(647)] = 34306, + [SMALL_STATE(648)] = 34368, + [SMALL_STATE(649)] = 34440, + [SMALL_STATE(650)] = 34508, + [SMALL_STATE(651)] = 34564, + [SMALL_STATE(652)] = 34636, + [SMALL_STATE(653)] = 34708, + [SMALL_STATE(654)] = 34780, + [SMALL_STATE(655)] = 34836, + [SMALL_STATE(656)] = 34908, + [SMALL_STATE(657)] = 34964, + [SMALL_STATE(658)] = 35036, + [SMALL_STATE(659)] = 35092, + [SMALL_STATE(660)] = 35162, + [SMALL_STATE(661)] = 35216, + [SMALL_STATE(662)] = 35288, + [SMALL_STATE(663)] = 35360, + [SMALL_STATE(664)] = 35426, + [SMALL_STATE(665)] = 35488, + [SMALL_STATE(666)] = 35556, + [SMALL_STATE(667)] = 35628, + [SMALL_STATE(668)] = 35684, + [SMALL_STATE(669)] = 35756, + [SMALL_STATE(670)] = 35812, + [SMALL_STATE(671)] = 35884, + [SMALL_STATE(672)] = 35937, + [SMALL_STATE(673)] = 35990, + [SMALL_STATE(674)] = 36043, + [SMALL_STATE(675)] = 36096, + [SMALL_STATE(676)] = 36181, + [SMALL_STATE(677)] = 36234, + [SMALL_STATE(678)] = 36287, + [SMALL_STATE(679)] = 36372, + [SMALL_STATE(680)] = 36427, + [SMALL_STATE(681)] = 36480, + [SMALL_STATE(682)] = 36533, + [SMALL_STATE(683)] = 36590, + [SMALL_STATE(684)] = 36675, + [SMALL_STATE(685)] = 36728, + [SMALL_STATE(686)] = 36799, + [SMALL_STATE(687)] = 36852, + [SMALL_STATE(688)] = 36905, + [SMALL_STATE(689)] = 36958, + [SMALL_STATE(690)] = 37011, + [SMALL_STATE(691)] = 37064, + [SMALL_STATE(692)] = 37149, + [SMALL_STATE(693)] = 37202, + [SMALL_STATE(694)] = 37287, + [SMALL_STATE(695)] = 37372, + [SMALL_STATE(696)] = 37425, + [SMALL_STATE(697)] = 37496, + [SMALL_STATE(698)] = 37549, + [SMALL_STATE(699)] = 37602, + [SMALL_STATE(700)] = 37655, + [SMALL_STATE(701)] = 37708, + [SMALL_STATE(702)] = 37761, + [SMALL_STATE(703)] = 37846, + [SMALL_STATE(704)] = 37931, + [SMALL_STATE(705)] = 38016, + [SMALL_STATE(706)] = 38069, + [SMALL_STATE(707)] = 38122, + [SMALL_STATE(708)] = 38175, + [SMALL_STATE(709)] = 38228, + [SMALL_STATE(710)] = 38281, + [SMALL_STATE(711)] = 38334, + [SMALL_STATE(712)] = 38419, + [SMALL_STATE(713)] = 38504, + [SMALL_STATE(714)] = 38575, + [SMALL_STATE(715)] = 38628, + [SMALL_STATE(716)] = 38713, + [SMALL_STATE(717)] = 38798, + [SMALL_STATE(718)] = 38883, + [SMALL_STATE(719)] = 38968, + [SMALL_STATE(720)] = 39021, + [SMALL_STATE(721)] = 39074, + [SMALL_STATE(722)] = 39130, + [SMALL_STATE(723)] = 39182, + [SMALL_STATE(724)] = 39238, + [SMALL_STATE(725)] = 39288, + [SMALL_STATE(726)] = 39340, + [SMALL_STATE(727)] = 39396, + [SMALL_STATE(728)] = 39450, + [SMALL_STATE(729)] = 39520, + [SMALL_STATE(730)] = 39573, + [SMALL_STATE(731)] = 39626, + [SMALL_STATE(732)] = 39677, + [SMALL_STATE(733)] = 39730, + [SMALL_STATE(734)] = 39827, + [SMALL_STATE(735)] = 39876, + [SMALL_STATE(736)] = 39929, + [SMALL_STATE(737)] = 39982, + [SMALL_STATE(738)] = 40035, + [SMALL_STATE(739)] = 40088, + [SMALL_STATE(740)] = 40138, + [SMALL_STATE(741)] = 40188, + [SMALL_STATE(742)] = 40238, + [SMALL_STATE(743)] = 40306, + [SMALL_STATE(744)] = 40356, + [SMALL_STATE(745)] = 40406, + [SMALL_STATE(746)] = 40456, + [SMALL_STATE(747)] = 40506, + [SMALL_STATE(748)] = 40556, + [SMALL_STATE(749)] = 40608, + [SMALL_STATE(750)] = 40658, + [SMALL_STATE(751)] = 40708, + [SMALL_STATE(752)] = 40758, + [SMALL_STATE(753)] = 40808, + [SMALL_STATE(754)] = 40858, + [SMALL_STATE(755)] = 40908, + [SMALL_STATE(756)] = 40958, + [SMALL_STATE(757)] = 41008, + [SMALL_STATE(758)] = 41060, + [SMALL_STATE(759)] = 41110, + [SMALL_STATE(760)] = 41160, + [SMALL_STATE(761)] = 41210, + [SMALL_STATE(762)] = 41260, + [SMALL_STATE(763)] = 41310, + [SMALL_STATE(764)] = 41360, + [SMALL_STATE(765)] = 41410, + [SMALL_STATE(766)] = 41460, + [SMALL_STATE(767)] = 41510, + [SMALL_STATE(768)] = 41560, + [SMALL_STATE(769)] = 41610, + [SMALL_STATE(770)] = 41660, + [SMALL_STATE(771)] = 41726, + [SMALL_STATE(772)] = 41776, + [SMALL_STATE(773)] = 41826, + [SMALL_STATE(774)] = 41895, + [SMALL_STATE(775)] = 41954, + [SMALL_STATE(776)] = 42013, + [SMALL_STATE(777)] = 42075, + [SMALL_STATE(778)] = 42131, + [SMALL_STATE(779)] = 42185, + [SMALL_STATE(780)] = 42241, + [SMALL_STATE(781)] = 42301, + [SMALL_STATE(782)] = 42359, + [SMALL_STATE(783)] = 42421, + [SMALL_STATE(784)] = 42483, + [SMALL_STATE(785)] = 42545, + [SMALL_STATE(786)] = 42607, + [SMALL_STATE(787)] = 42669, + [SMALL_STATE(788)] = 42731, + [SMALL_STATE(789)] = 42797, + [SMALL_STATE(790)] = 42847, + [SMALL_STATE(791)] = 42899, + [SMALL_STATE(792)] = 42961, + [SMALL_STATE(793)] = 43045, + [SMALL_STATE(794)] = 43097, + [SMALL_STATE(795)] = 43147, + [SMALL_STATE(796)] = 43203, + [SMALL_STATE(797)] = 43257, + [SMALL_STATE(798)] = 43309, + [SMALL_STATE(799)] = 43380, + [SMALL_STATE(800)] = 43439, + [SMALL_STATE(801)] = 43496, + [SMALL_STATE(802)] = 43549, + [SMALL_STATE(803)] = 43604, + [SMALL_STATE(804)] = 43663, + [SMALL_STATE(805)] = 43722, + [SMALL_STATE(806)] = 43769, + [SMALL_STATE(807)] = 43828, + [SMALL_STATE(808)] = 43887, + [SMALL_STATE(809)] = 43946, + [SMALL_STATE(810)] = 44017, + [SMALL_STATE(811)] = 44074, + [SMALL_STATE(812)] = 44123, + [SMALL_STATE(813)] = 44182, + [SMALL_STATE(814)] = 44233, + [SMALL_STATE(815)] = 44304, + [SMALL_STATE(816)] = 44369, + [SMALL_STATE(817)] = 44426, + [SMALL_STATE(818)] = 44497, + [SMALL_STATE(819)] = 44568, + [SMALL_STATE(820)] = 44615, + [SMALL_STATE(821)] = 44674, + [SMALL_STATE(822)] = 44724, + [SMALL_STATE(823)] = 44770, + [SMALL_STATE(824)] = 44818, + [SMALL_STATE(825)] = 44878, + [SMALL_STATE(826)] = 44936, + [SMALL_STATE(827)] = 44984, + [SMALL_STATE(828)] = 45042, + [SMALL_STATE(829)] = 45102, + [SMALL_STATE(830)] = 45162, + [SMALL_STATE(831)] = 45212, + [SMALL_STATE(832)] = 45270, + [SMALL_STATE(833)] = 45330, + [SMALL_STATE(834)] = 45390, + [SMALL_STATE(835)] = 45450, + [SMALL_STATE(836)] = 45510, + [SMALL_STATE(837)] = 45560, + [SMALL_STATE(838)] = 45614, + [SMALL_STATE(839)] = 45672, + [SMALL_STATE(840)] = 45718, + [SMALL_STATE(841)] = 45782, + [SMALL_STATE(842)] = 45838, + [SMALL_STATE(843)] = 45898, + [SMALL_STATE(844)] = 45941, + [SMALL_STATE(845)] = 45986, + [SMALL_STATE(846)] = 46031, + [SMALL_STATE(847)] = 46076, + [SMALL_STATE(848)] = 46121, + [SMALL_STATE(849)] = 46166, [SMALL_STATE(850)] = 46229, - [SMALL_STATE(851)] = 46292, - [SMALL_STATE(852)] = 46355, - [SMALL_STATE(853)] = 46400, - [SMALL_STATE(854)] = 46445, - [SMALL_STATE(855)] = 46488, - [SMALL_STATE(856)] = 46531, - [SMALL_STATE(857)] = 46574, - [SMALL_STATE(858)] = 46617, - [SMALL_STATE(859)] = 46660, - [SMALL_STATE(860)] = 46723, - [SMALL_STATE(861)] = 46768, - [SMALL_STATE(862)] = 46813, - [SMALL_STATE(863)] = 46858, - [SMALL_STATE(864)] = 46901, - [SMALL_STATE(865)] = 46944, - [SMALL_STATE(866)] = 46987, - [SMALL_STATE(867)] = 47030, - [SMALL_STATE(868)] = 47075, - [SMALL_STATE(869)] = 47118, - [SMALL_STATE(870)] = 47165, - [SMALL_STATE(871)] = 47208, - [SMALL_STATE(872)] = 47251, - [SMALL_STATE(873)] = 47296, - [SMALL_STATE(874)] = 47341, - [SMALL_STATE(875)] = 47386, - [SMALL_STATE(876)] = 47431, - [SMALL_STATE(877)] = 47476, - [SMALL_STATE(878)] = 47521, - [SMALL_STATE(879)] = 47566, - [SMALL_STATE(880)] = 47609, - [SMALL_STATE(881)] = 47652, - [SMALL_STATE(882)] = 47695, - [SMALL_STATE(883)] = 47738, - [SMALL_STATE(884)] = 47781, - [SMALL_STATE(885)] = 47824, - [SMALL_STATE(886)] = 47867, - [SMALL_STATE(887)] = 47910, - [SMALL_STATE(888)] = 47989, - [SMALL_STATE(889)] = 48032, - [SMALL_STATE(890)] = 48077, - [SMALL_STATE(891)] = 48122, - [SMALL_STATE(892)] = 48169, - [SMALL_STATE(893)] = 48212, - [SMALL_STATE(894)] = 48259, - [SMALL_STATE(895)] = 48302, - [SMALL_STATE(896)] = 48347, - [SMALL_STATE(897)] = 48392, - [SMALL_STATE(898)] = 48437, - [SMALL_STATE(899)] = 48480, - [SMALL_STATE(900)] = 48525, - [SMALL_STATE(901)] = 48570, - [SMALL_STATE(902)] = 48615, - [SMALL_STATE(903)] = 48660, - [SMALL_STATE(904)] = 48705, - [SMALL_STATE(905)] = 48750, - [SMALL_STATE(906)] = 48795, - [SMALL_STATE(907)] = 48840, - [SMALL_STATE(908)] = 48885, - [SMALL_STATE(909)] = 48928, - [SMALL_STATE(910)] = 48973, - [SMALL_STATE(911)] = 49016, - [SMALL_STATE(912)] = 49059, - [SMALL_STATE(913)] = 49106, - [SMALL_STATE(914)] = 49151, - [SMALL_STATE(915)] = 49194, - [SMALL_STATE(916)] = 49237, - [SMALL_STATE(917)] = 49280, - [SMALL_STATE(918)] = 49323, - [SMALL_STATE(919)] = 49366, - [SMALL_STATE(920)] = 49409, - [SMALL_STATE(921)] = 49452, - [SMALL_STATE(922)] = 49495, - [SMALL_STATE(923)] = 49538, - [SMALL_STATE(924)] = 49581, - [SMALL_STATE(925)] = 49624, - [SMALL_STATE(926)] = 49667, - [SMALL_STATE(927)] = 49710, - [SMALL_STATE(928)] = 49753, - [SMALL_STATE(929)] = 49796, - [SMALL_STATE(930)] = 49839, - [SMALL_STATE(931)] = 49882, - [SMALL_STATE(932)] = 49925, - [SMALL_STATE(933)] = 49968, - [SMALL_STATE(934)] = 50011, - [SMALL_STATE(935)] = 50054, - [SMALL_STATE(936)] = 50097, - [SMALL_STATE(937)] = 50140, - [SMALL_STATE(938)] = 50183, - [SMALL_STATE(939)] = 50228, - [SMALL_STATE(940)] = 50273, - [SMALL_STATE(941)] = 50318, - [SMALL_STATE(942)] = 50361, - [SMALL_STATE(943)] = 50404, - [SMALL_STATE(944)] = 50447, - [SMALL_STATE(945)] = 50492, - [SMALL_STATE(946)] = 50535, - [SMALL_STATE(947)] = 50580, - [SMALL_STATE(948)] = 50623, - [SMALL_STATE(949)] = 50666, - [SMALL_STATE(950)] = 50711, - [SMALL_STATE(951)] = 50754, - [SMALL_STATE(952)] = 50799, - [SMALL_STATE(953)] = 50844, - [SMALL_STATE(954)] = 50889, - [SMALL_STATE(955)] = 50934, - [SMALL_STATE(956)] = 50979, - [SMALL_STATE(957)] = 51022, - [SMALL_STATE(958)] = 51065, - [SMALL_STATE(959)] = 51110, - [SMALL_STATE(960)] = 51153, - [SMALL_STATE(961)] = 51198, - [SMALL_STATE(962)] = 51243, - [SMALL_STATE(963)] = 51286, - [SMALL_STATE(964)] = 51329, - [SMALL_STATE(965)] = 51372, - [SMALL_STATE(966)] = 51415, - [SMALL_STATE(967)] = 51458, - [SMALL_STATE(968)] = 51501, - [SMALL_STATE(969)] = 51544, - [SMALL_STATE(970)] = 51587, - [SMALL_STATE(971)] = 51630, - [SMALL_STATE(972)] = 51673, - [SMALL_STATE(973)] = 51716, - [SMALL_STATE(974)] = 51759, - [SMALL_STATE(975)] = 51802, - [SMALL_STATE(976)] = 51845, - [SMALL_STATE(977)] = 51888, - [SMALL_STATE(978)] = 51931, - [SMALL_STATE(979)] = 51974, - [SMALL_STATE(980)] = 52017, - [SMALL_STATE(981)] = 52060, - [SMALL_STATE(982)] = 52103, - [SMALL_STATE(983)] = 52146, - [SMALL_STATE(984)] = 52191, - [SMALL_STATE(985)] = 52234, - [SMALL_STATE(986)] = 52279, - [SMALL_STATE(987)] = 52322, - [SMALL_STATE(988)] = 52365, - [SMALL_STATE(989)] = 52408, - [SMALL_STATE(990)] = 52453, - [SMALL_STATE(991)] = 52498, - [SMALL_STATE(992)] = 52543, - [SMALL_STATE(993)] = 52586, - [SMALL_STATE(994)] = 52631, - [SMALL_STATE(995)] = 52674, - [SMALL_STATE(996)] = 52717, - [SMALL_STATE(997)] = 52760, - [SMALL_STATE(998)] = 52803, - [SMALL_STATE(999)] = 52848, - [SMALL_STATE(1000)] = 52891, - [SMALL_STATE(1001)] = 52936, - [SMALL_STATE(1002)] = 52979, - [SMALL_STATE(1003)] = 53022, - [SMALL_STATE(1004)] = 53067, - [SMALL_STATE(1005)] = 53110, - [SMALL_STATE(1006)] = 53155, - [SMALL_STATE(1007)] = 53198, - [SMALL_STATE(1008)] = 53241, - [SMALL_STATE(1009)] = 53284, - [SMALL_STATE(1010)] = 53327, - [SMALL_STATE(1011)] = 53372, - [SMALL_STATE(1012)] = 53415, - [SMALL_STATE(1013)] = 53458, - [SMALL_STATE(1014)] = 53501, - [SMALL_STATE(1015)] = 53544, - [SMALL_STATE(1016)] = 53587, - [SMALL_STATE(1017)] = 53630, - [SMALL_STATE(1018)] = 53673, - [SMALL_STATE(1019)] = 53718, - [SMALL_STATE(1020)] = 53761, - [SMALL_STATE(1021)] = 53806, - [SMALL_STATE(1022)] = 53851, - [SMALL_STATE(1023)] = 53894, - [SMALL_STATE(1024)] = 53941, - [SMALL_STATE(1025)] = 53986, - [SMALL_STATE(1026)] = 54031, - [SMALL_STATE(1027)] = 54076, - [SMALL_STATE(1028)] = 54121, - [SMALL_STATE(1029)] = 54170, - [SMALL_STATE(1030)] = 54215, - [SMALL_STATE(1031)] = 54260, - [SMALL_STATE(1032)] = 54305, - [SMALL_STATE(1033)] = 54350, - [SMALL_STATE(1034)] = 54395, - [SMALL_STATE(1035)] = 54440, - [SMALL_STATE(1036)] = 54485, - [SMALL_STATE(1037)] = 54530, - [SMALL_STATE(1038)] = 54575, - [SMALL_STATE(1039)] = 54620, - [SMALL_STATE(1040)] = 54663, - [SMALL_STATE(1041)] = 54706, - [SMALL_STATE(1042)] = 54749, - [SMALL_STATE(1043)] = 54792, - [SMALL_STATE(1044)] = 54835, - [SMALL_STATE(1045)] = 54880, - [SMALL_STATE(1046)] = 54923, - [SMALL_STATE(1047)] = 54966, - [SMALL_STATE(1048)] = 55009, - [SMALL_STATE(1049)] = 55054, - [SMALL_STATE(1050)] = 55097, - [SMALL_STATE(1051)] = 55142, - [SMALL_STATE(1052)] = 55187, - [SMALL_STATE(1053)] = 55232, - [SMALL_STATE(1054)] = 55277, - [SMALL_STATE(1055)] = 55324, - [SMALL_STATE(1056)] = 55369, - [SMALL_STATE(1057)] = 55414, - [SMALL_STATE(1058)] = 55459, - [SMALL_STATE(1059)] = 55504, + [SMALL_STATE(851)] = 46274, + [SMALL_STATE(852)] = 46319, + [SMALL_STATE(853)] = 46364, + [SMALL_STATE(854)] = 46409, + [SMALL_STATE(855)] = 46454, + [SMALL_STATE(856)] = 46499, + [SMALL_STATE(857)] = 46544, + [SMALL_STATE(858)] = 46589, + [SMALL_STATE(859)] = 46634, + [SMALL_STATE(860)] = 46679, + [SMALL_STATE(861)] = 46724, + [SMALL_STATE(862)] = 46769, + [SMALL_STATE(863)] = 46814, + [SMALL_STATE(864)] = 46859, + [SMALL_STATE(865)] = 46904, + [SMALL_STATE(866)] = 46949, + [SMALL_STATE(867)] = 46992, + [SMALL_STATE(868)] = 47037, + [SMALL_STATE(869)] = 47080, + [SMALL_STATE(870)] = 47123, + [SMALL_STATE(871)] = 47166, + [SMALL_STATE(872)] = 47213, + [SMALL_STATE(873)] = 47260, + [SMALL_STATE(874)] = 47305, + [SMALL_STATE(875)] = 47350, + [SMALL_STATE(876)] = 47395, + [SMALL_STATE(877)] = 47440, + [SMALL_STATE(878)] = 47485, + [SMALL_STATE(879)] = 47530, + [SMALL_STATE(880)] = 47575, + [SMALL_STATE(881)] = 47620, + [SMALL_STATE(882)] = 47665, + [SMALL_STATE(883)] = 47708, + [SMALL_STATE(884)] = 47753, + [SMALL_STATE(885)] = 47798, + [SMALL_STATE(886)] = 47843, + [SMALL_STATE(887)] = 47888, + [SMALL_STATE(888)] = 47933, + [SMALL_STATE(889)] = 47978, + [SMALL_STATE(890)] = 48023, + [SMALL_STATE(891)] = 48068, + [SMALL_STATE(892)] = 48113, + [SMALL_STATE(893)] = 48160, + [SMALL_STATE(894)] = 48205, + [SMALL_STATE(895)] = 48250, + [SMALL_STATE(896)] = 48295, + [SMALL_STATE(897)] = 48338, + [SMALL_STATE(898)] = 48383, + [SMALL_STATE(899)] = 48428, + [SMALL_STATE(900)] = 48473, + [SMALL_STATE(901)] = 48518, + [SMALL_STATE(902)] = 48563, + [SMALL_STATE(903)] = 48608, + [SMALL_STATE(904)] = 48653, + [SMALL_STATE(905)] = 48698, + [SMALL_STATE(906)] = 48743, + [SMALL_STATE(907)] = 48788, + [SMALL_STATE(908)] = 48833, + [SMALL_STATE(909)] = 48878, + [SMALL_STATE(910)] = 48923, + [SMALL_STATE(911)] = 48966, + [SMALL_STATE(912)] = 49009, + [SMALL_STATE(913)] = 49052, + [SMALL_STATE(914)] = 49097, + [SMALL_STATE(915)] = 49142, + [SMALL_STATE(916)] = 49187, + [SMALL_STATE(917)] = 49232, + [SMALL_STATE(918)] = 49277, + [SMALL_STATE(919)] = 49322, + [SMALL_STATE(920)] = 49367, + [SMALL_STATE(921)] = 49412, + [SMALL_STATE(922)] = 49457, + [SMALL_STATE(923)] = 49502, + [SMALL_STATE(924)] = 49545, + [SMALL_STATE(925)] = 49588, + [SMALL_STATE(926)] = 49631, + [SMALL_STATE(927)] = 49674, + [SMALL_STATE(928)] = 49717, + [SMALL_STATE(929)] = 49762, + [SMALL_STATE(930)] = 49807, + [SMALL_STATE(931)] = 49852, + [SMALL_STATE(932)] = 49897, + [SMALL_STATE(933)] = 49942, + [SMALL_STATE(934)] = 49987, + [SMALL_STATE(935)] = 50034, + [SMALL_STATE(936)] = 50077, + [SMALL_STATE(937)] = 50120, + [SMALL_STATE(938)] = 50163, + [SMALL_STATE(939)] = 50206, + [SMALL_STATE(940)] = 50249, + [SMALL_STATE(941)] = 50292, + [SMALL_STATE(942)] = 50337, + [SMALL_STATE(943)] = 50382, + [SMALL_STATE(944)] = 50425, + [SMALL_STATE(945)] = 50468, + [SMALL_STATE(946)] = 50511, + [SMALL_STATE(947)] = 50556, + [SMALL_STATE(948)] = 50601, + [SMALL_STATE(949)] = 50646, + [SMALL_STATE(950)] = 50691, + [SMALL_STATE(951)] = 50736, + [SMALL_STATE(952)] = 50779, + [SMALL_STATE(953)] = 50822, + [SMALL_STATE(954)] = 50869, + [SMALL_STATE(955)] = 50912, + [SMALL_STATE(956)] = 50957, + [SMALL_STATE(957)] = 51000, + [SMALL_STATE(958)] = 51043, + [SMALL_STATE(959)] = 51086, + [SMALL_STATE(960)] = 51129, + [SMALL_STATE(961)] = 51176, + [SMALL_STATE(962)] = 51219, + [SMALL_STATE(963)] = 51264, + [SMALL_STATE(964)] = 51307, + [SMALL_STATE(965)] = 51350, + [SMALL_STATE(966)] = 51395, + [SMALL_STATE(967)] = 51438, + [SMALL_STATE(968)] = 51481, + [SMALL_STATE(969)] = 51524, + [SMALL_STATE(970)] = 51567, + [SMALL_STATE(971)] = 51612, + [SMALL_STATE(972)] = 51657, + [SMALL_STATE(973)] = 51702, + [SMALL_STATE(974)] = 51765, + [SMALL_STATE(975)] = 51810, + [SMALL_STATE(976)] = 51855, + [SMALL_STATE(977)] = 51900, + [SMALL_STATE(978)] = 51943, + [SMALL_STATE(979)] = 51986, + [SMALL_STATE(980)] = 52029, + [SMALL_STATE(981)] = 52072, + [SMALL_STATE(982)] = 52115, + [SMALL_STATE(983)] = 52158, + [SMALL_STATE(984)] = 52203, + [SMALL_STATE(985)] = 52246, + [SMALL_STATE(986)] = 52289, + [SMALL_STATE(987)] = 52332, + [SMALL_STATE(988)] = 52395, + [SMALL_STATE(989)] = 52440, + [SMALL_STATE(990)] = 52483, + [SMALL_STATE(991)] = 52528, + [SMALL_STATE(992)] = 52571, + [SMALL_STATE(993)] = 52614, + [SMALL_STATE(994)] = 52659, + [SMALL_STATE(995)] = 52702, + [SMALL_STATE(996)] = 52745, + [SMALL_STATE(997)] = 52788, + [SMALL_STATE(998)] = 52833, + [SMALL_STATE(999)] = 52876, + [SMALL_STATE(1000)] = 52919, + [SMALL_STATE(1001)] = 52964, + [SMALL_STATE(1002)] = 53009, + [SMALL_STATE(1003)] = 53054, + [SMALL_STATE(1004)] = 53099, + [SMALL_STATE(1005)] = 53144, + [SMALL_STATE(1006)] = 53187, + [SMALL_STATE(1007)] = 53230, + [SMALL_STATE(1008)] = 53273, + [SMALL_STATE(1009)] = 53318, + [SMALL_STATE(1010)] = 53363, + [SMALL_STATE(1011)] = 53408, + [SMALL_STATE(1012)] = 53453, + [SMALL_STATE(1013)] = 53496, + [SMALL_STATE(1014)] = 53539, + [SMALL_STATE(1015)] = 53582, + [SMALL_STATE(1016)] = 53625, + [SMALL_STATE(1017)] = 53668, + [SMALL_STATE(1018)] = 53711, + [SMALL_STATE(1019)] = 53754, + [SMALL_STATE(1020)] = 53797, + [SMALL_STATE(1021)] = 53840, + [SMALL_STATE(1022)] = 53883, + [SMALL_STATE(1023)] = 53926, + [SMALL_STATE(1024)] = 53971, + [SMALL_STATE(1025)] = 54016, + [SMALL_STATE(1026)] = 54061, + [SMALL_STATE(1027)] = 54106, + [SMALL_STATE(1028)] = 54151, + [SMALL_STATE(1029)] = 54196, + [SMALL_STATE(1030)] = 54241, + [SMALL_STATE(1031)] = 54284, + [SMALL_STATE(1032)] = 54327, + [SMALL_STATE(1033)] = 54370, + [SMALL_STATE(1034)] = 54413, + [SMALL_STATE(1035)] = 54456, + [SMALL_STATE(1036)] = 54499, + [SMALL_STATE(1037)] = 54542, + [SMALL_STATE(1038)] = 54587, + [SMALL_STATE(1039)] = 54632, + [SMALL_STATE(1040)] = 54677, + [SMALL_STATE(1041)] = 54722, + [SMALL_STATE(1042)] = 54765, + [SMALL_STATE(1043)] = 54808, + [SMALL_STATE(1044)] = 54851, + [SMALL_STATE(1045)] = 54894, + [SMALL_STATE(1046)] = 54937, + [SMALL_STATE(1047)] = 54982, + [SMALL_STATE(1048)] = 55027, + [SMALL_STATE(1049)] = 55070, + [SMALL_STATE(1050)] = 55113, + [SMALL_STATE(1051)] = 55156, + [SMALL_STATE(1052)] = 55199, + [SMALL_STATE(1053)] = 55242, + [SMALL_STATE(1054)] = 55287, + [SMALL_STATE(1055)] = 55332, + [SMALL_STATE(1056)] = 55375, + [SMALL_STATE(1057)] = 55418, + [SMALL_STATE(1058)] = 55463, + [SMALL_STATE(1059)] = 55506, [SMALL_STATE(1060)] = 55549, - [SMALL_STATE(1061)] = 55594, - [SMALL_STATE(1062)] = 55639, - [SMALL_STATE(1063)] = 55684, - [SMALL_STATE(1064)] = 55729, - [SMALL_STATE(1065)] = 55776, - [SMALL_STATE(1066)] = 55821, - [SMALL_STATE(1067)] = 55866, - [SMALL_STATE(1068)] = 55911, - [SMALL_STATE(1069)] = 55956, - [SMALL_STATE(1070)] = 56001, - [SMALL_STATE(1071)] = 56046, - [SMALL_STATE(1072)] = 56091, - [SMALL_STATE(1073)] = 56134, - [SMALL_STATE(1074)] = 56179, - [SMALL_STATE(1075)] = 56224, - [SMALL_STATE(1076)] = 56269, - [SMALL_STATE(1077)] = 56314, - [SMALL_STATE(1078)] = 56359, - [SMALL_STATE(1079)] = 56406, - [SMALL_STATE(1080)] = 56451, - [SMALL_STATE(1081)] = 56496, - [SMALL_STATE(1082)] = 56541, - [SMALL_STATE(1083)] = 56584, - [SMALL_STATE(1084)] = 56627, - [SMALL_STATE(1085)] = 56674, - [SMALL_STATE(1086)] = 56717, - [SMALL_STATE(1087)] = 56762, - [SMALL_STATE(1088)] = 56805, - [SMALL_STATE(1089)] = 56850, - [SMALL_STATE(1090)] = 56893, - [SMALL_STATE(1091)] = 56938, - [SMALL_STATE(1092)] = 56983, - [SMALL_STATE(1093)] = 57028, - [SMALL_STATE(1094)] = 57073, - [SMALL_STATE(1095)] = 57116, - [SMALL_STATE(1096)] = 57159, - [SMALL_STATE(1097)] = 57204, - [SMALL_STATE(1098)] = 57247, - [SMALL_STATE(1099)] = 57292, - [SMALL_STATE(1100)] = 57337, - [SMALL_STATE(1101)] = 57382, + [SMALL_STATE(1061)] = 55592, + [SMALL_STATE(1062)] = 55635, + [SMALL_STATE(1063)] = 55678, + [SMALL_STATE(1064)] = 55723, + [SMALL_STATE(1065)] = 55766, + [SMALL_STATE(1066)] = 55809, + [SMALL_STATE(1067)] = 55852, + [SMALL_STATE(1068)] = 55897, + [SMALL_STATE(1069)] = 55942, + [SMALL_STATE(1070)] = 55987, + [SMALL_STATE(1071)] = 56032, + [SMALL_STATE(1072)] = 56081, + [SMALL_STATE(1073)] = 56126, + [SMALL_STATE(1074)] = 56171, + [SMALL_STATE(1075)] = 56216, + [SMALL_STATE(1076)] = 56261, + [SMALL_STATE(1077)] = 56306, + [SMALL_STATE(1078)] = 56351, + [SMALL_STATE(1079)] = 56398, + [SMALL_STATE(1080)] = 56443, + [SMALL_STATE(1081)] = 56490, + [SMALL_STATE(1082)] = 56553, + [SMALL_STATE(1083)] = 56598, + [SMALL_STATE(1084)] = 56643, + [SMALL_STATE(1085)] = 56688, + [SMALL_STATE(1086)] = 56733, + [SMALL_STATE(1087)] = 56776, + [SMALL_STATE(1088)] = 56819, + [SMALL_STATE(1089)] = 56866, + [SMALL_STATE(1090)] = 56909, + [SMALL_STATE(1091)] = 56952, + [SMALL_STATE(1092)] = 56995, + [SMALL_STATE(1093)] = 57038, + [SMALL_STATE(1094)] = 57081, + [SMALL_STATE(1095)] = 57124, + [SMALL_STATE(1096)] = 57167, + [SMALL_STATE(1097)] = 57212, + [SMALL_STATE(1098)] = 57255, + [SMALL_STATE(1099)] = 57298, + [SMALL_STATE(1100)] = 57341, + [SMALL_STATE(1101)] = 57384, [SMALL_STATE(1102)] = 57427, - [SMALL_STATE(1103)] = 57472, - [SMALL_STATE(1104)] = 57517, - [SMALL_STATE(1105)] = 57562, - [SMALL_STATE(1106)] = 57607, - [SMALL_STATE(1107)] = 57652, - [SMALL_STATE(1108)] = 57697, - [SMALL_STATE(1109)] = 57742, - [SMALL_STATE(1110)] = 57787, - [SMALL_STATE(1111)] = 57832, - [SMALL_STATE(1112)] = 57877, - [SMALL_STATE(1113)] = 57922, - [SMALL_STATE(1114)] = 57967, - [SMALL_STATE(1115)] = 58012, - [SMALL_STATE(1116)] = 58057, - [SMALL_STATE(1117)] = 58102, - [SMALL_STATE(1118)] = 58147, - [SMALL_STATE(1119)] = 58192, - [SMALL_STATE(1120)] = 58237, - [SMALL_STATE(1121)] = 58282, - [SMALL_STATE(1122)] = 58327, - [SMALL_STATE(1123)] = 58372, - [SMALL_STATE(1124)] = 58434, - [SMALL_STATE(1125)] = 58496, - [SMALL_STATE(1126)] = 58540, - [SMALL_STATE(1127)] = 58584, - [SMALL_STATE(1128)] = 58628, - [SMALL_STATE(1129)] = 58672, - [SMALL_STATE(1130)] = 58714, - [SMALL_STATE(1131)] = 58756, - [SMALL_STATE(1132)] = 58800, - [SMALL_STATE(1133)] = 58842, - [SMALL_STATE(1134)] = 58884, - [SMALL_STATE(1135)] = 58926, - [SMALL_STATE(1136)] = 58968, - [SMALL_STATE(1137)] = 59010, - [SMALL_STATE(1138)] = 59052, - [SMALL_STATE(1139)] = 59096, - [SMALL_STATE(1140)] = 59140, - [SMALL_STATE(1141)] = 59182, - [SMALL_STATE(1142)] = 59244, - [SMALL_STATE(1143)] = 59290, - [SMALL_STATE(1144)] = 59352, - [SMALL_STATE(1145)] = 59396, - [SMALL_STATE(1146)] = 59440, - [SMALL_STATE(1147)] = 59482, - [SMALL_STATE(1148)] = 59526, - [SMALL_STATE(1149)] = 59568, - [SMALL_STATE(1150)] = 59610, - [SMALL_STATE(1151)] = 59652, - [SMALL_STATE(1152)] = 59696, - [SMALL_STATE(1153)] = 59740, - [SMALL_STATE(1154)] = 59784, - [SMALL_STATE(1155)] = 59826, - [SMALL_STATE(1156)] = 59868, - [SMALL_STATE(1157)] = 59912, - [SMALL_STATE(1158)] = 59954, - [SMALL_STATE(1159)] = 59998, - [SMALL_STATE(1160)] = 60040, - [SMALL_STATE(1161)] = 60084, - [SMALL_STATE(1162)] = 60126, - [SMALL_STATE(1163)] = 60180, - [SMALL_STATE(1164)] = 60230, - [SMALL_STATE(1165)] = 60314, - [SMALL_STATE(1166)] = 60358, - [SMALL_STATE(1167)] = 60402, - [SMALL_STATE(1168)] = 60464, - [SMALL_STATE(1169)] = 60508, - [SMALL_STATE(1170)] = 60552, - [SMALL_STATE(1171)] = 60596, - [SMALL_STATE(1172)] = 60640, - [SMALL_STATE(1173)] = 60684, - [SMALL_STATE(1174)] = 60728, - [SMALL_STATE(1175)] = 60772, - [SMALL_STATE(1176)] = 60816, - [SMALL_STATE(1177)] = 60860, - [SMALL_STATE(1178)] = 60922, - [SMALL_STATE(1179)] = 60976, - [SMALL_STATE(1180)] = 61018, - [SMALL_STATE(1181)] = 61062, - [SMALL_STATE(1182)] = 61106, - [SMALL_STATE(1183)] = 61150, - [SMALL_STATE(1184)] = 61194, - [SMALL_STATE(1185)] = 61278, - [SMALL_STATE(1186)] = 61362, - [SMALL_STATE(1187)] = 61406, - [SMALL_STATE(1188)] = 61448, - [SMALL_STATE(1189)] = 61490, - [SMALL_STATE(1190)] = 61532, - [SMALL_STATE(1191)] = 61574, - [SMALL_STATE(1192)] = 61618, - [SMALL_STATE(1193)] = 61660, - [SMALL_STATE(1194)] = 61704, - [SMALL_STATE(1195)] = 61746, - [SMALL_STATE(1196)] = 61788, - [SMALL_STATE(1197)] = 61830, - [SMALL_STATE(1198)] = 61874, - [SMALL_STATE(1199)] = 61916, - [SMALL_STATE(1200)] = 61958, - [SMALL_STATE(1201)] = 62002, - [SMALL_STATE(1202)] = 62046, - [SMALL_STATE(1203)] = 62090, - [SMALL_STATE(1204)] = 62134, - [SMALL_STATE(1205)] = 62178, - [SMALL_STATE(1206)] = 62222, - [SMALL_STATE(1207)] = 62266, - [SMALL_STATE(1208)] = 62310, - [SMALL_STATE(1209)] = 62352, - [SMALL_STATE(1210)] = 62396, - [SMALL_STATE(1211)] = 62444, - [SMALL_STATE(1212)] = 62486, - [SMALL_STATE(1213)] = 62530, - [SMALL_STATE(1214)] = 62592, - [SMALL_STATE(1215)] = 62636, - [SMALL_STATE(1216)] = 62678, - [SMALL_STATE(1217)] = 62722, + [SMALL_STATE(1103)] = 57470, + [SMALL_STATE(1104)] = 57513, + [SMALL_STATE(1105)] = 57556, + [SMALL_STATE(1106)] = 57599, + [SMALL_STATE(1107)] = 57642, + [SMALL_STATE(1108)] = 57685, + [SMALL_STATE(1109)] = 57728, + [SMALL_STATE(1110)] = 57771, + [SMALL_STATE(1111)] = 57814, + [SMALL_STATE(1112)] = 57857, + [SMALL_STATE(1113)] = 57900, + [SMALL_STATE(1114)] = 57943, + [SMALL_STATE(1115)] = 57986, + [SMALL_STATE(1116)] = 58029, + [SMALL_STATE(1117)] = 58072, + [SMALL_STATE(1118)] = 58115, + [SMALL_STATE(1119)] = 58158, + [SMALL_STATE(1120)] = 58201, + [SMALL_STATE(1121)] = 58244, + [SMALL_STATE(1122)] = 58287, + [SMALL_STATE(1123)] = 58334, + [SMALL_STATE(1124)] = 58377, + [SMALL_STATE(1125)] = 58420, + [SMALL_STATE(1126)] = 58463, + [SMALL_STATE(1127)] = 58508, + [SMALL_STATE(1128)] = 58555, + [SMALL_STATE(1129)] = 58598, + [SMALL_STATE(1130)] = 58641, + [SMALL_STATE(1131)] = 58720, + [SMALL_STATE(1132)] = 58763, + [SMALL_STATE(1133)] = 58808, + [SMALL_STATE(1134)] = 58850, + [SMALL_STATE(1135)] = 58894, + [SMALL_STATE(1136)] = 58938, + [SMALL_STATE(1137)] = 58980, + [SMALL_STATE(1138)] = 59022, + [SMALL_STATE(1139)] = 59066, + [SMALL_STATE(1140)] = 59110, + [SMALL_STATE(1141)] = 59152, + [SMALL_STATE(1142)] = 59200, + [SMALL_STATE(1143)] = 59244, + [SMALL_STATE(1144)] = 59286, + [SMALL_STATE(1145)] = 59328, + [SMALL_STATE(1146)] = 59370, + [SMALL_STATE(1147)] = 59414, + [SMALL_STATE(1148)] = 59456, + [SMALL_STATE(1149)] = 59498, + [SMALL_STATE(1150)] = 59542, + [SMALL_STATE(1151)] = 59586, + [SMALL_STATE(1152)] = 59636, + [SMALL_STATE(1153)] = 59678, + [SMALL_STATE(1154)] = 59740, + [SMALL_STATE(1155)] = 59782, + [SMALL_STATE(1156)] = 59826, + [SMALL_STATE(1157)] = 59870, + [SMALL_STATE(1158)] = 59912, + [SMALL_STATE(1159)] = 59966, + [SMALL_STATE(1160)] = 60010, + [SMALL_STATE(1161)] = 60052, + [SMALL_STATE(1162)] = 60136, + [SMALL_STATE(1163)] = 60178, + [SMALL_STATE(1164)] = 60220, + [SMALL_STATE(1165)] = 60282, + [SMALL_STATE(1166)] = 60344, + [SMALL_STATE(1167)] = 60386, + [SMALL_STATE(1168)] = 60428, + [SMALL_STATE(1169)] = 60472, + [SMALL_STATE(1170)] = 60516, + [SMALL_STATE(1171)] = 60558, + [SMALL_STATE(1172)] = 60600, + [SMALL_STATE(1173)] = 60644, + [SMALL_STATE(1174)] = 60698, + [SMALL_STATE(1175)] = 60742, + [SMALL_STATE(1176)] = 60786, + [SMALL_STATE(1177)] = 60830, + [SMALL_STATE(1178)] = 60872, + [SMALL_STATE(1179)] = 60916, + [SMALL_STATE(1180)] = 60960, + [SMALL_STATE(1181)] = 61004, + [SMALL_STATE(1182)] = 61066, + [SMALL_STATE(1183)] = 61110, + [SMALL_STATE(1184)] = 61154, + [SMALL_STATE(1185)] = 61198, + [SMALL_STATE(1186)] = 61242, + [SMALL_STATE(1187)] = 61304, + [SMALL_STATE(1188)] = 61346, + [SMALL_STATE(1189)] = 61400, + [SMALL_STATE(1190)] = 61444, + [SMALL_STATE(1191)] = 61486, + [SMALL_STATE(1192)] = 61530, + [SMALL_STATE(1193)] = 61574, + [SMALL_STATE(1194)] = 61618, + [SMALL_STATE(1195)] = 61660, + [SMALL_STATE(1196)] = 61704, + [SMALL_STATE(1197)] = 61766, + [SMALL_STATE(1198)] = 61808, + [SMALL_STATE(1199)] = 61870, + [SMALL_STATE(1200)] = 61912, + [SMALL_STATE(1201)] = 61954, + [SMALL_STATE(1202)] = 61998, + [SMALL_STATE(1203)] = 62042, + [SMALL_STATE(1204)] = 62126, + [SMALL_STATE(1205)] = 62170, + [SMALL_STATE(1206)] = 62214, + [SMALL_STATE(1207)] = 62258, + [SMALL_STATE(1208)] = 62302, + [SMALL_STATE(1209)] = 62346, + [SMALL_STATE(1210)] = 62390, + [SMALL_STATE(1211)] = 62434, + [SMALL_STATE(1212)] = 62478, + [SMALL_STATE(1213)] = 62522, + [SMALL_STATE(1214)] = 62566, + [SMALL_STATE(1215)] = 62610, + [SMALL_STATE(1216)] = 62658, + [SMALL_STATE(1217)] = 62702, [SMALL_STATE(1218)] = 62764, - [SMALL_STATE(1219)] = 62808, + [SMALL_STATE(1219)] = 62806, [SMALL_STATE(1220)] = 62852, [SMALL_STATE(1221)] = 62896, - [SMALL_STATE(1222)] = 62938, - [SMALL_STATE(1223)] = 62982, - [SMALL_STATE(1224)] = 63026, - [SMALL_STATE(1225)] = 63070, - [SMALL_STATE(1226)] = 63112, - [SMALL_STATE(1227)] = 63154, - [SMALL_STATE(1228)] = 63198, - [SMALL_STATE(1229)] = 63242, - [SMALL_STATE(1230)] = 63286, - [SMALL_STATE(1231)] = 63330, - [SMALL_STATE(1232)] = 63374, - [SMALL_STATE(1233)] = 63418, - [SMALL_STATE(1234)] = 63460, - [SMALL_STATE(1235)] = 63504, - [SMALL_STATE(1236)] = 63548, - [SMALL_STATE(1237)] = 63632, - [SMALL_STATE(1238)] = 63676, - [SMALL_STATE(1239)] = 63718, - [SMALL_STATE(1240)] = 63762, - [SMALL_STATE(1241)] = 63806, - [SMALL_STATE(1242)] = 63848, - [SMALL_STATE(1243)] = 63890, - [SMALL_STATE(1244)] = 63934, - [SMALL_STATE(1245)] = 63996, - [SMALL_STATE(1246)] = 64050, - [SMALL_STATE(1247)] = 64094, - [SMALL_STATE(1248)] = 64156, - [SMALL_STATE(1249)] = 64218, - [SMALL_STATE(1250)] = 64262, - [SMALL_STATE(1251)] = 64306, - [SMALL_STATE(1252)] = 64350, - [SMALL_STATE(1253)] = 64394, - [SMALL_STATE(1254)] = 64436, - [SMALL_STATE(1255)] = 64480, - [SMALL_STATE(1256)] = 64522, - [SMALL_STATE(1257)] = 64564, - [SMALL_STATE(1258)] = 64608, - [SMALL_STATE(1259)] = 64650, - [SMALL_STATE(1260)] = 64694, + [SMALL_STATE(1222)] = 62958, + [SMALL_STATE(1223)] = 63002, + [SMALL_STATE(1224)] = 63046, + [SMALL_STATE(1225)] = 63088, + [SMALL_STATE(1226)] = 63130, + [SMALL_STATE(1227)] = 63172, + [SMALL_STATE(1228)] = 63216, + [SMALL_STATE(1229)] = 63278, + [SMALL_STATE(1230)] = 63320, + [SMALL_STATE(1231)] = 63364, + [SMALL_STATE(1232)] = 63408, + [SMALL_STATE(1233)] = 63452, + [SMALL_STATE(1234)] = 63496, + [SMALL_STATE(1235)] = 63540, + [SMALL_STATE(1236)] = 63602, + [SMALL_STATE(1237)] = 63646, + [SMALL_STATE(1238)] = 63690, + [SMALL_STATE(1239)] = 63752, + [SMALL_STATE(1240)] = 63794, + [SMALL_STATE(1241)] = 63836, + [SMALL_STATE(1242)] = 63878, + [SMALL_STATE(1243)] = 63920, + [SMALL_STATE(1244)] = 63982, + [SMALL_STATE(1245)] = 64024, + [SMALL_STATE(1246)] = 64068, + [SMALL_STATE(1247)] = 64110, + [SMALL_STATE(1248)] = 64154, + [SMALL_STATE(1249)] = 64198, + [SMALL_STATE(1250)] = 64242, + [SMALL_STATE(1251)] = 64284, + [SMALL_STATE(1252)] = 64326, + [SMALL_STATE(1253)] = 64370, + [SMALL_STATE(1254)] = 64414, + [SMALL_STATE(1255)] = 64458, + [SMALL_STATE(1256)] = 64520, + [SMALL_STATE(1257)] = 64574, + [SMALL_STATE(1258)] = 64636, + [SMALL_STATE(1259)] = 64680, + [SMALL_STATE(1260)] = 64724, [SMALL_STATE(1261)] = 64778, - [SMALL_STATE(1262)] = 64840, - [SMALL_STATE(1263)] = 64902, - [SMALL_STATE(1264)] = 64944, - [SMALL_STATE(1265)] = 64986, - [SMALL_STATE(1266)] = 65034, - [SMALL_STATE(1267)] = 65096, - [SMALL_STATE(1268)] = 65138, - [SMALL_STATE(1269)] = 65180, - [SMALL_STATE(1270)] = 65224, - [SMALL_STATE(1271)] = 65268, - [SMALL_STATE(1272)] = 65310, - [SMALL_STATE(1273)] = 65354, - [SMALL_STATE(1274)] = 65398, - [SMALL_STATE(1275)] = 65442, - [SMALL_STATE(1276)] = 65486, - [SMALL_STATE(1277)] = 65530, - [SMALL_STATE(1278)] = 65574, - [SMALL_STATE(1279)] = 65616, - [SMALL_STATE(1280)] = 65660, - [SMALL_STATE(1281)] = 65702, - [SMALL_STATE(1282)] = 65744, - [SMALL_STATE(1283)] = 65788, - [SMALL_STATE(1284)] = 65832, - [SMALL_STATE(1285)] = 65876, - [SMALL_STATE(1286)] = 65920, - [SMALL_STATE(1287)] = 65964, - [SMALL_STATE(1288)] = 66008, - [SMALL_STATE(1289)] = 66050, - [SMALL_STATE(1290)] = 66094, - [SMALL_STATE(1291)] = 66156, - [SMALL_STATE(1292)] = 66200, - [SMALL_STATE(1293)] = 66244, - [SMALL_STATE(1294)] = 66288, - [SMALL_STATE(1295)] = 66330, - [SMALL_STATE(1296)] = 66374, - [SMALL_STATE(1297)] = 66418, - [SMALL_STATE(1298)] = 66462, - [SMALL_STATE(1299)] = 66506, - [SMALL_STATE(1300)] = 66550, - [SMALL_STATE(1301)] = 66594, - [SMALL_STATE(1302)] = 66638, - [SMALL_STATE(1303)] = 66682, - [SMALL_STATE(1304)] = 66726, - [SMALL_STATE(1305)] = 66770, - [SMALL_STATE(1306)] = 66832, - [SMALL_STATE(1307)] = 66876, - [SMALL_STATE(1308)] = 66920, - [SMALL_STATE(1309)] = 66982, - [SMALL_STATE(1310)] = 67024, - [SMALL_STATE(1311)] = 67086, - [SMALL_STATE(1312)] = 67130, - [SMALL_STATE(1313)] = 67172, - [SMALL_STATE(1314)] = 67216, - [SMALL_STATE(1315)] = 67278, - [SMALL_STATE(1316)] = 67320, - [SMALL_STATE(1317)] = 67362, - [SMALL_STATE(1318)] = 67406, - [SMALL_STATE(1319)] = 67448, - [SMALL_STATE(1320)] = 67492, - [SMALL_STATE(1321)] = 67554, - [SMALL_STATE(1322)] = 67598, - [SMALL_STATE(1323)] = 67652, - [SMALL_STATE(1324)] = 67736, - [SMALL_STATE(1325)] = 67798, - [SMALL_STATE(1326)] = 67842, - [SMALL_STATE(1327)] = 67886, - [SMALL_STATE(1328)] = 67940, - [SMALL_STATE(1329)] = 68002, - [SMALL_STATE(1330)] = 68046, - [SMALL_STATE(1331)] = 68090, - [SMALL_STATE(1332)] = 68134, - [SMALL_STATE(1333)] = 68178, - [SMALL_STATE(1334)] = 68240, - [SMALL_STATE(1335)] = 68284, - [SMALL_STATE(1336)] = 68328, - [SMALL_STATE(1337)] = 68390, - [SMALL_STATE(1338)] = 68434, - [SMALL_STATE(1339)] = 68478, - [SMALL_STATE(1340)] = 68540, - [SMALL_STATE(1341)] = 68584, - [SMALL_STATE(1342)] = 68646, - [SMALL_STATE(1343)] = 68690, - [SMALL_STATE(1344)] = 68734, - [SMALL_STATE(1345)] = 68778, - [SMALL_STATE(1346)] = 68820, - [SMALL_STATE(1347)] = 68882, - [SMALL_STATE(1348)] = 68926, - [SMALL_STATE(1349)] = 68970, - [SMALL_STATE(1350)] = 69014, - [SMALL_STATE(1351)] = 69058, - [SMALL_STATE(1352)] = 69100, - [SMALL_STATE(1353)] = 69142, - [SMALL_STATE(1354)] = 69186, - [SMALL_STATE(1355)] = 69230, - [SMALL_STATE(1356)] = 69274, - [SMALL_STATE(1357)] = 69318, - [SMALL_STATE(1358)] = 69362, - [SMALL_STATE(1359)] = 69406, - [SMALL_STATE(1360)] = 69450, - [SMALL_STATE(1361)] = 69512, - [SMALL_STATE(1362)] = 69556, - [SMALL_STATE(1363)] = 69598, - [SMALL_STATE(1364)] = 69642, - [SMALL_STATE(1365)] = 69684, - [SMALL_STATE(1366)] = 69732, - [SMALL_STATE(1367)] = 69776, - [SMALL_STATE(1368)] = 69818, - [SMALL_STATE(1369)] = 69860, - [SMALL_STATE(1370)] = 69902, - [SMALL_STATE(1371)] = 69944, - [SMALL_STATE(1372)] = 69986, - [SMALL_STATE(1373)] = 70030, - [SMALL_STATE(1374)] = 70076, - [SMALL_STATE(1375)] = 70138, - [SMALL_STATE(1376)] = 70180, - [SMALL_STATE(1377)] = 70224, - [SMALL_STATE(1378)] = 70286, - [SMALL_STATE(1379)] = 70330, - [SMALL_STATE(1380)] = 70374, - [SMALL_STATE(1381)] = 70418, - [SMALL_STATE(1382)] = 70462, - [SMALL_STATE(1383)] = 70506, - [SMALL_STATE(1384)] = 70550, - [SMALL_STATE(1385)] = 70612, - [SMALL_STATE(1386)] = 70656, - [SMALL_STATE(1387)] = 70700, - [SMALL_STATE(1388)] = 70784, - [SMALL_STATE(1389)] = 70828, - [SMALL_STATE(1390)] = 70872, - [SMALL_STATE(1391)] = 70916, - [SMALL_STATE(1392)] = 70978, - [SMALL_STATE(1393)] = 71022, - [SMALL_STATE(1394)] = 71066, - [SMALL_STATE(1395)] = 71110, - [SMALL_STATE(1396)] = 71154, - [SMALL_STATE(1397)] = 71216, - [SMALL_STATE(1398)] = 71260, - [SMALL_STATE(1399)] = 71304, - [SMALL_STATE(1400)] = 71348, - [SMALL_STATE(1401)] = 71392, + [SMALL_STATE(1262)] = 64822, + [SMALL_STATE(1263)] = 64864, + [SMALL_STATE(1264)] = 64908, + [SMALL_STATE(1265)] = 64952, + [SMALL_STATE(1266)] = 64996, + [SMALL_STATE(1267)] = 65058, + [SMALL_STATE(1268)] = 65120, + [SMALL_STATE(1269)] = 65162, + [SMALL_STATE(1270)] = 65204, + [SMALL_STATE(1271)] = 65266, + [SMALL_STATE(1272)] = 65328, + [SMALL_STATE(1273)] = 65372, + [SMALL_STATE(1274)] = 65434, + [SMALL_STATE(1275)] = 65478, + [SMALL_STATE(1276)] = 65522, + [SMALL_STATE(1277)] = 65566, + [SMALL_STATE(1278)] = 65610, + [SMALL_STATE(1279)] = 65654, + [SMALL_STATE(1280)] = 65698, + [SMALL_STATE(1281)] = 65742, + [SMALL_STATE(1282)] = 65786, + [SMALL_STATE(1283)] = 65848, + [SMALL_STATE(1284)] = 65892, + [SMALL_STATE(1285)] = 65936, + [SMALL_STATE(1286)] = 65980, + [SMALL_STATE(1287)] = 66024, + [SMALL_STATE(1288)] = 66068, + [SMALL_STATE(1289)] = 66112, + [SMALL_STATE(1290)] = 66156, + [SMALL_STATE(1291)] = 66200, + [SMALL_STATE(1292)] = 66244, + [SMALL_STATE(1293)] = 66286, + [SMALL_STATE(1294)] = 66330, + [SMALL_STATE(1295)] = 66374, + [SMALL_STATE(1296)] = 66418, + [SMALL_STATE(1297)] = 66460, + [SMALL_STATE(1298)] = 66504, + [SMALL_STATE(1299)] = 66546, + [SMALL_STATE(1300)] = 66588, + [SMALL_STATE(1301)] = 66630, + [SMALL_STATE(1302)] = 66674, + [SMALL_STATE(1303)] = 66718, + [SMALL_STATE(1304)] = 66762, + [SMALL_STATE(1305)] = 66806, + [SMALL_STATE(1306)] = 66848, + [SMALL_STATE(1307)] = 66910, + [SMALL_STATE(1308)] = 66954, + [SMALL_STATE(1309)] = 66998, + [SMALL_STATE(1310)] = 67082, + [SMALL_STATE(1311)] = 67144, + [SMALL_STATE(1312)] = 67188, + [SMALL_STATE(1313)] = 67232, + [SMALL_STATE(1314)] = 67276, + [SMALL_STATE(1315)] = 67320, + [SMALL_STATE(1316)] = 67362, + [SMALL_STATE(1317)] = 67406, + [SMALL_STATE(1318)] = 67448, + [SMALL_STATE(1319)] = 67492, + [SMALL_STATE(1320)] = 67536, + [SMALL_STATE(1321)] = 67580, + [SMALL_STATE(1322)] = 67624, + [SMALL_STATE(1323)] = 67668, + [SMALL_STATE(1324)] = 67710, + [SMALL_STATE(1325)] = 67752, + [SMALL_STATE(1326)] = 67796, + [SMALL_STATE(1327)] = 67840, + [SMALL_STATE(1328)] = 67882, + [SMALL_STATE(1329)] = 67924, + [SMALL_STATE(1330)] = 67966, + [SMALL_STATE(1331)] = 68008, + [SMALL_STATE(1332)] = 68052, + [SMALL_STATE(1333)] = 68096, + [SMALL_STATE(1334)] = 68140, + [SMALL_STATE(1335)] = 68184, + [SMALL_STATE(1336)] = 68228, + [SMALL_STATE(1337)] = 68272, + [SMALL_STATE(1338)] = 68314, + [SMALL_STATE(1339)] = 68358, + [SMALL_STATE(1340)] = 68442, + [SMALL_STATE(1341)] = 68484, + [SMALL_STATE(1342)] = 68528, + [SMALL_STATE(1343)] = 68590, + [SMALL_STATE(1344)] = 68634, + [SMALL_STATE(1345)] = 68676, + [SMALL_STATE(1346)] = 68718, + [SMALL_STATE(1347)] = 68762, + [SMALL_STATE(1348)] = 68806, + [SMALL_STATE(1349)] = 68850, + [SMALL_STATE(1350)] = 68912, + [SMALL_STATE(1351)] = 68956, + [SMALL_STATE(1352)] = 69000, + [SMALL_STATE(1353)] = 69044, + [SMALL_STATE(1354)] = 69106, + [SMALL_STATE(1355)] = 69148, + [SMALL_STATE(1356)] = 69192, + [SMALL_STATE(1357)] = 69236, + [SMALL_STATE(1358)] = 69278, + [SMALL_STATE(1359)] = 69322, + [SMALL_STATE(1360)] = 69384, + [SMALL_STATE(1361)] = 69446, + [SMALL_STATE(1362)] = 69488, + [SMALL_STATE(1363)] = 69532, + [SMALL_STATE(1364)] = 69576, + [SMALL_STATE(1365)] = 69620, + [SMALL_STATE(1366)] = 69664, + [SMALL_STATE(1367)] = 69708, + [SMALL_STATE(1368)] = 69752, + [SMALL_STATE(1369)] = 69794, + [SMALL_STATE(1370)] = 69878, + [SMALL_STATE(1371)] = 69922, + [SMALL_STATE(1372)] = 69964, + [SMALL_STATE(1373)] = 70006, + [SMALL_STATE(1374)] = 70048, + [SMALL_STATE(1375)] = 70092, + [SMALL_STATE(1376)] = 70136, + [SMALL_STATE(1377)] = 70198, + [SMALL_STATE(1378)] = 70242, + [SMALL_STATE(1379)] = 70286, + [SMALL_STATE(1380)] = 70370, + [SMALL_STATE(1381)] = 70412, + [SMALL_STATE(1382)] = 70454, + [SMALL_STATE(1383)] = 70498, + [SMALL_STATE(1384)] = 70540, + [SMALL_STATE(1385)] = 70584, + [SMALL_STATE(1386)] = 70626, + [SMALL_STATE(1387)] = 70670, + [SMALL_STATE(1388)] = 70712, + [SMALL_STATE(1389)] = 70754, + [SMALL_STATE(1390)] = 70798, + [SMALL_STATE(1391)] = 70842, + [SMALL_STATE(1392)] = 70886, + [SMALL_STATE(1393)] = 70930, + [SMALL_STATE(1394)] = 70972, + [SMALL_STATE(1395)] = 71014, + [SMALL_STATE(1396)] = 71098, + [SMALL_STATE(1397)] = 71142, + [SMALL_STATE(1398)] = 71186, + [SMALL_STATE(1399)] = 71248, + [SMALL_STATE(1400)] = 71310, + [SMALL_STATE(1401)] = 71394, [SMALL_STATE(1402)] = 71436, - [SMALL_STATE(1403)] = 71520, - [SMALL_STATE(1404)] = 71564, - [SMALL_STATE(1405)] = 71626, - [SMALL_STATE(1406)] = 71670, - [SMALL_STATE(1407)] = 71712, - [SMALL_STATE(1408)] = 71756, - [SMALL_STATE(1409)] = 71800, - [SMALL_STATE(1410)] = 71842, - [SMALL_STATE(1411)] = 71884, - [SMALL_STATE(1412)] = 71926, - [SMALL_STATE(1413)] = 71970, - [SMALL_STATE(1414)] = 72012, - [SMALL_STATE(1415)] = 72074, - [SMALL_STATE(1416)] = 72118, - [SMALL_STATE(1417)] = 72162, - [SMALL_STATE(1418)] = 72206, - [SMALL_STATE(1419)] = 72290, - [SMALL_STATE(1420)] = 72332, - [SMALL_STATE(1421)] = 72374, - [SMALL_STATE(1422)] = 72416, + [SMALL_STATE(1403)] = 71478, + [SMALL_STATE(1404)] = 71520, + [SMALL_STATE(1405)] = 71564, + [SMALL_STATE(1406)] = 71626, + [SMALL_STATE(1407)] = 71668, + [SMALL_STATE(1408)] = 71710, + [SMALL_STATE(1409)] = 71754, + [SMALL_STATE(1410)] = 71796, + [SMALL_STATE(1411)] = 71840, + [SMALL_STATE(1412)] = 71924, + [SMALL_STATE(1413)] = 71968, + [SMALL_STATE(1414)] = 72010, + [SMALL_STATE(1415)] = 72054, + [SMALL_STATE(1416)] = 72116, + [SMALL_STATE(1417)] = 72158, + [SMALL_STATE(1418)] = 72200, + [SMALL_STATE(1419)] = 72244, + [SMALL_STATE(1420)] = 72288, + [SMALL_STATE(1421)] = 72332, + [SMALL_STATE(1422)] = 72374, [SMALL_STATE(1423)] = 72458, [SMALL_STATE(1424)] = 72500, - [SMALL_STATE(1425)] = 72542, - [SMALL_STATE(1426)] = 72586, - [SMALL_STATE(1427)] = 72628, - [SMALL_STATE(1428)] = 72670, - [SMALL_STATE(1429)] = 72712, - [SMALL_STATE(1430)] = 72754, - [SMALL_STATE(1431)] = 72796, - [SMALL_STATE(1432)] = 72838, - [SMALL_STATE(1433)] = 72882, - [SMALL_STATE(1434)] = 72924, - [SMALL_STATE(1435)] = 72966, - [SMALL_STATE(1436)] = 73008, - [SMALL_STATE(1437)] = 73050, - [SMALL_STATE(1438)] = 73092, - [SMALL_STATE(1439)] = 73134, - [SMALL_STATE(1440)] = 73176, - [SMALL_STATE(1441)] = 73220, - [SMALL_STATE(1442)] = 73264, - [SMALL_STATE(1443)] = 73306, - [SMALL_STATE(1444)] = 73348, - [SMALL_STATE(1445)] = 73390, - [SMALL_STATE(1446)] = 73432, - [SMALL_STATE(1447)] = 73476, - [SMALL_STATE(1448)] = 73520, - [SMALL_STATE(1449)] = 73562, - [SMALL_STATE(1450)] = 73624, - [SMALL_STATE(1451)] = 73666, - [SMALL_STATE(1452)] = 73708, - [SMALL_STATE(1453)] = 73750, - [SMALL_STATE(1454)] = 73794, - [SMALL_STATE(1455)] = 73836, - [SMALL_STATE(1456)] = 73878, - [SMALL_STATE(1457)] = 73922, - [SMALL_STATE(1458)] = 73964, - [SMALL_STATE(1459)] = 74008, - [SMALL_STATE(1460)] = 74050, - [SMALL_STATE(1461)] = 74092, - [SMALL_STATE(1462)] = 74134, - [SMALL_STATE(1463)] = 74176, - [SMALL_STATE(1464)] = 74218, - [SMALL_STATE(1465)] = 74260, - [SMALL_STATE(1466)] = 74302, - [SMALL_STATE(1467)] = 74344, - [SMALL_STATE(1468)] = 74388, - [SMALL_STATE(1469)] = 74450, - [SMALL_STATE(1470)] = 74492, - [SMALL_STATE(1471)] = 74534, - [SMALL_STATE(1472)] = 74576, - [SMALL_STATE(1473)] = 74618, - [SMALL_STATE(1474)] = 74702, - [SMALL_STATE(1475)] = 74746, - [SMALL_STATE(1476)] = 74788, - [SMALL_STATE(1477)] = 74830, - [SMALL_STATE(1478)] = 74872, - [SMALL_STATE(1479)] = 74914, - [SMALL_STATE(1480)] = 74956, - [SMALL_STATE(1481)] = 74998, - [SMALL_STATE(1482)] = 75040, - [SMALL_STATE(1483)] = 75084, - [SMALL_STATE(1484)] = 75128, - [SMALL_STATE(1485)] = 75172, - [SMALL_STATE(1486)] = 75214, - [SMALL_STATE(1487)] = 75258, - [SMALL_STATE(1488)] = 75300, - [SMALL_STATE(1489)] = 75344, - [SMALL_STATE(1490)] = 75386, - [SMALL_STATE(1491)] = 75430, - [SMALL_STATE(1492)] = 75472, - [SMALL_STATE(1493)] = 75516, - [SMALL_STATE(1494)] = 75558, - [SMALL_STATE(1495)] = 75600, - [SMALL_STATE(1496)] = 75644, - [SMALL_STATE(1497)] = 75686, - [SMALL_STATE(1498)] = 75728, - [SMALL_STATE(1499)] = 75770, - [SMALL_STATE(1500)] = 75812, - [SMALL_STATE(1501)] = 75854, - [SMALL_STATE(1502)] = 75896, - [SMALL_STATE(1503)] = 75938, - [SMALL_STATE(1504)] = 75980, - [SMALL_STATE(1505)] = 76022, - [SMALL_STATE(1506)] = 76064, - [SMALL_STATE(1507)] = 76108, - [SMALL_STATE(1508)] = 76152, - [SMALL_STATE(1509)] = 76196, - [SMALL_STATE(1510)] = 76238, - [SMALL_STATE(1511)] = 76282, - [SMALL_STATE(1512)] = 76324, - [SMALL_STATE(1513)] = 76368, - [SMALL_STATE(1514)] = 76430, - [SMALL_STATE(1515)] = 76472, - [SMALL_STATE(1516)] = 76514, - [SMALL_STATE(1517)] = 76556, - [SMALL_STATE(1518)] = 76598, - [SMALL_STATE(1519)] = 76642, - [SMALL_STATE(1520)] = 76704, - [SMALL_STATE(1521)] = 76746, - [SMALL_STATE(1522)] = 76788, - [SMALL_STATE(1523)] = 76830, - [SMALL_STATE(1524)] = 76872, - [SMALL_STATE(1525)] = 76914, - [SMALL_STATE(1526)] = 76956, - [SMALL_STATE(1527)] = 76998, - [SMALL_STATE(1528)] = 77040, - [SMALL_STATE(1529)] = 77088, - [SMALL_STATE(1530)] = 77130, - [SMALL_STATE(1531)] = 77172, - [SMALL_STATE(1532)] = 77216, - [SMALL_STATE(1533)] = 77258, - [SMALL_STATE(1534)] = 77302, - [SMALL_STATE(1535)] = 77344, - [SMALL_STATE(1536)] = 77385, - [SMALL_STATE(1537)] = 77426, - [SMALL_STATE(1538)] = 77471, - [SMALL_STATE(1539)] = 77512, - [SMALL_STATE(1540)] = 77553, - [SMALL_STATE(1541)] = 77594, - [SMALL_STATE(1542)] = 77635, - [SMALL_STATE(1543)] = 77676, - [SMALL_STATE(1544)] = 77717, - [SMALL_STATE(1545)] = 77758, - [SMALL_STATE(1546)] = 77799, - [SMALL_STATE(1547)] = 77840, - [SMALL_STATE(1548)] = 77885, - [SMALL_STATE(1549)] = 77926, - [SMALL_STATE(1550)] = 77967, - [SMALL_STATE(1551)] = 78008, - [SMALL_STATE(1552)] = 78049, - [SMALL_STATE(1553)] = 78090, - [SMALL_STATE(1554)] = 78131, - [SMALL_STATE(1555)] = 78172, - [SMALL_STATE(1556)] = 78219, - [SMALL_STATE(1557)] = 78260, - [SMALL_STATE(1558)] = 78301, - [SMALL_STATE(1559)] = 78342, - [SMALL_STATE(1560)] = 78383, - [SMALL_STATE(1561)] = 78424, - [SMALL_STATE(1562)] = 78465, - [SMALL_STATE(1563)] = 78506, - [SMALL_STATE(1564)] = 78547, - [SMALL_STATE(1565)] = 78590, - [SMALL_STATE(1566)] = 78631, - [SMALL_STATE(1567)] = 78672, - [SMALL_STATE(1568)] = 78713, - [SMALL_STATE(1569)] = 78758, - [SMALL_STATE(1570)] = 78799, - [SMALL_STATE(1571)] = 78878, - [SMALL_STATE(1572)] = 78920, - [SMALL_STATE(1573)] = 78998, - [SMALL_STATE(1574)] = 79038, - [SMALL_STATE(1575)] = 79080, - [SMALL_STATE(1576)] = 79122, - [SMALL_STATE(1577)] = 79164, - [SMALL_STATE(1578)] = 79206, - [SMALL_STATE(1579)] = 79248, - [SMALL_STATE(1580)] = 79326, - [SMALL_STATE(1581)] = 79370, - [SMALL_STATE(1582)] = 79412, - [SMALL_STATE(1583)] = 79454, - [SMALL_STATE(1584)] = 79532, - [SMALL_STATE(1585)] = 79600, - [SMALL_STATE(1586)] = 79642, - [SMALL_STATE(1587)] = 79684, - [SMALL_STATE(1588)] = 79726, - [SMALL_STATE(1589)] = 79768, - [SMALL_STATE(1590)] = 79812, - [SMALL_STATE(1591)] = 79890, - [SMALL_STATE(1592)] = 79968, - [SMALL_STATE(1593)] = 80010, - [SMALL_STATE(1594)] = 80076, - [SMALL_STATE(1595)] = 80116, - [SMALL_STATE(1596)] = 80184, - [SMALL_STATE(1597)] = 80226, - [SMALL_STATE(1598)] = 80304, - [SMALL_STATE(1599)] = 80382, - [SMALL_STATE(1600)] = 80424, - [SMALL_STATE(1601)] = 80466, - [SMALL_STATE(1602)] = 80508, - [SMALL_STATE(1603)] = 80550, - [SMALL_STATE(1604)] = 80628, - [SMALL_STATE(1605)] = 80670, - [SMALL_STATE(1606)] = 80710, - [SMALL_STATE(1607)] = 80752, - [SMALL_STATE(1608)] = 80794, - [SMALL_STATE(1609)] = 80872, - [SMALL_STATE(1610)] = 80914, - [SMALL_STATE(1611)] = 80956, - [SMALL_STATE(1612)] = 80998, - [SMALL_STATE(1613)] = 81040, - [SMALL_STATE(1614)] = 81082, - [SMALL_STATE(1615)] = 81124, - [SMALL_STATE(1616)] = 81166, - [SMALL_STATE(1617)] = 81244, - [SMALL_STATE(1618)] = 81286, - [SMALL_STATE(1619)] = 81328, - [SMALL_STATE(1620)] = 81401, - [SMALL_STATE(1621)] = 81442, - [SMALL_STATE(1622)] = 81483, - [SMALL_STATE(1623)] = 81519, - [SMALL_STATE(1624)] = 81565, - [SMALL_STATE(1625)] = 81611, - [SMALL_STATE(1626)] = 81677, - [SMALL_STATE(1627)] = 81749, - [SMALL_STATE(1628)] = 81821, - [SMALL_STATE(1629)] = 81867, - [SMALL_STATE(1630)] = 81913, - [SMALL_STATE(1631)] = 81985, - [SMALL_STATE(1632)] = 82031, - [SMALL_STATE(1633)] = 82103, - [SMALL_STATE(1634)] = 82169, - [SMALL_STATE(1635)] = 82241, - [SMALL_STATE(1636)] = 82313, - [SMALL_STATE(1637)] = 82359, - [SMALL_STATE(1638)] = 82425, - [SMALL_STATE(1639)] = 82471, - [SMALL_STATE(1640)] = 82517, - [SMALL_STATE(1641)] = 82589, - [SMALL_STATE(1642)] = 82635, - [SMALL_STATE(1643)] = 82707, - [SMALL_STATE(1644)] = 82753, - [SMALL_STATE(1645)] = 82799, - [SMALL_STATE(1646)] = 82845, - [SMALL_STATE(1647)] = 82891, - [SMALL_STATE(1648)] = 82937, - [SMALL_STATE(1649)] = 82973, - [SMALL_STATE(1650)] = 83039, - [SMALL_STATE(1651)] = 83075, - [SMALL_STATE(1652)] = 83111, - [SMALL_STATE(1653)] = 83157, - [SMALL_STATE(1654)] = 83193, - [SMALL_STATE(1655)] = 83239, - [SMALL_STATE(1656)] = 83311, - [SMALL_STATE(1657)] = 83357, - [SMALL_STATE(1658)] = 83403, - [SMALL_STATE(1659)] = 83449, - [SMALL_STATE(1660)] = 83495, - [SMALL_STATE(1661)] = 83567, - [SMALL_STATE(1662)] = 83613, - [SMALL_STATE(1663)] = 83659, - [SMALL_STATE(1664)] = 83728, - [SMALL_STATE(1665)] = 83797, - [SMALL_STATE(1666)] = 83866, - [SMALL_STATE(1667)] = 83935, - [SMALL_STATE(1668)] = 84004, - [SMALL_STATE(1669)] = 84073, - [SMALL_STATE(1670)] = 84142, - [SMALL_STATE(1671)] = 84211, - [SMALL_STATE(1672)] = 84280, - [SMALL_STATE(1673)] = 84349, - [SMALL_STATE(1674)] = 84418, - [SMALL_STATE(1675)] = 84487, - [SMALL_STATE(1676)] = 84556, - [SMALL_STATE(1677)] = 84625, - [SMALL_STATE(1678)] = 84694, - [SMALL_STATE(1679)] = 84763, - [SMALL_STATE(1680)] = 84830, - [SMALL_STATE(1681)] = 84899, - [SMALL_STATE(1682)] = 84968, - [SMALL_STATE(1683)] = 85037, - [SMALL_STATE(1684)] = 85106, - [SMALL_STATE(1685)] = 85152, - [SMALL_STATE(1686)] = 85212, - [SMALL_STATE(1687)] = 85272, - [SMALL_STATE(1688)] = 85318, - [SMALL_STATE(1689)] = 85378, - [SMALL_STATE(1690)] = 85424, - [SMALL_STATE(1691)] = 85470, - [SMALL_STATE(1692)] = 85530, - [SMALL_STATE(1693)] = 85590, - [SMALL_STATE(1694)] = 85650, - [SMALL_STATE(1695)] = 85710, - [SMALL_STATE(1696)] = 85754, - [SMALL_STATE(1697)] = 85814, - [SMALL_STATE(1698)] = 85874, - [SMALL_STATE(1699)] = 85934, - [SMALL_STATE(1700)] = 85994, - [SMALL_STATE(1701)] = 86040, - [SMALL_STATE(1702)] = 86100, - [SMALL_STATE(1703)] = 86160, - [SMALL_STATE(1704)] = 86220, - [SMALL_STATE(1705)] = 86280, - [SMALL_STATE(1706)] = 86326, - [SMALL_STATE(1707)] = 86386, - [SMALL_STATE(1708)] = 86446, - [SMALL_STATE(1709)] = 86506, - [SMALL_STATE(1710)] = 86566, - [SMALL_STATE(1711)] = 86612, - [SMALL_STATE(1712)] = 86676, - [SMALL_STATE(1713)] = 86736, - [SMALL_STATE(1714)] = 86796, - [SMALL_STATE(1715)] = 86842, - [SMALL_STATE(1716)] = 86906, - [SMALL_STATE(1717)] = 86952, - [SMALL_STATE(1718)] = 86992, - [SMALL_STATE(1719)] = 87038, - [SMALL_STATE(1720)] = 87101, - [SMALL_STATE(1721)] = 87164, - [SMALL_STATE(1722)] = 87227, - [SMALL_STATE(1723)] = 87290, - [SMALL_STATE(1724)] = 87353, - [SMALL_STATE(1725)] = 87416, - [SMALL_STATE(1726)] = 87479, - [SMALL_STATE(1727)] = 87542, - [SMALL_STATE(1728)] = 87605, - [SMALL_STATE(1729)] = 87668, - [SMALL_STATE(1730)] = 87731, - [SMALL_STATE(1731)] = 87794, - [SMALL_STATE(1732)] = 87857, - [SMALL_STATE(1733)] = 87920, - [SMALL_STATE(1734)] = 87983, - [SMALL_STATE(1735)] = 88046, - [SMALL_STATE(1736)] = 88109, - [SMALL_STATE(1737)] = 88172, - [SMALL_STATE(1738)] = 88235, - [SMALL_STATE(1739)] = 88298, - [SMALL_STATE(1740)] = 88361, - [SMALL_STATE(1741)] = 88424, - [SMALL_STATE(1742)] = 88487, - [SMALL_STATE(1743)] = 88550, - [SMALL_STATE(1744)] = 88613, - [SMALL_STATE(1745)] = 88676, - [SMALL_STATE(1746)] = 88739, - [SMALL_STATE(1747)] = 88802, - [SMALL_STATE(1748)] = 88865, - [SMALL_STATE(1749)] = 88928, - [SMALL_STATE(1750)] = 88991, - [SMALL_STATE(1751)] = 89054, - [SMALL_STATE(1752)] = 89117, - [SMALL_STATE(1753)] = 89180, - [SMALL_STATE(1754)] = 89243, - [SMALL_STATE(1755)] = 89306, - [SMALL_STATE(1756)] = 89369, - [SMALL_STATE(1757)] = 89432, - [SMALL_STATE(1758)] = 89495, - [SMALL_STATE(1759)] = 89558, - [SMALL_STATE(1760)] = 89615, - [SMALL_STATE(1761)] = 89678, - [SMALL_STATE(1762)] = 89741, - [SMALL_STATE(1763)] = 89804, - [SMALL_STATE(1764)] = 89867, - [SMALL_STATE(1765)] = 89930, - [SMALL_STATE(1766)] = 89993, - [SMALL_STATE(1767)] = 90056, - [SMALL_STATE(1768)] = 90119, - [SMALL_STATE(1769)] = 90182, - [SMALL_STATE(1770)] = 90245, - [SMALL_STATE(1771)] = 90308, - [SMALL_STATE(1772)] = 90371, - [SMALL_STATE(1773)] = 90434, - [SMALL_STATE(1774)] = 90497, - [SMALL_STATE(1775)] = 90560, - [SMALL_STATE(1776)] = 90623, - [SMALL_STATE(1777)] = 90686, - [SMALL_STATE(1778)] = 90749, - [SMALL_STATE(1779)] = 90812, - [SMALL_STATE(1780)] = 90875, - [SMALL_STATE(1781)] = 90938, - [SMALL_STATE(1782)] = 91001, - [SMALL_STATE(1783)] = 91064, - [SMALL_STATE(1784)] = 91127, - [SMALL_STATE(1785)] = 91190, - [SMALL_STATE(1786)] = 91253, - [SMALL_STATE(1787)] = 91316, - [SMALL_STATE(1788)] = 91379, - [SMALL_STATE(1789)] = 91442, - [SMALL_STATE(1790)] = 91505, - [SMALL_STATE(1791)] = 91539, - [SMALL_STATE(1792)] = 91573, - [SMALL_STATE(1793)] = 91631, - [SMALL_STATE(1794)] = 91665, - [SMALL_STATE(1795)] = 91703, - [SMALL_STATE(1796)] = 91737, - [SMALL_STATE(1797)] = 91771, - [SMALL_STATE(1798)] = 91805, - [SMALL_STATE(1799)] = 91863, - [SMALL_STATE(1800)] = 91921, - [SMALL_STATE(1801)] = 91979, - [SMALL_STATE(1802)] = 92037, - [SMALL_STATE(1803)] = 92095, - [SMALL_STATE(1804)] = 92129, - [SMALL_STATE(1805)] = 92187, - [SMALL_STATE(1806)] = 92234, - [SMALL_STATE(1807)] = 92293, - [SMALL_STATE(1808)] = 92352, - [SMALL_STATE(1809)] = 92399, - [SMALL_STATE(1810)] = 92446, - [SMALL_STATE(1811)] = 92505, - [SMALL_STATE(1812)] = 92552, - [SMALL_STATE(1813)] = 92611, - [SMALL_STATE(1814)] = 92658, - [SMALL_STATE(1815)] = 92705, - [SMALL_STATE(1816)] = 92752, - [SMALL_STATE(1817)] = 92799, - [SMALL_STATE(1818)] = 92858, - [SMALL_STATE(1819)] = 92917, - [SMALL_STATE(1820)] = 92976, - [SMALL_STATE(1821)] = 93035, - [SMALL_STATE(1822)] = 93094, - [SMALL_STATE(1823)] = 93141, - [SMALL_STATE(1824)] = 93188, - [SMALL_STATE(1825)] = 93247, - [SMALL_STATE(1826)] = 93294, - [SMALL_STATE(1827)] = 93340, - [SMALL_STATE(1828)] = 93394, - [SMALL_STATE(1829)] = 93440, - [SMALL_STATE(1830)] = 93482, - [SMALL_STATE(1831)] = 93524, - [SMALL_STATE(1832)] = 93566, - [SMALL_STATE(1833)] = 93612, - [SMALL_STATE(1834)] = 93664, - [SMALL_STATE(1835)] = 93718, - [SMALL_STATE(1836)] = 93764, - [SMALL_STATE(1837)] = 93816, - [SMALL_STATE(1838)] = 93860, - [SMALL_STATE(1839)] = 93892, - [SMALL_STATE(1840)] = 93924, - [SMALL_STATE(1841)] = 93970, - [SMALL_STATE(1842)] = 94002, - [SMALL_STATE(1843)] = 94036, - [SMALL_STATE(1844)] = 94090, - [SMALL_STATE(1845)] = 94144, - [SMALL_STATE(1846)] = 94196, - [SMALL_STATE(1847)] = 94248, - [SMALL_STATE(1848)] = 94302, - [SMALL_STATE(1849)] = 94356, - [SMALL_STATE(1850)] = 94410, - [SMALL_STATE(1851)] = 94464, - [SMALL_STATE(1852)] = 94518, - [SMALL_STATE(1853)] = 94572, - [SMALL_STATE(1854)] = 94624, - [SMALL_STATE(1855)] = 94670, - [SMALL_STATE(1856)] = 94717, - [SMALL_STATE(1857)] = 94764, - [SMALL_STATE(1858)] = 94797, - [SMALL_STATE(1859)] = 94844, - [SMALL_STATE(1860)] = 94891, - [SMALL_STATE(1861)] = 94938, - [SMALL_STATE(1862)] = 94985, - [SMALL_STATE(1863)] = 95032, - [SMALL_STATE(1864)] = 95079, - [SMALL_STATE(1865)] = 95126, - [SMALL_STATE(1866)] = 95173, - [SMALL_STATE(1867)] = 95220, - [SMALL_STATE(1868)] = 95267, - [SMALL_STATE(1869)] = 95314, - [SMALL_STATE(1870)] = 95361, - [SMALL_STATE(1871)] = 95408, - [SMALL_STATE(1872)] = 95455, - [SMALL_STATE(1873)] = 95502, - [SMALL_STATE(1874)] = 95535, - [SMALL_STATE(1875)] = 95582, - [SMALL_STATE(1876)] = 95629, - [SMALL_STATE(1877)] = 95676, - [SMALL_STATE(1878)] = 95721, - [SMALL_STATE(1879)] = 95768, - [SMALL_STATE(1880)] = 95801, - [SMALL_STATE(1881)] = 95848, - [SMALL_STATE(1882)] = 95895, - [SMALL_STATE(1883)] = 95942, - [SMALL_STATE(1884)] = 95989, - [SMALL_STATE(1885)] = 96036, - [SMALL_STATE(1886)] = 96083, - [SMALL_STATE(1887)] = 96130, - [SMALL_STATE(1888)] = 96174, - [SMALL_STATE(1889)] = 96218, - [SMALL_STATE(1890)] = 96266, - [SMALL_STATE(1891)] = 96314, - [SMALL_STATE(1892)] = 96362, - [SMALL_STATE(1893)] = 96406, - [SMALL_STATE(1894)] = 96448, - [SMALL_STATE(1895)] = 96492, - [SMALL_STATE(1896)] = 96538, - [SMALL_STATE(1897)] = 96578, - [SMALL_STATE(1898)] = 96624, - [SMALL_STATE(1899)] = 96668, - [SMALL_STATE(1900)] = 96716, - [SMALL_STATE(1901)] = 96762, - [SMALL_STATE(1902)] = 96798, - [SMALL_STATE(1903)] = 96842, - [SMALL_STATE(1904)] = 96878, - [SMALL_STATE(1905)] = 96922, - [SMALL_STATE(1906)] = 96966, - [SMALL_STATE(1907)] = 97012, - [SMALL_STATE(1908)] = 97058, - [SMALL_STATE(1909)] = 97104, - [SMALL_STATE(1910)] = 97150, - [SMALL_STATE(1911)] = 97194, - [SMALL_STATE(1912)] = 97240, - [SMALL_STATE(1913)] = 97288, - [SMALL_STATE(1914)] = 97336, - [SMALL_STATE(1915)] = 97376, - [SMALL_STATE(1916)] = 97424, - [SMALL_STATE(1917)] = 97470, - [SMALL_STATE(1918)] = 97514, - [SMALL_STATE(1919)] = 97562, - [SMALL_STATE(1920)] = 97610, - [SMALL_STATE(1921)] = 97654, - [SMALL_STATE(1922)] = 97698, - [SMALL_STATE(1923)] = 97742, - [SMALL_STATE(1924)] = 97786, - [SMALL_STATE(1925)] = 97832, - [SMALL_STATE(1926)] = 97880, - [SMALL_STATE(1927)] = 97924, - [SMALL_STATE(1928)] = 97957, - [SMALL_STATE(1929)] = 97990, - [SMALL_STATE(1930)] = 98025, - [SMALL_STATE(1931)] = 98070, - [SMALL_STATE(1932)] = 98115, - [SMALL_STATE(1933)] = 98158, - [SMALL_STATE(1934)] = 98187, - [SMALL_STATE(1935)] = 98222, - [SMALL_STATE(1936)] = 98253, - [SMALL_STATE(1937)] = 98291, - [SMALL_STATE(1938)] = 98337, - [SMALL_STATE(1939)] = 98375, - [SMALL_STATE(1940)] = 98421, - [SMALL_STATE(1941)] = 98467, - [SMALL_STATE(1942)] = 98505, - [SMALL_STATE(1943)] = 98551, - [SMALL_STATE(1944)] = 98593, - [SMALL_STATE(1945)] = 98631, - [SMALL_STATE(1946)] = 98677, - [SMALL_STATE(1947)] = 98723, - [SMALL_STATE(1948)] = 98771, - [SMALL_STATE(1949)] = 98817, - [SMALL_STATE(1950)] = 98863, - [SMALL_STATE(1951)] = 98911, - [SMALL_STATE(1952)] = 98947, + [SMALL_STATE(1425)] = 72544, + [SMALL_STATE(1426)] = 72588, + [SMALL_STATE(1427)] = 72630, + [SMALL_STATE(1428)] = 72692, + [SMALL_STATE(1429)] = 72734, + [SMALL_STATE(1430)] = 72778, + [SMALL_STATE(1431)] = 72820, + [SMALL_STATE(1432)] = 72864, + [SMALL_STATE(1433)] = 72908, + [SMALL_STATE(1434)] = 72950, + [SMALL_STATE(1435)] = 72992, + [SMALL_STATE(1436)] = 73034, + [SMALL_STATE(1437)] = 73076, + [SMALL_STATE(1438)] = 73118, + [SMALL_STATE(1439)] = 73160, + [SMALL_STATE(1440)] = 73204, + [SMALL_STATE(1441)] = 73246, + [SMALL_STATE(1442)] = 73290, + [SMALL_STATE(1443)] = 73332, + [SMALL_STATE(1444)] = 73374, + [SMALL_STATE(1445)] = 73436, + [SMALL_STATE(1446)] = 73478, + [SMALL_STATE(1447)] = 73522, + [SMALL_STATE(1448)] = 73566, + [SMALL_STATE(1449)] = 73608, + [SMALL_STATE(1450)] = 73650, + [SMALL_STATE(1451)] = 73692, + [SMALL_STATE(1452)] = 73734, + [SMALL_STATE(1453)] = 73776, + [SMALL_STATE(1454)] = 73818, + [SMALL_STATE(1455)] = 73862, + [SMALL_STATE(1456)] = 73906, + [SMALL_STATE(1457)] = 73948, + [SMALL_STATE(1458)] = 73990, + [SMALL_STATE(1459)] = 74034, + [SMALL_STATE(1460)] = 74076, + [SMALL_STATE(1461)] = 74118, + [SMALL_STATE(1462)] = 74162, + [SMALL_STATE(1463)] = 74206, + [SMALL_STATE(1464)] = 74248, + [SMALL_STATE(1465)] = 74290, + [SMALL_STATE(1466)] = 74332, + [SMALL_STATE(1467)] = 74376, + [SMALL_STATE(1468)] = 74418, + [SMALL_STATE(1469)] = 74462, + [SMALL_STATE(1470)] = 74506, + [SMALL_STATE(1471)] = 74548, + [SMALL_STATE(1472)] = 74590, + [SMALL_STATE(1473)] = 74632, + [SMALL_STATE(1474)] = 74674, + [SMALL_STATE(1475)] = 74716, + [SMALL_STATE(1476)] = 74760, + [SMALL_STATE(1477)] = 74802, + [SMALL_STATE(1478)] = 74846, + [SMALL_STATE(1479)] = 74888, + [SMALL_STATE(1480)] = 74930, + [SMALL_STATE(1481)] = 74972, + [SMALL_STATE(1482)] = 75014, + [SMALL_STATE(1483)] = 75056, + [SMALL_STATE(1484)] = 75098, + [SMALL_STATE(1485)] = 75140, + [SMALL_STATE(1486)] = 75182, + [SMALL_STATE(1487)] = 75226, + [SMALL_STATE(1488)] = 75268, + [SMALL_STATE(1489)] = 75312, + [SMALL_STATE(1490)] = 75356, + [SMALL_STATE(1491)] = 75400, + [SMALL_STATE(1492)] = 75462, + [SMALL_STATE(1493)] = 75510, + [SMALL_STATE(1494)] = 75554, + [SMALL_STATE(1495)] = 75598, + [SMALL_STATE(1496)] = 75640, + [SMALL_STATE(1497)] = 75682, + [SMALL_STATE(1498)] = 75744, + [SMALL_STATE(1499)] = 75788, + [SMALL_STATE(1500)] = 75830, + [SMALL_STATE(1501)] = 75874, + [SMALL_STATE(1502)] = 75918, + [SMALL_STATE(1503)] = 75960, + [SMALL_STATE(1504)] = 76002, + [SMALL_STATE(1505)] = 76046, + [SMALL_STATE(1506)] = 76088, + [SMALL_STATE(1507)] = 76130, + [SMALL_STATE(1508)] = 76172, + [SMALL_STATE(1509)] = 76216, + [SMALL_STATE(1510)] = 76260, + [SMALL_STATE(1511)] = 76302, + [SMALL_STATE(1512)] = 76344, + [SMALL_STATE(1513)] = 76386, + [SMALL_STATE(1514)] = 76428, + [SMALL_STATE(1515)] = 76470, + [SMALL_STATE(1516)] = 76512, + [SMALL_STATE(1517)] = 76554, + [SMALL_STATE(1518)] = 76596, + [SMALL_STATE(1519)] = 76638, + [SMALL_STATE(1520)] = 76680, + [SMALL_STATE(1521)] = 76724, + [SMALL_STATE(1522)] = 76766, + [SMALL_STATE(1523)] = 76808, + [SMALL_STATE(1524)] = 76850, + [SMALL_STATE(1525)] = 76894, + [SMALL_STATE(1526)] = 76936, + [SMALL_STATE(1527)] = 76980, + [SMALL_STATE(1528)] = 77042, + [SMALL_STATE(1529)] = 77084, + [SMALL_STATE(1530)] = 77128, + [SMALL_STATE(1531)] = 77176, + [SMALL_STATE(1532)] = 77218, + [SMALL_STATE(1533)] = 77260, + [SMALL_STATE(1534)] = 77304, + [SMALL_STATE(1535)] = 77346, + [SMALL_STATE(1536)] = 77392, + [SMALL_STATE(1537)] = 77436, + [SMALL_STATE(1538)] = 77478, + [SMALL_STATE(1539)] = 77522, + [SMALL_STATE(1540)] = 77566, + [SMALL_STATE(1541)] = 77610, + [SMALL_STATE(1542)] = 77654, + [SMALL_STATE(1543)] = 77698, + [SMALL_STATE(1544)] = 77740, + [SMALL_STATE(1545)] = 77784, + [SMALL_STATE(1546)] = 77826, + [SMALL_STATE(1547)] = 77868, + [SMALL_STATE(1548)] = 77909, + [SMALL_STATE(1549)] = 77954, + [SMALL_STATE(1550)] = 77995, + [SMALL_STATE(1551)] = 78036, + [SMALL_STATE(1552)] = 78077, + [SMALL_STATE(1553)] = 78118, + [SMALL_STATE(1554)] = 78159, + [SMALL_STATE(1555)] = 78204, + [SMALL_STATE(1556)] = 78245, + [SMALL_STATE(1557)] = 78324, + [SMALL_STATE(1558)] = 78365, + [SMALL_STATE(1559)] = 78410, + [SMALL_STATE(1560)] = 78451, + [SMALL_STATE(1561)] = 78498, + [SMALL_STATE(1562)] = 78539, + [SMALL_STATE(1563)] = 78580, + [SMALL_STATE(1564)] = 78621, + [SMALL_STATE(1565)] = 78662, + [SMALL_STATE(1566)] = 78703, + [SMALL_STATE(1567)] = 78746, + [SMALL_STATE(1568)] = 78787, + [SMALL_STATE(1569)] = 78828, + [SMALL_STATE(1570)] = 78869, + [SMALL_STATE(1571)] = 78914, + [SMALL_STATE(1572)] = 78955, + [SMALL_STATE(1573)] = 78996, + [SMALL_STATE(1574)] = 79037, + [SMALL_STATE(1575)] = 79078, + [SMALL_STATE(1576)] = 79119, + [SMALL_STATE(1577)] = 79160, + [SMALL_STATE(1578)] = 79201, + [SMALL_STATE(1579)] = 79242, + [SMALL_STATE(1580)] = 79283, + [SMALL_STATE(1581)] = 79324, + [SMALL_STATE(1582)] = 79365, + [SMALL_STATE(1583)] = 79410, + [SMALL_STATE(1584)] = 79451, + [SMALL_STATE(1585)] = 79492, + [SMALL_STATE(1586)] = 79534, + [SMALL_STATE(1587)] = 79574, + [SMALL_STATE(1588)] = 79616, + [SMALL_STATE(1589)] = 79658, + [SMALL_STATE(1590)] = 79698, + [SMALL_STATE(1591)] = 79740, + [SMALL_STATE(1592)] = 79818, + [SMALL_STATE(1593)] = 79886, + [SMALL_STATE(1594)] = 79928, + [SMALL_STATE(1595)] = 79972, + [SMALL_STATE(1596)] = 80014, + [SMALL_STATE(1597)] = 80056, + [SMALL_STATE(1598)] = 80134, + [SMALL_STATE(1599)] = 80212, + [SMALL_STATE(1600)] = 80254, + [SMALL_STATE(1601)] = 80296, + [SMALL_STATE(1602)] = 80364, + [SMALL_STATE(1603)] = 80406, + [SMALL_STATE(1604)] = 80448, + [SMALL_STATE(1605)] = 80490, + [SMALL_STATE(1606)] = 80532, + [SMALL_STATE(1607)] = 80610, + [SMALL_STATE(1608)] = 80652, + [SMALL_STATE(1609)] = 80696, + [SMALL_STATE(1610)] = 80738, + [SMALL_STATE(1611)] = 80778, + [SMALL_STATE(1612)] = 80820, + [SMALL_STATE(1613)] = 80898, + [SMALL_STATE(1614)] = 80976, + [SMALL_STATE(1615)] = 81018, + [SMALL_STATE(1616)] = 81096, + [SMALL_STATE(1617)] = 81138, + [SMALL_STATE(1618)] = 81180, + [SMALL_STATE(1619)] = 81258, + [SMALL_STATE(1620)] = 81300, + [SMALL_STATE(1621)] = 81378, + [SMALL_STATE(1622)] = 81420, + [SMALL_STATE(1623)] = 81462, + [SMALL_STATE(1624)] = 81504, + [SMALL_STATE(1625)] = 81546, + [SMALL_STATE(1626)] = 81588, + [SMALL_STATE(1627)] = 81630, + [SMALL_STATE(1628)] = 81672, + [SMALL_STATE(1629)] = 81714, + [SMALL_STATE(1630)] = 81756, + [SMALL_STATE(1631)] = 81798, + [SMALL_STATE(1632)] = 81864, + [SMALL_STATE(1633)] = 81942, + [SMALL_STATE(1634)] = 81983, + [SMALL_STATE(1635)] = 82056, + [SMALL_STATE(1636)] = 82097, + [SMALL_STATE(1637)] = 82143, + [SMALL_STATE(1638)] = 82189, + [SMALL_STATE(1639)] = 82225, + [SMALL_STATE(1640)] = 82271, + [SMALL_STATE(1641)] = 82317, + [SMALL_STATE(1642)] = 82363, + [SMALL_STATE(1643)] = 82409, + [SMALL_STATE(1644)] = 82455, + [SMALL_STATE(1645)] = 82501, + [SMALL_STATE(1646)] = 82547, + [SMALL_STATE(1647)] = 82619, + [SMALL_STATE(1648)] = 82685, + [SMALL_STATE(1649)] = 82757, + [SMALL_STATE(1650)] = 82829, + [SMALL_STATE(1651)] = 82875, + [SMALL_STATE(1652)] = 82947, + [SMALL_STATE(1653)] = 83019, + [SMALL_STATE(1654)] = 83065, + [SMALL_STATE(1655)] = 83111, + [SMALL_STATE(1656)] = 83177, + [SMALL_STATE(1657)] = 83249, + [SMALL_STATE(1658)] = 83295, + [SMALL_STATE(1659)] = 83341, + [SMALL_STATE(1660)] = 83387, + [SMALL_STATE(1661)] = 83453, + [SMALL_STATE(1662)] = 83499, + [SMALL_STATE(1663)] = 83571, + [SMALL_STATE(1664)] = 83617, + [SMALL_STATE(1665)] = 83653, + [SMALL_STATE(1666)] = 83689, + [SMALL_STATE(1667)] = 83725, + [SMALL_STATE(1668)] = 83771, + [SMALL_STATE(1669)] = 83807, + [SMALL_STATE(1670)] = 83853, + [SMALL_STATE(1671)] = 83919, + [SMALL_STATE(1672)] = 83991, + [SMALL_STATE(1673)] = 84037, + [SMALL_STATE(1674)] = 84109, + [SMALL_STATE(1675)] = 84155, + [SMALL_STATE(1676)] = 84201, + [SMALL_STATE(1677)] = 84273, + [SMALL_STATE(1678)] = 84342, + [SMALL_STATE(1679)] = 84411, + [SMALL_STATE(1680)] = 84480, + [SMALL_STATE(1681)] = 84547, + [SMALL_STATE(1682)] = 84616, + [SMALL_STATE(1683)] = 84685, + [SMALL_STATE(1684)] = 84754, + [SMALL_STATE(1685)] = 84823, + [SMALL_STATE(1686)] = 84892, + [SMALL_STATE(1687)] = 84961, + [SMALL_STATE(1688)] = 85030, + [SMALL_STATE(1689)] = 85099, + [SMALL_STATE(1690)] = 85168, + [SMALL_STATE(1691)] = 85237, + [SMALL_STATE(1692)] = 85306, + [SMALL_STATE(1693)] = 85375, + [SMALL_STATE(1694)] = 85444, + [SMALL_STATE(1695)] = 85513, + [SMALL_STATE(1696)] = 85582, + [SMALL_STATE(1697)] = 85651, + [SMALL_STATE(1698)] = 85720, + [SMALL_STATE(1699)] = 85766, + [SMALL_STATE(1700)] = 85826, + [SMALL_STATE(1701)] = 85886, + [SMALL_STATE(1702)] = 85932, + [SMALL_STATE(1703)] = 85992, + [SMALL_STATE(1704)] = 86052, + [SMALL_STATE(1705)] = 86112, + [SMALL_STATE(1706)] = 86158, + [SMALL_STATE(1707)] = 86204, + [SMALL_STATE(1708)] = 86250, + [SMALL_STATE(1709)] = 86310, + [SMALL_STATE(1710)] = 86370, + [SMALL_STATE(1711)] = 86430, + [SMALL_STATE(1712)] = 86490, + [SMALL_STATE(1713)] = 86550, + [SMALL_STATE(1714)] = 86610, + [SMALL_STATE(1715)] = 86656, + [SMALL_STATE(1716)] = 86702, + [SMALL_STATE(1717)] = 86748, + [SMALL_STATE(1718)] = 86792, + [SMALL_STATE(1719)] = 86852, + [SMALL_STATE(1720)] = 86912, + [SMALL_STATE(1721)] = 86972, + [SMALL_STATE(1722)] = 87032, + [SMALL_STATE(1723)] = 87092, + [SMALL_STATE(1724)] = 87152, + [SMALL_STATE(1725)] = 87212, + [SMALL_STATE(1726)] = 87272, + [SMALL_STATE(1727)] = 87318, + [SMALL_STATE(1728)] = 87382, + [SMALL_STATE(1729)] = 87442, + [SMALL_STATE(1730)] = 87482, + [SMALL_STATE(1731)] = 87546, + [SMALL_STATE(1732)] = 87592, + [SMALL_STATE(1733)] = 87652, + [SMALL_STATE(1734)] = 87715, + [SMALL_STATE(1735)] = 87778, + [SMALL_STATE(1736)] = 87841, + [SMALL_STATE(1737)] = 87904, + [SMALL_STATE(1738)] = 87967, + [SMALL_STATE(1739)] = 88030, + [SMALL_STATE(1740)] = 88093, + [SMALL_STATE(1741)] = 88156, + [SMALL_STATE(1742)] = 88219, + [SMALL_STATE(1743)] = 88282, + [SMALL_STATE(1744)] = 88345, + [SMALL_STATE(1745)] = 88408, + [SMALL_STATE(1746)] = 88471, + [SMALL_STATE(1747)] = 88534, + [SMALL_STATE(1748)] = 88597, + [SMALL_STATE(1749)] = 88660, + [SMALL_STATE(1750)] = 88723, + [SMALL_STATE(1751)] = 88786, + [SMALL_STATE(1752)] = 88849, + [SMALL_STATE(1753)] = 88912, + [SMALL_STATE(1754)] = 88975, + [SMALL_STATE(1755)] = 89038, + [SMALL_STATE(1756)] = 89101, + [SMALL_STATE(1757)] = 89164, + [SMALL_STATE(1758)] = 89227, + [SMALL_STATE(1759)] = 89290, + [SMALL_STATE(1760)] = 89353, + [SMALL_STATE(1761)] = 89416, + [SMALL_STATE(1762)] = 89479, + [SMALL_STATE(1763)] = 89542, + [SMALL_STATE(1764)] = 89605, + [SMALL_STATE(1765)] = 89668, + [SMALL_STATE(1766)] = 89731, + [SMALL_STATE(1767)] = 89794, + [SMALL_STATE(1768)] = 89857, + [SMALL_STATE(1769)] = 89920, + [SMALL_STATE(1770)] = 89983, + [SMALL_STATE(1771)] = 90046, + [SMALL_STATE(1772)] = 90109, + [SMALL_STATE(1773)] = 90172, + [SMALL_STATE(1774)] = 90235, + [SMALL_STATE(1775)] = 90298, + [SMALL_STATE(1776)] = 90361, + [SMALL_STATE(1777)] = 90424, + [SMALL_STATE(1778)] = 90487, + [SMALL_STATE(1779)] = 90550, + [SMALL_STATE(1780)] = 90613, + [SMALL_STATE(1781)] = 90676, + [SMALL_STATE(1782)] = 90739, + [SMALL_STATE(1783)] = 90802, + [SMALL_STATE(1784)] = 90865, + [SMALL_STATE(1785)] = 90928, + [SMALL_STATE(1786)] = 90991, + [SMALL_STATE(1787)] = 91054, + [SMALL_STATE(1788)] = 91117, + [SMALL_STATE(1789)] = 91180, + [SMALL_STATE(1790)] = 91243, + [SMALL_STATE(1791)] = 91306, + [SMALL_STATE(1792)] = 91363, + [SMALL_STATE(1793)] = 91426, + [SMALL_STATE(1794)] = 91489, + [SMALL_STATE(1795)] = 91552, + [SMALL_STATE(1796)] = 91615, + [SMALL_STATE(1797)] = 91678, + [SMALL_STATE(1798)] = 91741, + [SMALL_STATE(1799)] = 91804, + [SMALL_STATE(1800)] = 91867, + [SMALL_STATE(1801)] = 91930, + [SMALL_STATE(1802)] = 91993, + [SMALL_STATE(1803)] = 92056, + [SMALL_STATE(1804)] = 92119, + [SMALL_STATE(1805)] = 92177, + [SMALL_STATE(1806)] = 92211, + [SMALL_STATE(1807)] = 92245, + [SMALL_STATE(1808)] = 92279, + [SMALL_STATE(1809)] = 92337, + [SMALL_STATE(1810)] = 92371, + [SMALL_STATE(1811)] = 92429, + [SMALL_STATE(1812)] = 92467, + [SMALL_STATE(1813)] = 92501, + [SMALL_STATE(1814)] = 92559, + [SMALL_STATE(1815)] = 92593, + [SMALL_STATE(1816)] = 92651, + [SMALL_STATE(1817)] = 92709, + [SMALL_STATE(1818)] = 92767, + [SMALL_STATE(1819)] = 92801, + [SMALL_STATE(1820)] = 92848, + [SMALL_STATE(1821)] = 92895, + [SMALL_STATE(1822)] = 92942, + [SMALL_STATE(1823)] = 92989, + [SMALL_STATE(1824)] = 93048, + [SMALL_STATE(1825)] = 93107, + [SMALL_STATE(1826)] = 93166, + [SMALL_STATE(1827)] = 93213, + [SMALL_STATE(1828)] = 93260, + [SMALL_STATE(1829)] = 93319, + [SMALL_STATE(1830)] = 93378, + [SMALL_STATE(1831)] = 93437, + [SMALL_STATE(1832)] = 93496, + [SMALL_STATE(1833)] = 93555, + [SMALL_STATE(1834)] = 93602, + [SMALL_STATE(1835)] = 93649, + [SMALL_STATE(1836)] = 93696, + [SMALL_STATE(1837)] = 93743, + [SMALL_STATE(1838)] = 93802, + [SMALL_STATE(1839)] = 93861, + [SMALL_STATE(1840)] = 93908, + [SMALL_STATE(1841)] = 93952, + [SMALL_STATE(1842)] = 94006, + [SMALL_STATE(1843)] = 94058, + [SMALL_STATE(1844)] = 94112, + [SMALL_STATE(1845)] = 94158, + [SMALL_STATE(1846)] = 94204, + [SMALL_STATE(1847)] = 94258, + [SMALL_STATE(1848)] = 94312, + [SMALL_STATE(1849)] = 94358, + [SMALL_STATE(1850)] = 94404, + [SMALL_STATE(1851)] = 94456, + [SMALL_STATE(1852)] = 94510, + [SMALL_STATE(1853)] = 94564, + [SMALL_STATE(1854)] = 94596, + [SMALL_STATE(1855)] = 94628, + [SMALL_STATE(1856)] = 94682, + [SMALL_STATE(1857)] = 94736, + [SMALL_STATE(1858)] = 94778, + [SMALL_STATE(1859)] = 94824, + [SMALL_STATE(1860)] = 94866, + [SMALL_STATE(1861)] = 94898, + [SMALL_STATE(1862)] = 94950, + [SMALL_STATE(1863)] = 94984, + [SMALL_STATE(1864)] = 95036, + [SMALL_STATE(1865)] = 95082, + [SMALL_STATE(1866)] = 95136, + [SMALL_STATE(1867)] = 95188, + [SMALL_STATE(1868)] = 95242, + [SMALL_STATE(1869)] = 95284, + [SMALL_STATE(1870)] = 95331, + [SMALL_STATE(1871)] = 95364, + [SMALL_STATE(1872)] = 95411, + [SMALL_STATE(1873)] = 95458, + [SMALL_STATE(1874)] = 95505, + [SMALL_STATE(1875)] = 95552, + [SMALL_STATE(1876)] = 95599, + [SMALL_STATE(1877)] = 95646, + [SMALL_STATE(1878)] = 95693, + [SMALL_STATE(1879)] = 95740, + [SMALL_STATE(1880)] = 95787, + [SMALL_STATE(1881)] = 95834, + [SMALL_STATE(1882)] = 95881, + [SMALL_STATE(1883)] = 95928, + [SMALL_STATE(1884)] = 95975, + [SMALL_STATE(1885)] = 96022, + [SMALL_STATE(1886)] = 96055, + [SMALL_STATE(1887)] = 96102, + [SMALL_STATE(1888)] = 96149, + [SMALL_STATE(1889)] = 96196, + [SMALL_STATE(1890)] = 96243, + [SMALL_STATE(1891)] = 96290, + [SMALL_STATE(1892)] = 96337, + [SMALL_STATE(1893)] = 96384, + [SMALL_STATE(1894)] = 96431, + [SMALL_STATE(1895)] = 96478, + [SMALL_STATE(1896)] = 96525, + [SMALL_STATE(1897)] = 96572, + [SMALL_STATE(1898)] = 96619, + [SMALL_STATE(1899)] = 96664, + [SMALL_STATE(1900)] = 96697, + [SMALL_STATE(1901)] = 96744, + [SMALL_STATE(1902)] = 96792, + [SMALL_STATE(1903)] = 96836, + [SMALL_STATE(1904)] = 96880, + [SMALL_STATE(1905)] = 96916, + [SMALL_STATE(1906)] = 96960, + [SMALL_STATE(1907)] = 97000, + [SMALL_STATE(1908)] = 97044, + [SMALL_STATE(1909)] = 97086, + [SMALL_STATE(1910)] = 97130, + [SMALL_STATE(1911)] = 97176, + [SMALL_STATE(1912)] = 97220, + [SMALL_STATE(1913)] = 97266, + [SMALL_STATE(1914)] = 97312, + [SMALL_STATE(1915)] = 97360, + [SMALL_STATE(1916)] = 97406, + [SMALL_STATE(1917)] = 97452, + [SMALL_STATE(1918)] = 97500, + [SMALL_STATE(1919)] = 97546, + [SMALL_STATE(1920)] = 97586, + [SMALL_STATE(1921)] = 97632, + [SMALL_STATE(1922)] = 97676, + [SMALL_STATE(1923)] = 97720, + [SMALL_STATE(1924)] = 97768, + [SMALL_STATE(1925)] = 97816, + [SMALL_STATE(1926)] = 97860, + [SMALL_STATE(1927)] = 97904, + [SMALL_STATE(1928)] = 97952, + [SMALL_STATE(1929)] = 98000, + [SMALL_STATE(1930)] = 98048, + [SMALL_STATE(1931)] = 98092, + [SMALL_STATE(1932)] = 98136, + [SMALL_STATE(1933)] = 98172, + [SMALL_STATE(1934)] = 98218, + [SMALL_STATE(1935)] = 98262, + [SMALL_STATE(1936)] = 98306, + [SMALL_STATE(1937)] = 98354, + [SMALL_STATE(1938)] = 98400, + [SMALL_STATE(1939)] = 98444, + [SMALL_STATE(1940)] = 98492, + [SMALL_STATE(1941)] = 98538, + [SMALL_STATE(1942)] = 98573, + [SMALL_STATE(1943)] = 98602, + [SMALL_STATE(1944)] = 98645, + [SMALL_STATE(1945)] = 98676, + [SMALL_STATE(1946)] = 98721, + [SMALL_STATE(1947)] = 98766, + [SMALL_STATE(1948)] = 98799, + [SMALL_STATE(1949)] = 98832, + [SMALL_STATE(1950)] = 98867, + [SMALL_STATE(1951)] = 98913, + [SMALL_STATE(1952)] = 98959, [SMALL_STATE(1953)] = 98993, - [SMALL_STATE(1954)] = 99027, - [SMALL_STATE(1955)] = 99073, - [SMALL_STATE(1956)] = 99119, - [SMALL_STATE(1957)] = 99157, - [SMALL_STATE(1958)] = 99203, - [SMALL_STATE(1959)] = 99241, - [SMALL_STATE(1960)] = 99271, - [SMALL_STATE(1961)] = 99319, - [SMALL_STATE(1962)] = 99365, - [SMALL_STATE(1963)] = 99403, - [SMALL_STATE(1964)] = 99449, - [SMALL_STATE(1965)] = 99491, - [SMALL_STATE(1966)] = 99523, - [SMALL_STATE(1967)] = 99569, - [SMALL_STATE(1968)] = 99601, - [SMALL_STATE(1969)] = 99639, - [SMALL_STATE(1970)] = 99681, - [SMALL_STATE(1971)] = 99727, - [SMALL_STATE(1972)] = 99773, - [SMALL_STATE(1973)] = 99815, - [SMALL_STATE(1974)] = 99849, - [SMALL_STATE(1975)] = 99887, - [SMALL_STATE(1976)] = 99935, - [SMALL_STATE(1977)] = 99983, - [SMALL_STATE(1978)] = 100029, - [SMALL_STATE(1979)] = 100075, - [SMALL_STATE(1980)] = 100113, - [SMALL_STATE(1981)] = 100159, - [SMALL_STATE(1982)] = 100189, - [SMALL_STATE(1983)] = 100227, - [SMALL_STATE(1984)] = 100269, - [SMALL_STATE(1985)] = 100317, - [SMALL_STATE(1986)] = 100359, - [SMALL_STATE(1987)] = 100405, - [SMALL_STATE(1988)] = 100453, - [SMALL_STATE(1989)] = 100499, - [SMALL_STATE(1990)] = 100545, - [SMALL_STATE(1991)] = 100591, - [SMALL_STATE(1992)] = 100637, - [SMALL_STATE(1993)] = 100665, - [SMALL_STATE(1994)] = 100711, - [SMALL_STATE(1995)] = 100753, - [SMALL_STATE(1996)] = 100801, - [SMALL_STATE(1997)] = 100843, - [SMALL_STATE(1998)] = 100881, - [SMALL_STATE(1999)] = 100923, - [SMALL_STATE(2000)] = 100961, - [SMALL_STATE(2001)] = 101009, - [SMALL_STATE(2002)] = 101055, - [SMALL_STATE(2003)] = 101097, - [SMALL_STATE(2004)] = 101145, - [SMALL_STATE(2005)] = 101191, - [SMALL_STATE(2006)] = 101229, - [SMALL_STATE(2007)] = 101267, - [SMALL_STATE(2008)] = 101313, - [SMALL_STATE(2009)] = 101359, - [SMALL_STATE(2010)] = 101386, - [SMALL_STATE(2011)] = 101415, - [SMALL_STATE(2012)] = 101444, - [SMALL_STATE(2013)] = 101481, - [SMALL_STATE(2014)] = 101528, - [SMALL_STATE(2015)] = 101567, - [SMALL_STATE(2016)] = 101614, - [SMALL_STATE(2017)] = 101653, - [SMALL_STATE(2018)] = 101700, - [SMALL_STATE(2019)] = 101739, - [SMALL_STATE(2020)] = 101786, - [SMALL_STATE(2021)] = 101825, - [SMALL_STATE(2022)] = 101854, - [SMALL_STATE(2023)] = 101901, - [SMALL_STATE(2024)] = 101948, - [SMALL_STATE(2025)] = 101977, - [SMALL_STATE(2026)] = 102024, - [SMALL_STATE(2027)] = 102071, - [SMALL_STATE(2028)] = 102110, - [SMALL_STATE(2029)] = 102149, - [SMALL_STATE(2030)] = 102188, - [SMALL_STATE(2031)] = 102227, - [SMALL_STATE(2032)] = 102274, - [SMALL_STATE(2033)] = 102321, - [SMALL_STATE(2034)] = 102360, - [SMALL_STATE(2035)] = 102389, - [SMALL_STATE(2036)] = 102418, - [SMALL_STATE(2037)] = 102457, - [SMALL_STATE(2038)] = 102486, - [SMALL_STATE(2039)] = 102533, - [SMALL_STATE(2040)] = 102580, - [SMALL_STATE(2041)] = 102609, - [SMALL_STATE(2042)] = 102646, - [SMALL_STATE(2043)] = 102683, - [SMALL_STATE(2044)] = 102730, - [SMALL_STATE(2045)] = 102777, - [SMALL_STATE(2046)] = 102824, - [SMALL_STATE(2047)] = 102851, - [SMALL_STATE(2048)] = 102890, - [SMALL_STATE(2049)] = 102937, - [SMALL_STATE(2050)] = 102984, - [SMALL_STATE(2051)] = 103023, - [SMALL_STATE(2052)] = 103062, - [SMALL_STATE(2053)] = 103109, - [SMALL_STATE(2054)] = 103148, - [SMALL_STATE(2055)] = 103195, - [SMALL_STATE(2056)] = 103242, - [SMALL_STATE(2057)] = 103281, - [SMALL_STATE(2058)] = 103328, - [SMALL_STATE(2059)] = 103375, - [SMALL_STATE(2060)] = 103414, - [SMALL_STATE(2061)] = 103461, - [SMALL_STATE(2062)] = 103508, - [SMALL_STATE(2063)] = 103547, - [SMALL_STATE(2064)] = 103576, - [SMALL_STATE(2065)] = 103607, - [SMALL_STATE(2066)] = 103634, - [SMALL_STATE(2067)] = 103663, - [SMALL_STATE(2068)] = 103710, - [SMALL_STATE(2069)] = 103757, - [SMALL_STATE(2070)] = 103786, - [SMALL_STATE(2071)] = 103821, - [SMALL_STATE(2072)] = 103860, - [SMALL_STATE(2073)] = 103887, - [SMALL_STATE(2074)] = 103934, - [SMALL_STATE(2075)] = 103973, - [SMALL_STATE(2076)] = 104012, - [SMALL_STATE(2077)] = 104059, - [SMALL_STATE(2078)] = 104086, - [SMALL_STATE(2079)] = 104133, - [SMALL_STATE(2080)] = 104170, - [SMALL_STATE(2081)] = 104209, - [SMALL_STATE(2082)] = 104256, - [SMALL_STATE(2083)] = 104295, - [SMALL_STATE(2084)] = 104342, - [SMALL_STATE(2085)] = 104381, - [SMALL_STATE(2086)] = 104410, - [SMALL_STATE(2087)] = 104439, - [SMALL_STATE(2088)] = 104486, - [SMALL_STATE(2089)] = 104525, - [SMALL_STATE(2090)] = 104572, - [SMALL_STATE(2091)] = 104619, - [SMALL_STATE(2092)] = 104666, - [SMALL_STATE(2093)] = 104703, - [SMALL_STATE(2094)] = 104742, - [SMALL_STATE(2095)] = 104789, - [SMALL_STATE(2096)] = 104828, - [SMALL_STATE(2097)] = 104857, - [SMALL_STATE(2098)] = 104904, - [SMALL_STATE(2099)] = 104951, - [SMALL_STATE(2100)] = 104998, - [SMALL_STATE(2101)] = 105037, - [SMALL_STATE(2102)] = 105084, - [SMALL_STATE(2103)] = 105131, - [SMALL_STATE(2104)] = 105178, - [SMALL_STATE(2105)] = 105225, - [SMALL_STATE(2106)] = 105254, - [SMALL_STATE(2107)] = 105293, - [SMALL_STATE(2108)] = 105340, - [SMALL_STATE(2109)] = 105375, - [SMALL_STATE(2110)] = 105422, - [SMALL_STATE(2111)] = 105457, - [SMALL_STATE(2112)] = 105494, - [SMALL_STATE(2113)] = 105529, - [SMALL_STATE(2114)] = 105568, - [SMALL_STATE(2115)] = 105607, - [SMALL_STATE(2116)] = 105654, - [SMALL_STATE(2117)] = 105701, - [SMALL_STATE(2118)] = 105748, - [SMALL_STATE(2119)] = 105795, - [SMALL_STATE(2120)] = 105842, - [SMALL_STATE(2121)] = 105882, - [SMALL_STATE(2122)] = 105922, - [SMALL_STATE(2123)] = 105966, - [SMALL_STATE(2124)] = 105994, - [SMALL_STATE(2125)] = 106022, - [SMALL_STATE(2126)] = 106050, - [SMALL_STATE(2127)] = 106092, - [SMALL_STATE(2128)] = 106136, - [SMALL_STATE(2129)] = 106170, - [SMALL_STATE(2130)] = 106210, - [SMALL_STATE(2131)] = 106254, - [SMALL_STATE(2132)] = 106298, - [SMALL_STATE(2133)] = 106342, - [SMALL_STATE(2134)] = 106382, - [SMALL_STATE(2135)] = 106422, - [SMALL_STATE(2136)] = 106464, - [SMALL_STATE(2137)] = 106502, - [SMALL_STATE(2138)] = 106530, - [SMALL_STATE(2139)] = 106568, - [SMALL_STATE(2140)] = 106596, - [SMALL_STATE(2141)] = 106624, - [SMALL_STATE(2142)] = 106652, - [SMALL_STATE(2143)] = 106692, - [SMALL_STATE(2144)] = 106732, - [SMALL_STATE(2145)] = 106772, - [SMALL_STATE(2146)] = 106816, - [SMALL_STATE(2147)] = 106856, - [SMALL_STATE(2148)] = 106884, - [SMALL_STATE(2149)] = 106910, - [SMALL_STATE(2150)] = 106948, - [SMALL_STATE(2151)] = 106988, - [SMALL_STATE(2152)] = 107028, - [SMALL_STATE(2153)] = 107068, - [SMALL_STATE(2154)] = 107112, - [SMALL_STATE(2155)] = 107156, - [SMALL_STATE(2156)] = 107182, - [SMALL_STATE(2157)] = 107222, - [SMALL_STATE(2158)] = 107262, - [SMALL_STATE(2159)] = 107290, - [SMALL_STATE(2160)] = 107330, - [SMALL_STATE(2161)] = 107370, - [SMALL_STATE(2162)] = 107396, - [SMALL_STATE(2163)] = 107440, - [SMALL_STATE(2164)] = 107484, - [SMALL_STATE(2165)] = 107524, - [SMALL_STATE(2166)] = 107564, - [SMALL_STATE(2167)] = 107606, - [SMALL_STATE(2168)] = 107632, - [SMALL_STATE(2169)] = 107672, - [SMALL_STATE(2170)] = 107712, - [SMALL_STATE(2171)] = 107756, - [SMALL_STATE(2172)] = 107786, - [SMALL_STATE(2173)] = 107812, - [SMALL_STATE(2174)] = 107852, - [SMALL_STATE(2175)] = 107896, - [SMALL_STATE(2176)] = 107936, - [SMALL_STATE(2177)] = 107976, - [SMALL_STATE(2178)] = 108016, - [SMALL_STATE(2179)] = 108056, - [SMALL_STATE(2180)] = 108084, - [SMALL_STATE(2181)] = 108124, - [SMALL_STATE(2182)] = 108164, - [SMALL_STATE(2183)] = 108202, - [SMALL_STATE(2184)] = 108232, - [SMALL_STATE(2185)] = 108272, - [SMALL_STATE(2186)] = 108300, - [SMALL_STATE(2187)] = 108344, - [SMALL_STATE(2188)] = 108384, - [SMALL_STATE(2189)] = 108424, - [SMALL_STATE(2190)] = 108464, - [SMALL_STATE(2191)] = 108500, - [SMALL_STATE(2192)] = 108544, - [SMALL_STATE(2193)] = 108582, - [SMALL_STATE(2194)] = 108624, - [SMALL_STATE(2195)] = 108664, - [SMALL_STATE(2196)] = 108708, - [SMALL_STATE(2197)] = 108748, - [SMALL_STATE(2198)] = 108786, - [SMALL_STATE(2199)] = 108824, - [SMALL_STATE(2200)] = 108864, - [SMALL_STATE(2201)] = 108904, - [SMALL_STATE(2202)] = 108946, - [SMALL_STATE(2203)] = 108979, - [SMALL_STATE(2204)] = 109012, - [SMALL_STATE(2205)] = 109045, - [SMALL_STATE(2206)] = 109078, - [SMALL_STATE(2207)] = 109111, - [SMALL_STATE(2208)] = 109144, - [SMALL_STATE(2209)] = 109169, - [SMALL_STATE(2210)] = 109202, - [SMALL_STATE(2211)] = 109235, - [SMALL_STATE(2212)] = 109268, - [SMALL_STATE(2213)] = 109301, - [SMALL_STATE(2214)] = 109334, - [SMALL_STATE(2215)] = 109367, - [SMALL_STATE(2216)] = 109400, - [SMALL_STATE(2217)] = 109433, - [SMALL_STATE(2218)] = 109466, - [SMALL_STATE(2219)] = 109499, - [SMALL_STATE(2220)] = 109532, - [SMALL_STATE(2221)] = 109565, - [SMALL_STATE(2222)] = 109598, - [SMALL_STATE(2223)] = 109631, - [SMALL_STATE(2224)] = 109664, - [SMALL_STATE(2225)] = 109697, - [SMALL_STATE(2226)] = 109730, - [SMALL_STATE(2227)] = 109763, - [SMALL_STATE(2228)] = 109796, - [SMALL_STATE(2229)] = 109829, - [SMALL_STATE(2230)] = 109862, - [SMALL_STATE(2231)] = 109895, - [SMALL_STATE(2232)] = 109928, - [SMALL_STATE(2233)] = 109961, - [SMALL_STATE(2234)] = 109994, - [SMALL_STATE(2235)] = 110027, - [SMALL_STATE(2236)] = 110060, - [SMALL_STATE(2237)] = 110093, - [SMALL_STATE(2238)] = 110126, - [SMALL_STATE(2239)] = 110159, - [SMALL_STATE(2240)] = 110192, - [SMALL_STATE(2241)] = 110225, - [SMALL_STATE(2242)] = 110258, - [SMALL_STATE(2243)] = 110293, - [SMALL_STATE(2244)] = 110326, - [SMALL_STATE(2245)] = 110355, - [SMALL_STATE(2246)] = 110382, - [SMALL_STATE(2247)] = 110415, - [SMALL_STATE(2248)] = 110448, - [SMALL_STATE(2249)] = 110481, - [SMALL_STATE(2250)] = 110514, - [SMALL_STATE(2251)] = 110539, - [SMALL_STATE(2252)] = 110572, - [SMALL_STATE(2253)] = 110599, - [SMALL_STATE(2254)] = 110632, - [SMALL_STATE(2255)] = 110665, - [SMALL_STATE(2256)] = 110698, - [SMALL_STATE(2257)] = 110731, - [SMALL_STATE(2258)] = 110764, - [SMALL_STATE(2259)] = 110797, - [SMALL_STATE(2260)] = 110830, - [SMALL_STATE(2261)] = 110859, - [SMALL_STATE(2262)] = 110884, - [SMALL_STATE(2263)] = 110917, - [SMALL_STATE(2264)] = 110950, - [SMALL_STATE(2265)] = 110983, - [SMALL_STATE(2266)] = 111016, - [SMALL_STATE(2267)] = 111049, - [SMALL_STATE(2268)] = 111082, - [SMALL_STATE(2269)] = 111111, - [SMALL_STATE(2270)] = 111144, - [SMALL_STATE(2271)] = 111177, - [SMALL_STATE(2272)] = 111210, - [SMALL_STATE(2273)] = 111243, - [SMALL_STATE(2274)] = 111276, - [SMALL_STATE(2275)] = 111309, - [SMALL_STATE(2276)] = 111338, - [SMALL_STATE(2277)] = 111371, - [SMALL_STATE(2278)] = 111404, - [SMALL_STATE(2279)] = 111437, - [SMALL_STATE(2280)] = 111470, - [SMALL_STATE(2281)] = 111503, - [SMALL_STATE(2282)] = 111536, - [SMALL_STATE(2283)] = 111569, - [SMALL_STATE(2284)] = 111600, - [SMALL_STATE(2285)] = 111633, - [SMALL_STATE(2286)] = 111666, - [SMALL_STATE(2287)] = 111699, - [SMALL_STATE(2288)] = 111732, - [SMALL_STATE(2289)] = 111765, - [SMALL_STATE(2290)] = 111798, - [SMALL_STATE(2291)] = 111831, - [SMALL_STATE(2292)] = 111864, - [SMALL_STATE(2293)] = 111895, - [SMALL_STATE(2294)] = 111928, - [SMALL_STATE(2295)] = 111961, - [SMALL_STATE(2296)] = 111994, - [SMALL_STATE(2297)] = 112027, - [SMALL_STATE(2298)] = 112060, - [SMALL_STATE(2299)] = 112093, - [SMALL_STATE(2300)] = 112126, - [SMALL_STATE(2301)] = 112159, - [SMALL_STATE(2302)] = 112192, - [SMALL_STATE(2303)] = 112225, - [SMALL_STATE(2304)] = 112258, - [SMALL_STATE(2305)] = 112291, - [SMALL_STATE(2306)] = 112324, - [SMALL_STATE(2307)] = 112357, - [SMALL_STATE(2308)] = 112390, - [SMALL_STATE(2309)] = 112423, - [SMALL_STATE(2310)] = 112456, - [SMALL_STATE(2311)] = 112489, - [SMALL_STATE(2312)] = 112522, - [SMALL_STATE(2313)] = 112557, - [SMALL_STATE(2314)] = 112590, - [SMALL_STATE(2315)] = 112623, - [SMALL_STATE(2316)] = 112656, - [SMALL_STATE(2317)] = 112689, - [SMALL_STATE(2318)] = 112722, - [SMALL_STATE(2319)] = 112755, - [SMALL_STATE(2320)] = 112788, - [SMALL_STATE(2321)] = 112821, - [SMALL_STATE(2322)] = 112850, - [SMALL_STATE(2323)] = 112881, - [SMALL_STATE(2324)] = 112914, - [SMALL_STATE(2325)] = 112947, - [SMALL_STATE(2326)] = 112980, - [SMALL_STATE(2327)] = 113013, - [SMALL_STATE(2328)] = 113046, - [SMALL_STATE(2329)] = 113079, - [SMALL_STATE(2330)] = 113112, - [SMALL_STATE(2331)] = 113145, - [SMALL_STATE(2332)] = 113178, - [SMALL_STATE(2333)] = 113208, - [SMALL_STATE(2334)] = 113238, - [SMALL_STATE(2335)] = 113262, - [SMALL_STATE(2336)] = 113298, - [SMALL_STATE(2337)] = 113326, - [SMALL_STATE(2338)] = 113362, - [SMALL_STATE(2339)] = 113398, - [SMALL_STATE(2340)] = 113422, - [SMALL_STATE(2341)] = 113458, - [SMALL_STATE(2342)] = 113494, - [SMALL_STATE(2343)] = 113530, - [SMALL_STATE(2344)] = 113566, - [SMALL_STATE(2345)] = 113602, - [SMALL_STATE(2346)] = 113638, - [SMALL_STATE(2347)] = 113672, - [SMALL_STATE(2348)] = 113706, - [SMALL_STATE(2349)] = 113742, - [SMALL_STATE(2350)] = 113766, - [SMALL_STATE(2351)] = 113802, - [SMALL_STATE(2352)] = 113838, - [SMALL_STATE(2353)] = 113868, - [SMALL_STATE(2354)] = 113904, - [SMALL_STATE(2355)] = 113940, - [SMALL_STATE(2356)] = 113976, - [SMALL_STATE(2357)] = 114012, - [SMALL_STATE(2358)] = 114048, - [SMALL_STATE(2359)] = 114084, - [SMALL_STATE(2360)] = 114120, - [SMALL_STATE(2361)] = 114156, - [SMALL_STATE(2362)] = 114194, - [SMALL_STATE(2363)] = 114224, - [SMALL_STATE(2364)] = 114254, - [SMALL_STATE(2365)] = 114292, - [SMALL_STATE(2366)] = 114328, - [SMALL_STATE(2367)] = 114364, - [SMALL_STATE(2368)] = 114400, - [SMALL_STATE(2369)] = 114436, - [SMALL_STATE(2370)] = 114472, - [SMALL_STATE(2371)] = 114508, - [SMALL_STATE(2372)] = 114543, - [SMALL_STATE(2373)] = 114576, - [SMALL_STATE(2374)] = 114611, - [SMALL_STATE(2375)] = 114636, - [SMALL_STATE(2376)] = 114669, - [SMALL_STATE(2377)] = 114702, - [SMALL_STATE(2378)] = 114737, - [SMALL_STATE(2379)] = 114772, - [SMALL_STATE(2380)] = 114797, - [SMALL_STATE(2381)] = 114822, - [SMALL_STATE(2382)] = 114847, - [SMALL_STATE(2383)] = 114870, - [SMALL_STATE(2384)] = 114895, - [SMALL_STATE(2385)] = 114920, - [SMALL_STATE(2386)] = 114945, - [SMALL_STATE(2387)] = 114976, - [SMALL_STATE(2388)] = 115011, - [SMALL_STATE(2389)] = 115046, - [SMALL_STATE(2390)] = 115071, - [SMALL_STATE(2391)] = 115106, - [SMALL_STATE(2392)] = 115135, - [SMALL_STATE(2393)] = 115160, - [SMALL_STATE(2394)] = 115195, - [SMALL_STATE(2395)] = 115230, - [SMALL_STATE(2396)] = 115261, - [SMALL_STATE(2397)] = 115296, - [SMALL_STATE(2398)] = 115329, - [SMALL_STATE(2399)] = 115364, - [SMALL_STATE(2400)] = 115397, - [SMALL_STATE(2401)] = 115422, - [SMALL_STATE(2402)] = 115457, - [SMALL_STATE(2403)] = 115482, - [SMALL_STATE(2404)] = 115517, - [SMALL_STATE(2405)] = 115552, - [SMALL_STATE(2406)] = 115577, - [SMALL_STATE(2407)] = 115612, - [SMALL_STATE(2408)] = 115637, - [SMALL_STATE(2409)] = 115662, - [SMALL_STATE(2410)] = 115693, - [SMALL_STATE(2411)] = 115724, - [SMALL_STATE(2412)] = 115759, - [SMALL_STATE(2413)] = 115784, - [SMALL_STATE(2414)] = 115809, - [SMALL_STATE(2415)] = 115844, - [SMALL_STATE(2416)] = 115869, - [SMALL_STATE(2417)] = 115894, - [SMALL_STATE(2418)] = 115927, - [SMALL_STATE(2419)] = 115952, - [SMALL_STATE(2420)] = 115977, - [SMALL_STATE(2421)] = 116010, - [SMALL_STATE(2422)] = 116035, - [SMALL_STATE(2423)] = 116070, - [SMALL_STATE(2424)] = 116095, - [SMALL_STATE(2425)] = 116130, - [SMALL_STATE(2426)] = 116161, - [SMALL_STATE(2427)] = 116186, - [SMALL_STATE(2428)] = 116217, - [SMALL_STATE(2429)] = 116240, - [SMALL_STATE(2430)] = 116275, - [SMALL_STATE(2431)] = 116306, - [SMALL_STATE(2432)] = 116337, - [SMALL_STATE(2433)] = 116370, - [SMALL_STATE(2434)] = 116405, - [SMALL_STATE(2435)] = 116436, - [SMALL_STATE(2436)] = 116469, - [SMALL_STATE(2437)] = 116504, - [SMALL_STATE(2438)] = 116537, - [SMALL_STATE(2439)] = 116572, - [SMALL_STATE(2440)] = 116605, - [SMALL_STATE(2441)] = 116638, - [SMALL_STATE(2442)] = 116673, - [SMALL_STATE(2443)] = 116700, - [SMALL_STATE(2444)] = 116731, - [SMALL_STATE(2445)] = 116762, - [SMALL_STATE(2446)] = 116793, - [SMALL_STATE(2447)] = 116828, - [SMALL_STATE(2448)] = 116863, - [SMALL_STATE(2449)] = 116898, - [SMALL_STATE(2450)] = 116933, - [SMALL_STATE(2451)] = 116968, - [SMALL_STATE(2452)] = 117001, - [SMALL_STATE(2453)] = 117024, - [SMALL_STATE(2454)] = 117059, - [SMALL_STATE(2455)] = 117082, - [SMALL_STATE(2456)] = 117105, - [SMALL_STATE(2457)] = 117138, - [SMALL_STATE(2458)] = 117173, - [SMALL_STATE(2459)] = 117208, - [SMALL_STATE(2460)] = 117231, - [SMALL_STATE(2461)] = 117266, - [SMALL_STATE(2462)] = 117293, - [SMALL_STATE(2463)] = 117318, - [SMALL_STATE(2464)] = 117353, - [SMALL_STATE(2465)] = 117376, - [SMALL_STATE(2466)] = 117401, - [SMALL_STATE(2467)] = 117434, - [SMALL_STATE(2468)] = 117469, - [SMALL_STATE(2469)] = 117504, - [SMALL_STATE(2470)] = 117529, - [SMALL_STATE(2471)] = 117564, - [SMALL_STATE(2472)] = 117599, - [SMALL_STATE(2473)] = 117628, - [SMALL_STATE(2474)] = 117653, - [SMALL_STATE(2475)] = 117678, - [SMALL_STATE(2476)] = 117711, - [SMALL_STATE(2477)] = 117742, - [SMALL_STATE(2478)] = 117777, - [SMALL_STATE(2479)] = 117810, - [SMALL_STATE(2480)] = 117843, - [SMALL_STATE(2481)] = 117878, - [SMALL_STATE(2482)] = 117911, - [SMALL_STATE(2483)] = 117946, - [SMALL_STATE(2484)] = 117979, - [SMALL_STATE(2485)] = 118012, - [SMALL_STATE(2486)] = 118047, - [SMALL_STATE(2487)] = 118082, - [SMALL_STATE(2488)] = 118117, - [SMALL_STATE(2489)] = 118152, - [SMALL_STATE(2490)] = 118185, - [SMALL_STATE(2491)] = 118218, - [SMALL_STATE(2492)] = 118249, - [SMALL_STATE(2493)] = 118284, - [SMALL_STATE(2494)] = 118317, - [SMALL_STATE(2495)] = 118352, - [SMALL_STATE(2496)] = 118385, - [SMALL_STATE(2497)] = 118418, - [SMALL_STATE(2498)] = 118453, - [SMALL_STATE(2499)] = 118478, - [SMALL_STATE(2500)] = 118511, - [SMALL_STATE(2501)] = 118546, - [SMALL_STATE(2502)] = 118571, - [SMALL_STATE(2503)] = 118604, - [SMALL_STATE(2504)] = 118639, - [SMALL_STATE(2505)] = 118674, - [SMALL_STATE(2506)] = 118709, - [SMALL_STATE(2507)] = 118744, - [SMALL_STATE(2508)] = 118779, - [SMALL_STATE(2509)] = 118814, - [SMALL_STATE(2510)] = 118845, - [SMALL_STATE(2511)] = 118878, - [SMALL_STATE(2512)] = 118911, - [SMALL_STATE(2513)] = 118942, - [SMALL_STATE(2514)] = 118975, - [SMALL_STATE(2515)] = 119010, - [SMALL_STATE(2516)] = 119045, - [SMALL_STATE(2517)] = 119080, - [SMALL_STATE(2518)] = 119113, - [SMALL_STATE(2519)] = 119148, - [SMALL_STATE(2520)] = 119173, - [SMALL_STATE(2521)] = 119208, - [SMALL_STATE(2522)] = 119233, - [SMALL_STATE(2523)] = 119258, - [SMALL_STATE(2524)] = 119291, - [SMALL_STATE(2525)] = 119324, - [SMALL_STATE(2526)] = 119357, - [SMALL_STATE(2527)] = 119389, - [SMALL_STATE(2528)] = 119419, - [SMALL_STATE(2529)] = 119451, - [SMALL_STATE(2530)] = 119481, - [SMALL_STATE(2531)] = 119511, - [SMALL_STATE(2532)] = 119533, - [SMALL_STATE(2533)] = 119565, - [SMALL_STATE(2534)] = 119597, - [SMALL_STATE(2535)] = 119629, - [SMALL_STATE(2536)] = 119659, - [SMALL_STATE(2537)] = 119689, - [SMALL_STATE(2538)] = 119719, - [SMALL_STATE(2539)] = 119751, - [SMALL_STATE(2540)] = 119781, - [SMALL_STATE(2541)] = 119809, - [SMALL_STATE(2542)] = 119839, - [SMALL_STATE(2543)] = 119871, - [SMALL_STATE(2544)] = 119903, - [SMALL_STATE(2545)] = 119933, - [SMALL_STATE(2546)] = 119963, - [SMALL_STATE(2547)] = 119995, - [SMALL_STATE(2548)] = 120025, - [SMALL_STATE(2549)] = 120055, - [SMALL_STATE(2550)] = 120087, - [SMALL_STATE(2551)] = 120117, - [SMALL_STATE(2552)] = 120147, - [SMALL_STATE(2553)] = 120179, - [SMALL_STATE(2554)] = 120209, - [SMALL_STATE(2555)] = 120239, - [SMALL_STATE(2556)] = 120269, - [SMALL_STATE(2557)] = 120301, - [SMALL_STATE(2558)] = 120331, - [SMALL_STATE(2559)] = 120363, - [SMALL_STATE(2560)] = 120395, - [SMALL_STATE(2561)] = 120425, - [SMALL_STATE(2562)] = 120455, - [SMALL_STATE(2563)] = 120483, - [SMALL_STATE(2564)] = 120515, - [SMALL_STATE(2565)] = 120545, - [SMALL_STATE(2566)] = 120575, - [SMALL_STATE(2567)] = 120607, - [SMALL_STATE(2568)] = 120637, - [SMALL_STATE(2569)] = 120667, - [SMALL_STATE(2570)] = 120697, - [SMALL_STATE(2571)] = 120729, - [SMALL_STATE(2572)] = 120759, - [SMALL_STATE(2573)] = 120791, - [SMALL_STATE(2574)] = 120819, - [SMALL_STATE(2575)] = 120851, - [SMALL_STATE(2576)] = 120883, - [SMALL_STATE(2577)] = 120915, - [SMALL_STATE(2578)] = 120947, - [SMALL_STATE(2579)] = 120977, - [SMALL_STATE(2580)] = 121007, - [SMALL_STATE(2581)] = 121037, - [SMALL_STATE(2582)] = 121067, - [SMALL_STATE(2583)] = 121099, - [SMALL_STATE(2584)] = 121131, - [SMALL_STATE(2585)] = 121161, - [SMALL_STATE(2586)] = 121191, - [SMALL_STATE(2587)] = 121221, - [SMALL_STATE(2588)] = 121253, - [SMALL_STATE(2589)] = 121285, - [SMALL_STATE(2590)] = 121315, - [SMALL_STATE(2591)] = 121339, - [SMALL_STATE(2592)] = 121371, - [SMALL_STATE(2593)] = 121401, - [SMALL_STATE(2594)] = 121431, - [SMALL_STATE(2595)] = 121463, - [SMALL_STATE(2596)] = 121493, - [SMALL_STATE(2597)] = 121525, - [SMALL_STATE(2598)] = 121557, - [SMALL_STATE(2599)] = 121587, - [SMALL_STATE(2600)] = 121609, - [SMALL_STATE(2601)] = 121631, - [SMALL_STATE(2602)] = 121663, - [SMALL_STATE(2603)] = 121693, - [SMALL_STATE(2604)] = 121725, - [SMALL_STATE(2605)] = 121755, - [SMALL_STATE(2606)] = 121785, - [SMALL_STATE(2607)] = 121815, - [SMALL_STATE(2608)] = 121845, - [SMALL_STATE(2609)] = 121875, - [SMALL_STATE(2610)] = 121897, - [SMALL_STATE(2611)] = 121927, - [SMALL_STATE(2612)] = 121959, - [SMALL_STATE(2613)] = 121989, - [SMALL_STATE(2614)] = 122021, - [SMALL_STATE(2615)] = 122053, - [SMALL_STATE(2616)] = 122083, - [SMALL_STATE(2617)] = 122115, - [SMALL_STATE(2618)] = 122147, - [SMALL_STATE(2619)] = 122177, - [SMALL_STATE(2620)] = 122209, - [SMALL_STATE(2621)] = 122239, - [SMALL_STATE(2622)] = 122269, - [SMALL_STATE(2623)] = 122301, - [SMALL_STATE(2624)] = 122331, - [SMALL_STATE(2625)] = 122359, - [SMALL_STATE(2626)] = 122391, - [SMALL_STATE(2627)] = 122421, - [SMALL_STATE(2628)] = 122451, - [SMALL_STATE(2629)] = 122477, - [SMALL_STATE(2630)] = 122509, - [SMALL_STATE(2631)] = 122539, - [SMALL_STATE(2632)] = 122571, - [SMALL_STATE(2633)] = 122601, - [SMALL_STATE(2634)] = 122631, - [SMALL_STATE(2635)] = 122663, - [SMALL_STATE(2636)] = 122695, - [SMALL_STATE(2637)] = 122727, - [SMALL_STATE(2638)] = 122759, - [SMALL_STATE(2639)] = 122789, - [SMALL_STATE(2640)] = 122821, - [SMALL_STATE(2641)] = 122851, - [SMALL_STATE(2642)] = 122881, - [SMALL_STATE(2643)] = 122913, - [SMALL_STATE(2644)] = 122943, - [SMALL_STATE(2645)] = 122973, - [SMALL_STATE(2646)] = 123003, - [SMALL_STATE(2647)] = 123033, - [SMALL_STATE(2648)] = 123065, - [SMALL_STATE(2649)] = 123097, - [SMALL_STATE(2650)] = 123129, - [SMALL_STATE(2651)] = 123161, - [SMALL_STATE(2652)] = 123191, - [SMALL_STATE(2653)] = 123221, - [SMALL_STATE(2654)] = 123249, - [SMALL_STATE(2655)] = 123279, - [SMALL_STATE(2656)] = 123311, - [SMALL_STATE(2657)] = 123341, - [SMALL_STATE(2658)] = 123371, - [SMALL_STATE(2659)] = 123403, - [SMALL_STATE(2660)] = 123433, - [SMALL_STATE(2661)] = 123463, - [SMALL_STATE(2662)] = 123495, - [SMALL_STATE(2663)] = 123527, - [SMALL_STATE(2664)] = 123557, - [SMALL_STATE(2665)] = 123589, - [SMALL_STATE(2666)] = 123619, - [SMALL_STATE(2667)] = 123651, - [SMALL_STATE(2668)] = 123681, - [SMALL_STATE(2669)] = 123711, - [SMALL_STATE(2670)] = 123733, - [SMALL_STATE(2671)] = 123763, - [SMALL_STATE(2672)] = 123793, - [SMALL_STATE(2673)] = 123825, - [SMALL_STATE(2674)] = 123855, - [SMALL_STATE(2675)] = 123887, - [SMALL_STATE(2676)] = 123917, - [SMALL_STATE(2677)] = 123947, - [SMALL_STATE(2678)] = 123977, - [SMALL_STATE(2679)] = 124007, - [SMALL_STATE(2680)] = 124037, - [SMALL_STATE(2681)] = 124069, - [SMALL_STATE(2682)] = 124099, - [SMALL_STATE(2683)] = 124129, - [SMALL_STATE(2684)] = 124159, - [SMALL_STATE(2685)] = 124189, - [SMALL_STATE(2686)] = 124221, - [SMALL_STATE(2687)] = 124251, - [SMALL_STATE(2688)] = 124281, - [SMALL_STATE(2689)] = 124313, - [SMALL_STATE(2690)] = 124337, - [SMALL_STATE(2691)] = 124367, - [SMALL_STATE(2692)] = 124397, - [SMALL_STATE(2693)] = 124427, - [SMALL_STATE(2694)] = 124459, - [SMALL_STATE(2695)] = 124489, - [SMALL_STATE(2696)] = 124519, - [SMALL_STATE(2697)] = 124544, - [SMALL_STATE(2698)] = 124573, - [SMALL_STATE(2699)] = 124602, - [SMALL_STATE(2700)] = 124631, - [SMALL_STATE(2701)] = 124656, - [SMALL_STATE(2702)] = 124685, - [SMALL_STATE(2703)] = 124706, - [SMALL_STATE(2704)] = 124735, - [SMALL_STATE(2705)] = 124760, - [SMALL_STATE(2706)] = 124787, - [SMALL_STATE(2707)] = 124816, - [SMALL_STATE(2708)] = 124845, - [SMALL_STATE(2709)] = 124874, - [SMALL_STATE(2710)] = 124903, - [SMALL_STATE(2711)] = 124928, - [SMALL_STATE(2712)] = 124957, - [SMALL_STATE(2713)] = 124980, - [SMALL_STATE(2714)] = 125009, - [SMALL_STATE(2715)] = 125038, - [SMALL_STATE(2716)] = 125067, - [SMALL_STATE(2717)] = 125096, - [SMALL_STATE(2718)] = 125125, - [SMALL_STATE(2719)] = 125154, - [SMALL_STATE(2720)] = 125179, - [SMALL_STATE(2721)] = 125208, - [SMALL_STATE(2722)] = 125233, - [SMALL_STATE(2723)] = 125262, - [SMALL_STATE(2724)] = 125291, - [SMALL_STATE(2725)] = 125316, - [SMALL_STATE(2726)] = 125339, - [SMALL_STATE(2727)] = 125364, - [SMALL_STATE(2728)] = 125393, - [SMALL_STATE(2729)] = 125422, - [SMALL_STATE(2730)] = 125451, - [SMALL_STATE(2731)] = 125480, - [SMALL_STATE(2732)] = 125509, - [SMALL_STATE(2733)] = 125536, - [SMALL_STATE(2734)] = 125565, - [SMALL_STATE(2735)] = 125594, - [SMALL_STATE(2736)] = 125623, - [SMALL_STATE(2737)] = 125644, - [SMALL_STATE(2738)] = 125671, - [SMALL_STATE(2739)] = 125692, - [SMALL_STATE(2740)] = 125721, - [SMALL_STATE(2741)] = 125744, - [SMALL_STATE(2742)] = 125769, - [SMALL_STATE(2743)] = 125798, - [SMALL_STATE(2744)] = 125827, - [SMALL_STATE(2745)] = 125852, - [SMALL_STATE(2746)] = 125881, - [SMALL_STATE(2747)] = 125910, - [SMALL_STATE(2748)] = 125935, - [SMALL_STATE(2749)] = 125958, - [SMALL_STATE(2750)] = 125983, - [SMALL_STATE(2751)] = 126012, - [SMALL_STATE(2752)] = 126037, - [SMALL_STATE(2753)] = 126060, - [SMALL_STATE(2754)] = 126089, - [SMALL_STATE(2755)] = 126112, - [SMALL_STATE(2756)] = 126141, - [SMALL_STATE(2757)] = 126170, - [SMALL_STATE(2758)] = 126199, - [SMALL_STATE(2759)] = 126228, - [SMALL_STATE(2760)] = 126257, - [SMALL_STATE(2761)] = 126282, - [SMALL_STATE(2762)] = 126307, - [SMALL_STATE(2763)] = 126330, - [SMALL_STATE(2764)] = 126355, - [SMALL_STATE(2765)] = 126384, - [SMALL_STATE(2766)] = 126407, - [SMALL_STATE(2767)] = 126430, - [SMALL_STATE(2768)] = 126453, - [SMALL_STATE(2769)] = 126482, - [SMALL_STATE(2770)] = 126511, - [SMALL_STATE(2771)] = 126534, - [SMALL_STATE(2772)] = 126563, - [SMALL_STATE(2773)] = 126592, - [SMALL_STATE(2774)] = 126621, - [SMALL_STATE(2775)] = 126646, - [SMALL_STATE(2776)] = 126669, - [SMALL_STATE(2777)] = 126698, - [SMALL_STATE(2778)] = 126725, - [SMALL_STATE(2779)] = 126754, - [SMALL_STATE(2780)] = 126781, - [SMALL_STATE(2781)] = 126806, - [SMALL_STATE(2782)] = 126835, - [SMALL_STATE(2783)] = 126864, - [SMALL_STATE(2784)] = 126889, - [SMALL_STATE(2785)] = 126918, - [SMALL_STATE(2786)] = 126947, - [SMALL_STATE(2787)] = 126972, - [SMALL_STATE(2788)] = 127001, - [SMALL_STATE(2789)] = 127024, - [SMALL_STATE(2790)] = 127053, - [SMALL_STATE(2791)] = 127082, - [SMALL_STATE(2792)] = 127107, - [SMALL_STATE(2793)] = 127130, - [SMALL_STATE(2794)] = 127153, - [SMALL_STATE(2795)] = 127182, - [SMALL_STATE(2796)] = 127211, - [SMALL_STATE(2797)] = 127232, - [SMALL_STATE(2798)] = 127261, - [SMALL_STATE(2799)] = 127286, - [SMALL_STATE(2800)] = 127315, - [SMALL_STATE(2801)] = 127338, - [SMALL_STATE(2802)] = 127367, - [SMALL_STATE(2803)] = 127396, - [SMALL_STATE(2804)] = 127419, - [SMALL_STATE(2805)] = 127442, - [SMALL_STATE(2806)] = 127465, - [SMALL_STATE(2807)] = 127494, - [SMALL_STATE(2808)] = 127523, - [SMALL_STATE(2809)] = 127550, - [SMALL_STATE(2810)] = 127579, - [SMALL_STATE(2811)] = 127608, - [SMALL_STATE(2812)] = 127637, - [SMALL_STATE(2813)] = 127662, - [SMALL_STATE(2814)] = 127691, - [SMALL_STATE(2815)] = 127716, - [SMALL_STATE(2816)] = 127739, - [SMALL_STATE(2817)] = 127762, - [SMALL_STATE(2818)] = 127785, - [SMALL_STATE(2819)] = 127814, - [SMALL_STATE(2820)] = 127843, - [SMALL_STATE(2821)] = 127872, - [SMALL_STATE(2822)] = 127901, - [SMALL_STATE(2823)] = 127930, - [SMALL_STATE(2824)] = 127955, - [SMALL_STATE(2825)] = 127978, - [SMALL_STATE(2826)] = 128003, - [SMALL_STATE(2827)] = 128026, - [SMALL_STATE(2828)] = 128055, - [SMALL_STATE(2829)] = 128080, - [SMALL_STATE(2830)] = 128105, - [SMALL_STATE(2831)] = 128130, - [SMALL_STATE(2832)] = 128159, - [SMALL_STATE(2833)] = 128188, - [SMALL_STATE(2834)] = 128217, - [SMALL_STATE(2835)] = 128246, - [SMALL_STATE(2836)] = 128275, - [SMALL_STATE(2837)] = 128300, - [SMALL_STATE(2838)] = 128325, - [SMALL_STATE(2839)] = 128348, - [SMALL_STATE(2840)] = 128373, - [SMALL_STATE(2841)] = 128402, - [SMALL_STATE(2842)] = 128425, - [SMALL_STATE(2843)] = 128454, - [SMALL_STATE(2844)] = 128483, - [SMALL_STATE(2845)] = 128510, - [SMALL_STATE(2846)] = 128535, - [SMALL_STATE(2847)] = 128560, - [SMALL_STATE(2848)] = 128585, - [SMALL_STATE(2849)] = 128614, - [SMALL_STATE(2850)] = 128639, - [SMALL_STATE(2851)] = 128668, - [SMALL_STATE(2852)] = 128697, - [SMALL_STATE(2853)] = 128726, - [SMALL_STATE(2854)] = 128749, - [SMALL_STATE(2855)] = 128772, - [SMALL_STATE(2856)] = 128793, - [SMALL_STATE(2857)] = 128822, - [SMALL_STATE(2858)] = 128851, - [SMALL_STATE(2859)] = 128874, - [SMALL_STATE(2860)] = 128897, - [SMALL_STATE(2861)] = 128920, - [SMALL_STATE(2862)] = 128943, - [SMALL_STATE(2863)] = 128968, - [SMALL_STATE(2864)] = 128997, - [SMALL_STATE(2865)] = 129026, - [SMALL_STATE(2866)] = 129055, - [SMALL_STATE(2867)] = 129084, - [SMALL_STATE(2868)] = 129107, - [SMALL_STATE(2869)] = 129136, - [SMALL_STATE(2870)] = 129165, - [SMALL_STATE(2871)] = 129194, - [SMALL_STATE(2872)] = 129215, - [SMALL_STATE(2873)] = 129244, - [SMALL_STATE(2874)] = 129269, - [SMALL_STATE(2875)] = 129298, - [SMALL_STATE(2876)] = 129323, - [SMALL_STATE(2877)] = 129346, - [SMALL_STATE(2878)] = 129369, - [SMALL_STATE(2879)] = 129394, - [SMALL_STATE(2880)] = 129417, - [SMALL_STATE(2881)] = 129440, - [SMALL_STATE(2882)] = 129463, - [SMALL_STATE(2883)] = 129492, - [SMALL_STATE(2884)] = 129521, - [SMALL_STATE(2885)] = 129550, - [SMALL_STATE(2886)] = 129573, - [SMALL_STATE(2887)] = 129596, - [SMALL_STATE(2888)] = 129621, - [SMALL_STATE(2889)] = 129644, - [SMALL_STATE(2890)] = 129665, - [SMALL_STATE(2891)] = 129688, - [SMALL_STATE(2892)] = 129717, - [SMALL_STATE(2893)] = 129740, - [SMALL_STATE(2894)] = 129765, - [SMALL_STATE(2895)] = 129788, - [SMALL_STATE(2896)] = 129811, - [SMALL_STATE(2897)] = 129834, - [SMALL_STATE(2898)] = 129857, - [SMALL_STATE(2899)] = 129886, - [SMALL_STATE(2900)] = 129910, - [SMALL_STATE(2901)] = 129932, - [SMALL_STATE(2902)] = 129958, - [SMALL_STATE(2903)] = 129984, - [SMALL_STATE(2904)] = 130008, - [SMALL_STATE(2905)] = 130032, - [SMALL_STATE(2906)] = 130056, - [SMALL_STATE(2907)] = 130082, - [SMALL_STATE(2908)] = 130106, - [SMALL_STATE(2909)] = 130130, - [SMALL_STATE(2910)] = 130154, - [SMALL_STATE(2911)] = 130178, - [SMALL_STATE(2912)] = 130202, - [SMALL_STATE(2913)] = 130222, - [SMALL_STATE(2914)] = 130248, - [SMALL_STATE(2915)] = 130272, - [SMALL_STATE(2916)] = 130296, - [SMALL_STATE(2917)] = 130316, - [SMALL_STATE(2918)] = 130340, - [SMALL_STATE(2919)] = 130364, - [SMALL_STATE(2920)] = 130388, - [SMALL_STATE(2921)] = 130414, - [SMALL_STATE(2922)] = 130438, - [SMALL_STATE(2923)] = 130462, - [SMALL_STATE(2924)] = 130482, - [SMALL_STATE(2925)] = 130502, - [SMALL_STATE(2926)] = 130526, - [SMALL_STATE(2927)] = 130550, - [SMALL_STATE(2928)] = 130574, - [SMALL_STATE(2929)] = 130598, - [SMALL_STATE(2930)] = 130624, - [SMALL_STATE(2931)] = 130650, - [SMALL_STATE(2932)] = 130676, - [SMALL_STATE(2933)] = 130696, - [SMALL_STATE(2934)] = 130716, - [SMALL_STATE(2935)] = 130736, - [SMALL_STATE(2936)] = 130762, - [SMALL_STATE(2937)] = 130782, - [SMALL_STATE(2938)] = 130808, - [SMALL_STATE(2939)] = 130832, - [SMALL_STATE(2940)] = 130858, - [SMALL_STATE(2941)] = 130882, - [SMALL_STATE(2942)] = 130906, - [SMALL_STATE(2943)] = 130932, - [SMALL_STATE(2944)] = 130958, - [SMALL_STATE(2945)] = 130982, - [SMALL_STATE(2946)] = 131008, - [SMALL_STATE(2947)] = 131032, - [SMALL_STATE(2948)] = 131058, - [SMALL_STATE(2949)] = 131082, - [SMALL_STATE(2950)] = 131108, - [SMALL_STATE(2951)] = 131132, - [SMALL_STATE(2952)] = 131158, - [SMALL_STATE(2953)] = 131184, - [SMALL_STATE(2954)] = 131208, - [SMALL_STATE(2955)] = 131230, - [SMALL_STATE(2956)] = 131256, - [SMALL_STATE(2957)] = 131276, - [SMALL_STATE(2958)] = 131296, - [SMALL_STATE(2959)] = 131322, - [SMALL_STATE(2960)] = 131346, - [SMALL_STATE(2961)] = 131370, - [SMALL_STATE(2962)] = 131396, - [SMALL_STATE(2963)] = 131422, - [SMALL_STATE(2964)] = 131448, - [SMALL_STATE(2965)] = 131474, - [SMALL_STATE(2966)] = 131498, - [SMALL_STATE(2967)] = 131518, - [SMALL_STATE(2968)] = 131542, - [SMALL_STATE(2969)] = 131566, - [SMALL_STATE(2970)] = 131592, - [SMALL_STATE(2971)] = 131618, - [SMALL_STATE(2972)] = 131638, - [SMALL_STATE(2973)] = 131658, - [SMALL_STATE(2974)] = 131678, - [SMALL_STATE(2975)] = 131698, - [SMALL_STATE(2976)] = 131724, - [SMALL_STATE(2977)] = 131746, - [SMALL_STATE(2978)] = 131766, - [SMALL_STATE(2979)] = 131786, - [SMALL_STATE(2980)] = 131806, - [SMALL_STATE(2981)] = 131832, - [SMALL_STATE(2982)] = 131852, - [SMALL_STATE(2983)] = 131872, - [SMALL_STATE(2984)] = 131896, - [SMALL_STATE(2985)] = 131920, - [SMALL_STATE(2986)] = 131940, - [SMALL_STATE(2987)] = 131962, - [SMALL_STATE(2988)] = 131986, - [SMALL_STATE(2989)] = 132006, - [SMALL_STATE(2990)] = 132030, - [SMALL_STATE(2991)] = 132056, - [SMALL_STATE(2992)] = 132080, - [SMALL_STATE(2993)] = 132106, - [SMALL_STATE(2994)] = 132132, - [SMALL_STATE(2995)] = 132156, - [SMALL_STATE(2996)] = 132182, - [SMALL_STATE(2997)] = 132208, - [SMALL_STATE(2998)] = 132230, - [SMALL_STATE(2999)] = 132252, - [SMALL_STATE(3000)] = 132278, - [SMALL_STATE(3001)] = 132300, - [SMALL_STATE(3002)] = 132320, - [SMALL_STATE(3003)] = 132342, - [SMALL_STATE(3004)] = 132364, - [SMALL_STATE(3005)] = 132386, - [SMALL_STATE(3006)] = 132410, - [SMALL_STATE(3007)] = 132436, - [SMALL_STATE(3008)] = 132456, - [SMALL_STATE(3009)] = 132476, - [SMALL_STATE(3010)] = 132500, - [SMALL_STATE(3011)] = 132526, - [SMALL_STATE(3012)] = 132550, - [SMALL_STATE(3013)] = 132576, - [SMALL_STATE(3014)] = 132602, - [SMALL_STATE(3015)] = 132628, - [SMALL_STATE(3016)] = 132650, - [SMALL_STATE(3017)] = 132674, - [SMALL_STATE(3018)] = 132698, - [SMALL_STATE(3019)] = 132720, - [SMALL_STATE(3020)] = 132746, - [SMALL_STATE(3021)] = 132768, - [SMALL_STATE(3022)] = 132792, - [SMALL_STATE(3023)] = 132816, - [SMALL_STATE(3024)] = 132838, - [SMALL_STATE(3025)] = 132860, - [SMALL_STATE(3026)] = 132882, - [SMALL_STATE(3027)] = 132906, - [SMALL_STATE(3028)] = 132930, - [SMALL_STATE(3029)] = 132952, - [SMALL_STATE(3030)] = 132978, - [SMALL_STATE(3031)] = 133004, - [SMALL_STATE(3032)] = 133030, - [SMALL_STATE(3033)] = 133056, - [SMALL_STATE(3034)] = 133082, - [SMALL_STATE(3035)] = 133106, - [SMALL_STATE(3036)] = 133128, - [SMALL_STATE(3037)] = 133150, - [SMALL_STATE(3038)] = 133176, - [SMALL_STATE(3039)] = 133199, - [SMALL_STATE(3040)] = 133222, - [SMALL_STATE(3041)] = 133245, - [SMALL_STATE(3042)] = 133264, - [SMALL_STATE(3043)] = 133287, - [SMALL_STATE(3044)] = 133310, - [SMALL_STATE(3045)] = 133333, - [SMALL_STATE(3046)] = 133356, - [SMALL_STATE(3047)] = 133379, - [SMALL_STATE(3048)] = 133402, - [SMALL_STATE(3049)] = 133425, - [SMALL_STATE(3050)] = 133446, - [SMALL_STATE(3051)] = 133469, - [SMALL_STATE(3052)] = 133490, - [SMALL_STATE(3053)] = 133513, - [SMALL_STATE(3054)] = 133536, - [SMALL_STATE(3055)] = 133559, - [SMALL_STATE(3056)] = 133582, - [SMALL_STATE(3057)] = 133605, - [SMALL_STATE(3058)] = 133628, - [SMALL_STATE(3059)] = 133651, - [SMALL_STATE(3060)] = 133674, - [SMALL_STATE(3061)] = 133697, - [SMALL_STATE(3062)] = 133720, - [SMALL_STATE(3063)] = 133743, - [SMALL_STATE(3064)] = 133766, - [SMALL_STATE(3065)] = 133789, - [SMALL_STATE(3066)] = 133812, - [SMALL_STATE(3067)] = 133835, - [SMALL_STATE(3068)] = 133858, - [SMALL_STATE(3069)] = 133881, - [SMALL_STATE(3070)] = 133904, - [SMALL_STATE(3071)] = 133927, - [SMALL_STATE(3072)] = 133950, - [SMALL_STATE(3073)] = 133973, - [SMALL_STATE(3074)] = 133996, - [SMALL_STATE(3075)] = 134019, - [SMALL_STATE(3076)] = 134042, - [SMALL_STATE(3077)] = 134065, - [SMALL_STATE(3078)] = 134088, - [SMALL_STATE(3079)] = 134111, - [SMALL_STATE(3080)] = 134134, - [SMALL_STATE(3081)] = 134157, - [SMALL_STATE(3082)] = 134180, - [SMALL_STATE(3083)] = 134203, - [SMALL_STATE(3084)] = 134226, - [SMALL_STATE(3085)] = 134249, - [SMALL_STATE(3086)] = 134272, - [SMALL_STATE(3087)] = 134293, - [SMALL_STATE(3088)] = 134316, - [SMALL_STATE(3089)] = 134339, - [SMALL_STATE(3090)] = 134362, - [SMALL_STATE(3091)] = 134385, - [SMALL_STATE(3092)] = 134408, - [SMALL_STATE(3093)] = 134431, - [SMALL_STATE(3094)] = 134454, - [SMALL_STATE(3095)] = 134477, - [SMALL_STATE(3096)] = 134500, - [SMALL_STATE(3097)] = 134523, - [SMALL_STATE(3098)] = 134546, - [SMALL_STATE(3099)] = 134569, - [SMALL_STATE(3100)] = 134592, - [SMALL_STATE(3101)] = 134613, - [SMALL_STATE(3102)] = 134636, - [SMALL_STATE(3103)] = 134659, - [SMALL_STATE(3104)] = 134682, - [SMALL_STATE(3105)] = 134705, - [SMALL_STATE(3106)] = 134728, - [SMALL_STATE(3107)] = 134747, - [SMALL_STATE(3108)] = 134770, - [SMALL_STATE(3109)] = 134793, - [SMALL_STATE(3110)] = 134816, - [SMALL_STATE(3111)] = 134839, - [SMALL_STATE(3112)] = 134862, - [SMALL_STATE(3113)] = 134885, - [SMALL_STATE(3114)] = 134908, - [SMALL_STATE(3115)] = 134931, - [SMALL_STATE(3116)] = 134954, - [SMALL_STATE(3117)] = 134977, - [SMALL_STATE(3118)] = 135000, - [SMALL_STATE(3119)] = 135023, - [SMALL_STATE(3120)] = 135046, - [SMALL_STATE(3121)] = 135069, - [SMALL_STATE(3122)] = 135088, - [SMALL_STATE(3123)] = 135111, - [SMALL_STATE(3124)] = 135134, - [SMALL_STATE(3125)] = 135157, - [SMALL_STATE(3126)] = 135180, - [SMALL_STATE(3127)] = 135203, - [SMALL_STATE(3128)] = 135226, - [SMALL_STATE(3129)] = 135249, - [SMALL_STATE(3130)] = 135272, - [SMALL_STATE(3131)] = 135295, - [SMALL_STATE(3132)] = 135314, - [SMALL_STATE(3133)] = 135337, - [SMALL_STATE(3134)] = 135360, - [SMALL_STATE(3135)] = 135383, - [SMALL_STATE(3136)] = 135406, - [SMALL_STATE(3137)] = 135429, - [SMALL_STATE(3138)] = 135452, - [SMALL_STATE(3139)] = 135475, - [SMALL_STATE(3140)] = 135498, - [SMALL_STATE(3141)] = 135521, - [SMALL_STATE(3142)] = 135542, - [SMALL_STATE(3143)] = 135565, - [SMALL_STATE(3144)] = 135584, - [SMALL_STATE(3145)] = 135603, - [SMALL_STATE(3146)] = 135626, - [SMALL_STATE(3147)] = 135645, - [SMALL_STATE(3148)] = 135664, - [SMALL_STATE(3149)] = 135683, - [SMALL_STATE(3150)] = 135702, - [SMALL_STATE(3151)] = 135721, - [SMALL_STATE(3152)] = 135740, - [SMALL_STATE(3153)] = 135763, - [SMALL_STATE(3154)] = 135786, - [SMALL_STATE(3155)] = 135805, - [SMALL_STATE(3156)] = 135824, - [SMALL_STATE(3157)] = 135847, - [SMALL_STATE(3158)] = 135868, - [SMALL_STATE(3159)] = 135887, - [SMALL_STATE(3160)] = 135906, - [SMALL_STATE(3161)] = 135925, - [SMALL_STATE(3162)] = 135944, - [SMALL_STATE(3163)] = 135963, - [SMALL_STATE(3164)] = 135982, - [SMALL_STATE(3165)] = 136001, - [SMALL_STATE(3166)] = 136020, - [SMALL_STATE(3167)] = 136043, - [SMALL_STATE(3168)] = 136062, - [SMALL_STATE(3169)] = 136085, - [SMALL_STATE(3170)] = 136104, - [SMALL_STATE(3171)] = 136123, - [SMALL_STATE(3172)] = 136142, - [SMALL_STATE(3173)] = 136161, - [SMALL_STATE(3174)] = 136180, - [SMALL_STATE(3175)] = 136203, - [SMALL_STATE(3176)] = 136226, - [SMALL_STATE(3177)] = 136249, - [SMALL_STATE(3178)] = 136268, - [SMALL_STATE(3179)] = 136291, - [SMALL_STATE(3180)] = 136310, - [SMALL_STATE(3181)] = 136329, - [SMALL_STATE(3182)] = 136348, - [SMALL_STATE(3183)] = 136367, - [SMALL_STATE(3184)] = 136386, - [SMALL_STATE(3185)] = 136409, - [SMALL_STATE(3186)] = 136428, - [SMALL_STATE(3187)] = 136447, - [SMALL_STATE(3188)] = 136466, - [SMALL_STATE(3189)] = 136485, - [SMALL_STATE(3190)] = 136504, - [SMALL_STATE(3191)] = 136527, - [SMALL_STATE(3192)] = 136550, - [SMALL_STATE(3193)] = 136569, - [SMALL_STATE(3194)] = 136588, - [SMALL_STATE(3195)] = 136611, - [SMALL_STATE(3196)] = 136634, - [SMALL_STATE(3197)] = 136653, - [SMALL_STATE(3198)] = 136672, - [SMALL_STATE(3199)] = 136691, - [SMALL_STATE(3200)] = 136710, - [SMALL_STATE(3201)] = 136729, - [SMALL_STATE(3202)] = 136748, - [SMALL_STATE(3203)] = 136771, - [SMALL_STATE(3204)] = 136794, - [SMALL_STATE(3205)] = 136813, - [SMALL_STATE(3206)] = 136836, - [SMALL_STATE(3207)] = 136855, - [SMALL_STATE(3208)] = 136874, - [SMALL_STATE(3209)] = 136897, - [SMALL_STATE(3210)] = 136916, - [SMALL_STATE(3211)] = 136939, - [SMALL_STATE(3212)] = 136962, - [SMALL_STATE(3213)] = 136981, - [SMALL_STATE(3214)] = 137000, - [SMALL_STATE(3215)] = 137019, - [SMALL_STATE(3216)] = 137038, - [SMALL_STATE(3217)] = 137061, - [SMALL_STATE(3218)] = 137080, - [SMALL_STATE(3219)] = 137099, - [SMALL_STATE(3220)] = 137118, - [SMALL_STATE(3221)] = 137137, - [SMALL_STATE(3222)] = 137160, - [SMALL_STATE(3223)] = 137183, - [SMALL_STATE(3224)] = 137202, - [SMALL_STATE(3225)] = 137221, - [SMALL_STATE(3226)] = 137244, - [SMALL_STATE(3227)] = 137263, - [SMALL_STATE(3228)] = 137282, - [SMALL_STATE(3229)] = 137301, - [SMALL_STATE(3230)] = 137320, - [SMALL_STATE(3231)] = 137339, - [SMALL_STATE(3232)] = 137358, - [SMALL_STATE(3233)] = 137377, - [SMALL_STATE(3234)] = 137400, - [SMALL_STATE(3235)] = 137423, - [SMALL_STATE(3236)] = 137442, - [SMALL_STATE(3237)] = 137465, - [SMALL_STATE(3238)] = 137484, - [SMALL_STATE(3239)] = 137507, - [SMALL_STATE(3240)] = 137526, - [SMALL_STATE(3241)] = 137549, - [SMALL_STATE(3242)] = 137568, - [SMALL_STATE(3243)] = 137587, - [SMALL_STATE(3244)] = 137606, - [SMALL_STATE(3245)] = 137629, - [SMALL_STATE(3246)] = 137648, - [SMALL_STATE(3247)] = 137667, - [SMALL_STATE(3248)] = 137686, - [SMALL_STATE(3249)] = 137705, - [SMALL_STATE(3250)] = 137724, - [SMALL_STATE(3251)] = 137743, - [SMALL_STATE(3252)] = 137762, - [SMALL_STATE(3253)] = 137781, - [SMALL_STATE(3254)] = 137804, - [SMALL_STATE(3255)] = 137823, - [SMALL_STATE(3256)] = 137846, - [SMALL_STATE(3257)] = 137865, - [SMALL_STATE(3258)] = 137884, - [SMALL_STATE(3259)] = 137905, - [SMALL_STATE(3260)] = 137928, - [SMALL_STATE(3261)] = 137951, - [SMALL_STATE(3262)] = 137970, - [SMALL_STATE(3263)] = 137989, - [SMALL_STATE(3264)] = 138012, - [SMALL_STATE(3265)] = 138031, - [SMALL_STATE(3266)] = 138054, - [SMALL_STATE(3267)] = 138073, - [SMALL_STATE(3268)] = 138092, - [SMALL_STATE(3269)] = 138115, - [SMALL_STATE(3270)] = 138134, - [SMALL_STATE(3271)] = 138157, - [SMALL_STATE(3272)] = 138180, - [SMALL_STATE(3273)] = 138199, - [SMALL_STATE(3274)] = 138218, - [SMALL_STATE(3275)] = 138241, - [SMALL_STATE(3276)] = 138260, - [SMALL_STATE(3277)] = 138283, - [SMALL_STATE(3278)] = 138302, - [SMALL_STATE(3279)] = 138321, - [SMALL_STATE(3280)] = 138344, - [SMALL_STATE(3281)] = 138363, - [SMALL_STATE(3282)] = 138386, - [SMALL_STATE(3283)] = 138405, - [SMALL_STATE(3284)] = 138428, - [SMALL_STATE(3285)] = 138447, - [SMALL_STATE(3286)] = 138470, - [SMALL_STATE(3287)] = 138489, - [SMALL_STATE(3288)] = 138512, - [SMALL_STATE(3289)] = 138531, - [SMALL_STATE(3290)] = 138554, - [SMALL_STATE(3291)] = 138573, - [SMALL_STATE(3292)] = 138596, - [SMALL_STATE(3293)] = 138619, - [SMALL_STATE(3294)] = 138638, - [SMALL_STATE(3295)] = 138661, - [SMALL_STATE(3296)] = 138680, - [SMALL_STATE(3297)] = 138699, - [SMALL_STATE(3298)] = 138718, - [SMALL_STATE(3299)] = 138741, - [SMALL_STATE(3300)] = 138764, - [SMALL_STATE(3301)] = 138787, - [SMALL_STATE(3302)] = 138810, - [SMALL_STATE(3303)] = 138833, - [SMALL_STATE(3304)] = 138856, - [SMALL_STATE(3305)] = 138879, - [SMALL_STATE(3306)] = 138898, - [SMALL_STATE(3307)] = 138921, - [SMALL_STATE(3308)] = 138940, - [SMALL_STATE(3309)] = 138963, - [SMALL_STATE(3310)] = 138986, - [SMALL_STATE(3311)] = 139009, - [SMALL_STATE(3312)] = 139032, - [SMALL_STATE(3313)] = 139055, - [SMALL_STATE(3314)] = 139078, - [SMALL_STATE(3315)] = 139101, - [SMALL_STATE(3316)] = 139124, - [SMALL_STATE(3317)] = 139147, - [SMALL_STATE(3318)] = 139170, - [SMALL_STATE(3319)] = 139193, - [SMALL_STATE(3320)] = 139216, - [SMALL_STATE(3321)] = 139239, - [SMALL_STATE(3322)] = 139262, - [SMALL_STATE(3323)] = 139285, - [SMALL_STATE(3324)] = 139308, - [SMALL_STATE(3325)] = 139331, - [SMALL_STATE(3326)] = 139350, - [SMALL_STATE(3327)] = 139373, - [SMALL_STATE(3328)] = 139396, - [SMALL_STATE(3329)] = 139419, - [SMALL_STATE(3330)] = 139442, - [SMALL_STATE(3331)] = 139463, - [SMALL_STATE(3332)] = 139486, - [SMALL_STATE(3333)] = 139509, - [SMALL_STATE(3334)] = 139532, - [SMALL_STATE(3335)] = 139551, - [SMALL_STATE(3336)] = 139574, - [SMALL_STATE(3337)] = 139597, - [SMALL_STATE(3338)] = 139620, - [SMALL_STATE(3339)] = 139643, - [SMALL_STATE(3340)] = 139666, - [SMALL_STATE(3341)] = 139689, - [SMALL_STATE(3342)] = 139708, - [SMALL_STATE(3343)] = 139731, - [SMALL_STATE(3344)] = 139750, - [SMALL_STATE(3345)] = 139773, - [SMALL_STATE(3346)] = 139796, - [SMALL_STATE(3347)] = 139817, - [SMALL_STATE(3348)] = 139840, - [SMALL_STATE(3349)] = 139861, - [SMALL_STATE(3350)] = 139884, - [SMALL_STATE(3351)] = 139903, - [SMALL_STATE(3352)] = 139926, - [SMALL_STATE(3353)] = 139949, - [SMALL_STATE(3354)] = 139972, - [SMALL_STATE(3355)] = 139995, - [SMALL_STATE(3356)] = 140018, - [SMALL_STATE(3357)] = 140041, - [SMALL_STATE(3358)] = 140064, - [SMALL_STATE(3359)] = 140085, - [SMALL_STATE(3360)] = 140108, - [SMALL_STATE(3361)] = 140131, - [SMALL_STATE(3362)] = 140154, - [SMALL_STATE(3363)] = 140177, - [SMALL_STATE(3364)] = 140200, - [SMALL_STATE(3365)] = 140223, - [SMALL_STATE(3366)] = 140246, - [SMALL_STATE(3367)] = 140269, - [SMALL_STATE(3368)] = 140292, - [SMALL_STATE(3369)] = 140315, - [SMALL_STATE(3370)] = 140338, - [SMALL_STATE(3371)] = 140359, - [SMALL_STATE(3372)] = 140382, - [SMALL_STATE(3373)] = 140405, - [SMALL_STATE(3374)] = 140428, - [SMALL_STATE(3375)] = 140451, - [SMALL_STATE(3376)] = 140474, - [SMALL_STATE(3377)] = 140497, - [SMALL_STATE(3378)] = 140520, - [SMALL_STATE(3379)] = 140543, - [SMALL_STATE(3380)] = 140566, - [SMALL_STATE(3381)] = 140589, - [SMALL_STATE(3382)] = 140612, - [SMALL_STATE(3383)] = 140635, - [SMALL_STATE(3384)] = 140658, - [SMALL_STATE(3385)] = 140681, - [SMALL_STATE(3386)] = 140704, - [SMALL_STATE(3387)] = 140727, - [SMALL_STATE(3388)] = 140750, - [SMALL_STATE(3389)] = 140773, - [SMALL_STATE(3390)] = 140796, - [SMALL_STATE(3391)] = 140819, - [SMALL_STATE(3392)] = 140842, - [SMALL_STATE(3393)] = 140865, - [SMALL_STATE(3394)] = 140888, - [SMALL_STATE(3395)] = 140911, - [SMALL_STATE(3396)] = 140934, - [SMALL_STATE(3397)] = 140957, - [SMALL_STATE(3398)] = 140980, - [SMALL_STATE(3399)] = 141003, - [SMALL_STATE(3400)] = 141026, - [SMALL_STATE(3401)] = 141049, - [SMALL_STATE(3402)] = 141072, - [SMALL_STATE(3403)] = 141095, - [SMALL_STATE(3404)] = 141118, - [SMALL_STATE(3405)] = 141141, - [SMALL_STATE(3406)] = 141160, - [SMALL_STATE(3407)] = 141179, - [SMALL_STATE(3408)] = 141202, - [SMALL_STATE(3409)] = 141225, - [SMALL_STATE(3410)] = 141248, - [SMALL_STATE(3411)] = 141271, - [SMALL_STATE(3412)] = 141292, - [SMALL_STATE(3413)] = 141315, - [SMALL_STATE(3414)] = 141338, - [SMALL_STATE(3415)] = 141361, - [SMALL_STATE(3416)] = 141384, - [SMALL_STATE(3417)] = 141407, - [SMALL_STATE(3418)] = 141430, - [SMALL_STATE(3419)] = 141453, - [SMALL_STATE(3420)] = 141476, - [SMALL_STATE(3421)] = 141495, - [SMALL_STATE(3422)] = 141518, - [SMALL_STATE(3423)] = 141541, - [SMALL_STATE(3424)] = 141564, - [SMALL_STATE(3425)] = 141587, - [SMALL_STATE(3426)] = 141610, - [SMALL_STATE(3427)] = 141633, - [SMALL_STATE(3428)] = 141656, - [SMALL_STATE(3429)] = 141679, - [SMALL_STATE(3430)] = 141702, - [SMALL_STATE(3431)] = 141725, - [SMALL_STATE(3432)] = 141748, - [SMALL_STATE(3433)] = 141771, - [SMALL_STATE(3434)] = 141794, - [SMALL_STATE(3435)] = 141817, - [SMALL_STATE(3436)] = 141840, - [SMALL_STATE(3437)] = 141863, - [SMALL_STATE(3438)] = 141886, - [SMALL_STATE(3439)] = 141909, - [SMALL_STATE(3440)] = 141932, - [SMALL_STATE(3441)] = 141955, - [SMALL_STATE(3442)] = 141978, - [SMALL_STATE(3443)] = 142001, - [SMALL_STATE(3444)] = 142024, - [SMALL_STATE(3445)] = 142047, - [SMALL_STATE(3446)] = 142070, - [SMALL_STATE(3447)] = 142093, - [SMALL_STATE(3448)] = 142116, - [SMALL_STATE(3449)] = 142139, - [SMALL_STATE(3450)] = 142160, - [SMALL_STATE(3451)] = 142183, - [SMALL_STATE(3452)] = 142206, - [SMALL_STATE(3453)] = 142229, - [SMALL_STATE(3454)] = 142252, - [SMALL_STATE(3455)] = 142275, - [SMALL_STATE(3456)] = 142298, - [SMALL_STATE(3457)] = 142321, - [SMALL_STATE(3458)] = 142344, - [SMALL_STATE(3459)] = 142367, - [SMALL_STATE(3460)] = 142390, - [SMALL_STATE(3461)] = 142413, - [SMALL_STATE(3462)] = 142436, - [SMALL_STATE(3463)] = 142459, - [SMALL_STATE(3464)] = 142482, - [SMALL_STATE(3465)] = 142505, - [SMALL_STATE(3466)] = 142528, - [SMALL_STATE(3467)] = 142551, - [SMALL_STATE(3468)] = 142574, - [SMALL_STATE(3469)] = 142597, - [SMALL_STATE(3470)] = 142620, - [SMALL_STATE(3471)] = 142639, - [SMALL_STATE(3472)] = 142662, - [SMALL_STATE(3473)] = 142685, - [SMALL_STATE(3474)] = 142704, - [SMALL_STATE(3475)] = 142727, - [SMALL_STATE(3476)] = 142750, - [SMALL_STATE(3477)] = 142773, - [SMALL_STATE(3478)] = 142796, - [SMALL_STATE(3479)] = 142815, - [SMALL_STATE(3480)] = 142838, - [SMALL_STATE(3481)] = 142861, - [SMALL_STATE(3482)] = 142884, - [SMALL_STATE(3483)] = 142907, - [SMALL_STATE(3484)] = 142930, - [SMALL_STATE(3485)] = 142953, - [SMALL_STATE(3486)] = 142976, - [SMALL_STATE(3487)] = 142995, - [SMALL_STATE(3488)] = 143014, - [SMALL_STATE(3489)] = 143033, - [SMALL_STATE(3490)] = 143056, - [SMALL_STATE(3491)] = 143079, - [SMALL_STATE(3492)] = 143098, - [SMALL_STATE(3493)] = 143121, - [SMALL_STATE(3494)] = 143144, - [SMALL_STATE(3495)] = 143167, - [SMALL_STATE(3496)] = 143190, - [SMALL_STATE(3497)] = 143213, - [SMALL_STATE(3498)] = 143236, - [SMALL_STATE(3499)] = 143259, - [SMALL_STATE(3500)] = 143282, - [SMALL_STATE(3501)] = 143305, - [SMALL_STATE(3502)] = 143328, - [SMALL_STATE(3503)] = 143351, - [SMALL_STATE(3504)] = 143374, - [SMALL_STATE(3505)] = 143397, - [SMALL_STATE(3506)] = 143420, - [SMALL_STATE(3507)] = 143443, - [SMALL_STATE(3508)] = 143466, - [SMALL_STATE(3509)] = 143489, - [SMALL_STATE(3510)] = 143512, - [SMALL_STATE(3511)] = 143535, - [SMALL_STATE(3512)] = 143554, - [SMALL_STATE(3513)] = 143577, - [SMALL_STATE(3514)] = 143600, - [SMALL_STATE(3515)] = 143623, - [SMALL_STATE(3516)] = 143646, - [SMALL_STATE(3517)] = 143669, - [SMALL_STATE(3518)] = 143688, - [SMALL_STATE(3519)] = 143707, - [SMALL_STATE(3520)] = 143730, - [SMALL_STATE(3521)] = 143753, - [SMALL_STATE(3522)] = 143776, - [SMALL_STATE(3523)] = 143799, - [SMALL_STATE(3524)] = 143822, - [SMALL_STATE(3525)] = 143845, - [SMALL_STATE(3526)] = 143868, - [SMALL_STATE(3527)] = 143891, - [SMALL_STATE(3528)] = 143910, - [SMALL_STATE(3529)] = 143929, - [SMALL_STATE(3530)] = 143952, - [SMALL_STATE(3531)] = 143971, - [SMALL_STATE(3532)] = 143994, - [SMALL_STATE(3533)] = 144014, - [SMALL_STATE(3534)] = 144034, - [SMALL_STATE(3535)] = 144054, - [SMALL_STATE(3536)] = 144074, - [SMALL_STATE(3537)] = 144092, - [SMALL_STATE(3538)] = 144112, - [SMALL_STATE(3539)] = 144132, - [SMALL_STATE(3540)] = 144152, - [SMALL_STATE(3541)] = 144172, - [SMALL_STATE(3542)] = 144192, - [SMALL_STATE(3543)] = 144212, - [SMALL_STATE(3544)] = 144232, - [SMALL_STATE(3545)] = 144252, - [SMALL_STATE(3546)] = 144272, - [SMALL_STATE(3547)] = 144292, - [SMALL_STATE(3548)] = 144312, - [SMALL_STATE(3549)] = 144332, - [SMALL_STATE(3550)] = 144352, - [SMALL_STATE(3551)] = 144372, - [SMALL_STATE(3552)] = 144392, - [SMALL_STATE(3553)] = 144412, - [SMALL_STATE(3554)] = 144432, - [SMALL_STATE(3555)] = 144452, - [SMALL_STATE(3556)] = 144472, - [SMALL_STATE(3557)] = 144492, - [SMALL_STATE(3558)] = 144512, - [SMALL_STATE(3559)] = 144532, - [SMALL_STATE(3560)] = 144552, - [SMALL_STATE(3561)] = 144572, - [SMALL_STATE(3562)] = 144592, - [SMALL_STATE(3563)] = 144612, - [SMALL_STATE(3564)] = 144632, - [SMALL_STATE(3565)] = 144652, - [SMALL_STATE(3566)] = 144672, - [SMALL_STATE(3567)] = 144692, - [SMALL_STATE(3568)] = 144712, - [SMALL_STATE(3569)] = 144732, - [SMALL_STATE(3570)] = 144752, - [SMALL_STATE(3571)] = 144772, - [SMALL_STATE(3572)] = 144792, - [SMALL_STATE(3573)] = 144812, - [SMALL_STATE(3574)] = 144832, - [SMALL_STATE(3575)] = 144852, - [SMALL_STATE(3576)] = 144872, - [SMALL_STATE(3577)] = 144892, - [SMALL_STATE(3578)] = 144912, - [SMALL_STATE(3579)] = 144932, - [SMALL_STATE(3580)] = 144952, - [SMALL_STATE(3581)] = 144972, - [SMALL_STATE(3582)] = 144992, - [SMALL_STATE(3583)] = 145012, - [SMALL_STATE(3584)] = 145032, - [SMALL_STATE(3585)] = 145052, - [SMALL_STATE(3586)] = 145072, - [SMALL_STATE(3587)] = 145092, - [SMALL_STATE(3588)] = 145110, - [SMALL_STATE(3589)] = 145130, - [SMALL_STATE(3590)] = 145150, - [SMALL_STATE(3591)] = 145170, - [SMALL_STATE(3592)] = 145190, - [SMALL_STATE(3593)] = 145210, - [SMALL_STATE(3594)] = 145230, - [SMALL_STATE(3595)] = 145250, - [SMALL_STATE(3596)] = 145270, - [SMALL_STATE(3597)] = 145290, - [SMALL_STATE(3598)] = 145310, - [SMALL_STATE(3599)] = 145330, - [SMALL_STATE(3600)] = 145350, - [SMALL_STATE(3601)] = 145370, - [SMALL_STATE(3602)] = 145390, - [SMALL_STATE(3603)] = 145410, - [SMALL_STATE(3604)] = 145430, - [SMALL_STATE(3605)] = 145450, - [SMALL_STATE(3606)] = 145470, - [SMALL_STATE(3607)] = 145490, - [SMALL_STATE(3608)] = 145510, - [SMALL_STATE(3609)] = 145530, - [SMALL_STATE(3610)] = 145550, - [SMALL_STATE(3611)] = 145568, - [SMALL_STATE(3612)] = 145588, - [SMALL_STATE(3613)] = 145608, - [SMALL_STATE(3614)] = 145628, - [SMALL_STATE(3615)] = 145648, - [SMALL_STATE(3616)] = 145668, - [SMALL_STATE(3617)] = 145688, - [SMALL_STATE(3618)] = 145708, - [SMALL_STATE(3619)] = 145728, - [SMALL_STATE(3620)] = 145748, - [SMALL_STATE(3621)] = 145768, - [SMALL_STATE(3622)] = 145788, - [SMALL_STATE(3623)] = 145808, - [SMALL_STATE(3624)] = 145828, - [SMALL_STATE(3625)] = 145848, - [SMALL_STATE(3626)] = 145868, - [SMALL_STATE(3627)] = 145888, - [SMALL_STATE(3628)] = 145908, - [SMALL_STATE(3629)] = 145928, - [SMALL_STATE(3630)] = 145948, - [SMALL_STATE(3631)] = 145968, - [SMALL_STATE(3632)] = 145988, - [SMALL_STATE(3633)] = 146008, - [SMALL_STATE(3634)] = 146028, - [SMALL_STATE(3635)] = 146048, - [SMALL_STATE(3636)] = 146066, - [SMALL_STATE(3637)] = 146086, - [SMALL_STATE(3638)] = 146106, - [SMALL_STATE(3639)] = 146126, - [SMALL_STATE(3640)] = 146146, - [SMALL_STATE(3641)] = 146166, - [SMALL_STATE(3642)] = 146186, - [SMALL_STATE(3643)] = 146206, - [SMALL_STATE(3644)] = 146226, - [SMALL_STATE(3645)] = 146246, - [SMALL_STATE(3646)] = 146266, - [SMALL_STATE(3647)] = 146286, - [SMALL_STATE(3648)] = 146304, - [SMALL_STATE(3649)] = 146324, - [SMALL_STATE(3650)] = 146344, - [SMALL_STATE(3651)] = 146364, - [SMALL_STATE(3652)] = 146384, - [SMALL_STATE(3653)] = 146404, - [SMALL_STATE(3654)] = 146424, - [SMALL_STATE(3655)] = 146444, - [SMALL_STATE(3656)] = 146464, - [SMALL_STATE(3657)] = 146484, - [SMALL_STATE(3658)] = 146504, - [SMALL_STATE(3659)] = 146524, - [SMALL_STATE(3660)] = 146544, - [SMALL_STATE(3661)] = 146562, - [SMALL_STATE(3662)] = 146582, - [SMALL_STATE(3663)] = 146602, - [SMALL_STATE(3664)] = 146620, - [SMALL_STATE(3665)] = 146640, - [SMALL_STATE(3666)] = 146660, - [SMALL_STATE(3667)] = 146680, - [SMALL_STATE(3668)] = 146700, - [SMALL_STATE(3669)] = 146720, - [SMALL_STATE(3670)] = 146740, - [SMALL_STATE(3671)] = 146760, - [SMALL_STATE(3672)] = 146780, - [SMALL_STATE(3673)] = 146800, - [SMALL_STATE(3674)] = 146820, - [SMALL_STATE(3675)] = 146840, - [SMALL_STATE(3676)] = 146860, - [SMALL_STATE(3677)] = 146880, - [SMALL_STATE(3678)] = 146900, - [SMALL_STATE(3679)] = 146920, - [SMALL_STATE(3680)] = 146940, - [SMALL_STATE(3681)] = 146960, - [SMALL_STATE(3682)] = 146980, - [SMALL_STATE(3683)] = 147000, - [SMALL_STATE(3684)] = 147020, - [SMALL_STATE(3685)] = 147040, - [SMALL_STATE(3686)] = 147060, - [SMALL_STATE(3687)] = 147078, - [SMALL_STATE(3688)] = 147098, - [SMALL_STATE(3689)] = 147118, - [SMALL_STATE(3690)] = 147138, - [SMALL_STATE(3691)] = 147158, - [SMALL_STATE(3692)] = 147178, - [SMALL_STATE(3693)] = 147198, - [SMALL_STATE(3694)] = 147218, - [SMALL_STATE(3695)] = 147238, - [SMALL_STATE(3696)] = 147258, - [SMALL_STATE(3697)] = 147278, - [SMALL_STATE(3698)] = 147298, - [SMALL_STATE(3699)] = 147318, - [SMALL_STATE(3700)] = 147336, - [SMALL_STATE(3701)] = 147354, - [SMALL_STATE(3702)] = 147374, - [SMALL_STATE(3703)] = 147394, - [SMALL_STATE(3704)] = 147414, - [SMALL_STATE(3705)] = 147434, - [SMALL_STATE(3706)] = 147454, - [SMALL_STATE(3707)] = 147474, - [SMALL_STATE(3708)] = 147494, - [SMALL_STATE(3709)] = 147514, - [SMALL_STATE(3710)] = 147534, - [SMALL_STATE(3711)] = 147554, - [SMALL_STATE(3712)] = 147574, - [SMALL_STATE(3713)] = 147594, - [SMALL_STATE(3714)] = 147614, - [SMALL_STATE(3715)] = 147634, - [SMALL_STATE(3716)] = 147654, - [SMALL_STATE(3717)] = 147674, - [SMALL_STATE(3718)] = 147694, - [SMALL_STATE(3719)] = 147714, - [SMALL_STATE(3720)] = 147732, - [SMALL_STATE(3721)] = 147752, - [SMALL_STATE(3722)] = 147772, - [SMALL_STATE(3723)] = 147792, - [SMALL_STATE(3724)] = 147812, - [SMALL_STATE(3725)] = 147832, - [SMALL_STATE(3726)] = 147852, - [SMALL_STATE(3727)] = 147872, - [SMALL_STATE(3728)] = 147892, - [SMALL_STATE(3729)] = 147912, - [SMALL_STATE(3730)] = 147932, - [SMALL_STATE(3731)] = 147952, - [SMALL_STATE(3732)] = 147970, - [SMALL_STATE(3733)] = 147990, - [SMALL_STATE(3734)] = 148010, - [SMALL_STATE(3735)] = 148028, - [SMALL_STATE(3736)] = 148048, - [SMALL_STATE(3737)] = 148068, - [SMALL_STATE(3738)] = 148088, - [SMALL_STATE(3739)] = 148108, - [SMALL_STATE(3740)] = 148128, - [SMALL_STATE(3741)] = 148148, - [SMALL_STATE(3742)] = 148168, - [SMALL_STATE(3743)] = 148188, - [SMALL_STATE(3744)] = 148208, - [SMALL_STATE(3745)] = 148228, - [SMALL_STATE(3746)] = 148248, - [SMALL_STATE(3747)] = 148268, - [SMALL_STATE(3748)] = 148288, - [SMALL_STATE(3749)] = 148308, - [SMALL_STATE(3750)] = 148328, - [SMALL_STATE(3751)] = 148348, - [SMALL_STATE(3752)] = 148368, - [SMALL_STATE(3753)] = 148388, - [SMALL_STATE(3754)] = 148408, - [SMALL_STATE(3755)] = 148426, - [SMALL_STATE(3756)] = 148446, - [SMALL_STATE(3757)] = 148466, - [SMALL_STATE(3758)] = 148486, - [SMALL_STATE(3759)] = 148506, - [SMALL_STATE(3760)] = 148526, - [SMALL_STATE(3761)] = 148546, - [SMALL_STATE(3762)] = 148564, - [SMALL_STATE(3763)] = 148584, - [SMALL_STATE(3764)] = 148604, - [SMALL_STATE(3765)] = 148624, - [SMALL_STATE(3766)] = 148642, - [SMALL_STATE(3767)] = 148662, - [SMALL_STATE(3768)] = 148682, - [SMALL_STATE(3769)] = 148702, - [SMALL_STATE(3770)] = 148722, - [SMALL_STATE(3771)] = 148742, - [SMALL_STATE(3772)] = 148762, - [SMALL_STATE(3773)] = 148782, - [SMALL_STATE(3774)] = 148802, - [SMALL_STATE(3775)] = 148822, - [SMALL_STATE(3776)] = 148842, - [SMALL_STATE(3777)] = 148862, - [SMALL_STATE(3778)] = 148882, - [SMALL_STATE(3779)] = 148902, - [SMALL_STATE(3780)] = 148922, - [SMALL_STATE(3781)] = 148942, - [SMALL_STATE(3782)] = 148960, - [SMALL_STATE(3783)] = 148978, - [SMALL_STATE(3784)] = 148998, - [SMALL_STATE(3785)] = 149018, - [SMALL_STATE(3786)] = 149038, - [SMALL_STATE(3787)] = 149058, - [SMALL_STATE(3788)] = 149078, - [SMALL_STATE(3789)] = 149098, - [SMALL_STATE(3790)] = 149118, - [SMALL_STATE(3791)] = 149136, - [SMALL_STATE(3792)] = 149156, - [SMALL_STATE(3793)] = 149174, - [SMALL_STATE(3794)] = 149194, - [SMALL_STATE(3795)] = 149214, - [SMALL_STATE(3796)] = 149234, - [SMALL_STATE(3797)] = 149254, - [SMALL_STATE(3798)] = 149274, - [SMALL_STATE(3799)] = 149294, - [SMALL_STATE(3800)] = 149312, - [SMALL_STATE(3801)] = 149330, - [SMALL_STATE(3802)] = 149350, - [SMALL_STATE(3803)] = 149370, - [SMALL_STATE(3804)] = 149390, - [SMALL_STATE(3805)] = 149410, - [SMALL_STATE(3806)] = 149430, - [SMALL_STATE(3807)] = 149450, - [SMALL_STATE(3808)] = 149470, - [SMALL_STATE(3809)] = 149490, - [SMALL_STATE(3810)] = 149510, - [SMALL_STATE(3811)] = 149530, - [SMALL_STATE(3812)] = 149550, - [SMALL_STATE(3813)] = 149568, - [SMALL_STATE(3814)] = 149588, - [SMALL_STATE(3815)] = 149608, - [SMALL_STATE(3816)] = 149628, - [SMALL_STATE(3817)] = 149648, - [SMALL_STATE(3818)] = 149668, - [SMALL_STATE(3819)] = 149688, - [SMALL_STATE(3820)] = 149708, - [SMALL_STATE(3821)] = 149728, - [SMALL_STATE(3822)] = 149748, - [SMALL_STATE(3823)] = 149768, - [SMALL_STATE(3824)] = 149788, - [SMALL_STATE(3825)] = 149808, - [SMALL_STATE(3826)] = 149826, - [SMALL_STATE(3827)] = 149846, - [SMALL_STATE(3828)] = 149866, - [SMALL_STATE(3829)] = 149886, - [SMALL_STATE(3830)] = 149906, - [SMALL_STATE(3831)] = 149926, - [SMALL_STATE(3832)] = 149946, - [SMALL_STATE(3833)] = 149966, - [SMALL_STATE(3834)] = 149986, - [SMALL_STATE(3835)] = 150004, - [SMALL_STATE(3836)] = 150024, - [SMALL_STATE(3837)] = 150044, - [SMALL_STATE(3838)] = 150064, - [SMALL_STATE(3839)] = 150084, - [SMALL_STATE(3840)] = 150104, - [SMALL_STATE(3841)] = 150124, - [SMALL_STATE(3842)] = 150144, - [SMALL_STATE(3843)] = 150164, - [SMALL_STATE(3844)] = 150184, - [SMALL_STATE(3845)] = 150202, - [SMALL_STATE(3846)] = 150222, - [SMALL_STATE(3847)] = 150242, - [SMALL_STATE(3848)] = 150262, - [SMALL_STATE(3849)] = 150282, - [SMALL_STATE(3850)] = 150302, - [SMALL_STATE(3851)] = 150320, - [SMALL_STATE(3852)] = 150340, - [SMALL_STATE(3853)] = 150360, - [SMALL_STATE(3854)] = 150380, - [SMALL_STATE(3855)] = 150400, - [SMALL_STATE(3856)] = 150420, - [SMALL_STATE(3857)] = 150440, - [SMALL_STATE(3858)] = 150460, - [SMALL_STATE(3859)] = 150480, - [SMALL_STATE(3860)] = 150500, - [SMALL_STATE(3861)] = 150520, - [SMALL_STATE(3862)] = 150540, - [SMALL_STATE(3863)] = 150560, - [SMALL_STATE(3864)] = 150580, - [SMALL_STATE(3865)] = 150600, - [SMALL_STATE(3866)] = 150620, - [SMALL_STATE(3867)] = 150640, - [SMALL_STATE(3868)] = 150660, - [SMALL_STATE(3869)] = 150680, - [SMALL_STATE(3870)] = 150700, - [SMALL_STATE(3871)] = 150720, - [SMALL_STATE(3872)] = 150740, - [SMALL_STATE(3873)] = 150760, - [SMALL_STATE(3874)] = 150780, - [SMALL_STATE(3875)] = 150800, - [SMALL_STATE(3876)] = 150820, - [SMALL_STATE(3877)] = 150840, - [SMALL_STATE(3878)] = 150860, - [SMALL_STATE(3879)] = 150880, - [SMALL_STATE(3880)] = 150900, - [SMALL_STATE(3881)] = 150920, - [SMALL_STATE(3882)] = 150938, - [SMALL_STATE(3883)] = 150958, - [SMALL_STATE(3884)] = 150978, - [SMALL_STATE(3885)] = 150996, - [SMALL_STATE(3886)] = 151016, - [SMALL_STATE(3887)] = 151036, - [SMALL_STATE(3888)] = 151056, - [SMALL_STATE(3889)] = 151076, - [SMALL_STATE(3890)] = 151096, - [SMALL_STATE(3891)] = 151116, - [SMALL_STATE(3892)] = 151136, - [SMALL_STATE(3893)] = 151156, - [SMALL_STATE(3894)] = 151176, - [SMALL_STATE(3895)] = 151196, - [SMALL_STATE(3896)] = 151216, - [SMALL_STATE(3897)] = 151236, - [SMALL_STATE(3898)] = 151256, - [SMALL_STATE(3899)] = 151276, - [SMALL_STATE(3900)] = 151296, - [SMALL_STATE(3901)] = 151316, - [SMALL_STATE(3902)] = 151334, - [SMALL_STATE(3903)] = 151354, - [SMALL_STATE(3904)] = 151374, - [SMALL_STATE(3905)] = 151392, - [SMALL_STATE(3906)] = 151412, - [SMALL_STATE(3907)] = 151432, - [SMALL_STATE(3908)] = 151452, - [SMALL_STATE(3909)] = 151472, - [SMALL_STATE(3910)] = 151492, - [SMALL_STATE(3911)] = 151512, - [SMALL_STATE(3912)] = 151532, - [SMALL_STATE(3913)] = 151552, - [SMALL_STATE(3914)] = 151572, - [SMALL_STATE(3915)] = 151590, - [SMALL_STATE(3916)] = 151608, - [SMALL_STATE(3917)] = 151628, - [SMALL_STATE(3918)] = 151648, - [SMALL_STATE(3919)] = 151666, - [SMALL_STATE(3920)] = 151684, - [SMALL_STATE(3921)] = 151704, - [SMALL_STATE(3922)] = 151724, - [SMALL_STATE(3923)] = 151742, - [SMALL_STATE(3924)] = 151762, - [SMALL_STATE(3925)] = 151782, - [SMALL_STATE(3926)] = 151802, - [SMALL_STATE(3927)] = 151822, - [SMALL_STATE(3928)] = 151842, - [SMALL_STATE(3929)] = 151862, - [SMALL_STATE(3930)] = 151882, - [SMALL_STATE(3931)] = 151902, - [SMALL_STATE(3932)] = 151922, - [SMALL_STATE(3933)] = 151942, - [SMALL_STATE(3934)] = 151962, - [SMALL_STATE(3935)] = 151982, - [SMALL_STATE(3936)] = 152000, - [SMALL_STATE(3937)] = 152020, - [SMALL_STATE(3938)] = 152040, - [SMALL_STATE(3939)] = 152060, - [SMALL_STATE(3940)] = 152078, - [SMALL_STATE(3941)] = 152098, - [SMALL_STATE(3942)] = 152118, - [SMALL_STATE(3943)] = 152136, - [SMALL_STATE(3944)] = 152156, - [SMALL_STATE(3945)] = 152176, - [SMALL_STATE(3946)] = 152196, - [SMALL_STATE(3947)] = 152216, - [SMALL_STATE(3948)] = 152236, - [SMALL_STATE(3949)] = 152256, - [SMALL_STATE(3950)] = 152276, - [SMALL_STATE(3951)] = 152296, - [SMALL_STATE(3952)] = 152316, - [SMALL_STATE(3953)] = 152336, - [SMALL_STATE(3954)] = 152356, - [SMALL_STATE(3955)] = 152376, - [SMALL_STATE(3956)] = 152396, - [SMALL_STATE(3957)] = 152416, - [SMALL_STATE(3958)] = 152436, - [SMALL_STATE(3959)] = 152456, - [SMALL_STATE(3960)] = 152476, - [SMALL_STATE(3961)] = 152496, - [SMALL_STATE(3962)] = 152516, - [SMALL_STATE(3963)] = 152536, - [SMALL_STATE(3964)] = 152556, - [SMALL_STATE(3965)] = 152576, - [SMALL_STATE(3966)] = 152596, - [SMALL_STATE(3967)] = 152616, - [SMALL_STATE(3968)] = 152636, - [SMALL_STATE(3969)] = 152656, - [SMALL_STATE(3970)] = 152676, - [SMALL_STATE(3971)] = 152696, - [SMALL_STATE(3972)] = 152716, - [SMALL_STATE(3973)] = 152736, - [SMALL_STATE(3974)] = 152756, - [SMALL_STATE(3975)] = 152776, - [SMALL_STATE(3976)] = 152796, - [SMALL_STATE(3977)] = 152816, - [SMALL_STATE(3978)] = 152836, - [SMALL_STATE(3979)] = 152856, - [SMALL_STATE(3980)] = 152876, - [SMALL_STATE(3981)] = 152896, - [SMALL_STATE(3982)] = 152916, - [SMALL_STATE(3983)] = 152936, - [SMALL_STATE(3984)] = 152956, - [SMALL_STATE(3985)] = 152976, - [SMALL_STATE(3986)] = 152996, - [SMALL_STATE(3987)] = 153016, - [SMALL_STATE(3988)] = 153036, - [SMALL_STATE(3989)] = 153056, - [SMALL_STATE(3990)] = 153076, - [SMALL_STATE(3991)] = 153096, - [SMALL_STATE(3992)] = 153116, - [SMALL_STATE(3993)] = 153136, - [SMALL_STATE(3994)] = 153156, - [SMALL_STATE(3995)] = 153176, - [SMALL_STATE(3996)] = 153196, - [SMALL_STATE(3997)] = 153216, - [SMALL_STATE(3998)] = 153236, - [SMALL_STATE(3999)] = 153256, - [SMALL_STATE(4000)] = 153276, - [SMALL_STATE(4001)] = 153296, - [SMALL_STATE(4002)] = 153316, - [SMALL_STATE(4003)] = 153336, - [SMALL_STATE(4004)] = 153354, - [SMALL_STATE(4005)] = 153374, - [SMALL_STATE(4006)] = 153394, - [SMALL_STATE(4007)] = 153414, - [SMALL_STATE(4008)] = 153434, - [SMALL_STATE(4009)] = 153454, - [SMALL_STATE(4010)] = 153474, - [SMALL_STATE(4011)] = 153494, - [SMALL_STATE(4012)] = 153514, - [SMALL_STATE(4013)] = 153534, - [SMALL_STATE(4014)] = 153554, - [SMALL_STATE(4015)] = 153574, - [SMALL_STATE(4016)] = 153594, - [SMALL_STATE(4017)] = 153614, - [SMALL_STATE(4018)] = 153634, - [SMALL_STATE(4019)] = 153654, - [SMALL_STATE(4020)] = 153674, - [SMALL_STATE(4021)] = 153694, - [SMALL_STATE(4022)] = 153714, - [SMALL_STATE(4023)] = 153734, - [SMALL_STATE(4024)] = 153754, - [SMALL_STATE(4025)] = 153774, - [SMALL_STATE(4026)] = 153794, - [SMALL_STATE(4027)] = 153814, - [SMALL_STATE(4028)] = 153832, - [SMALL_STATE(4029)] = 153852, - [SMALL_STATE(4030)] = 153872, - [SMALL_STATE(4031)] = 153890, - [SMALL_STATE(4032)] = 153910, - [SMALL_STATE(4033)] = 153928, - [SMALL_STATE(4034)] = 153948, - [SMALL_STATE(4035)] = 153968, - [SMALL_STATE(4036)] = 153988, - [SMALL_STATE(4037)] = 154008, - [SMALL_STATE(4038)] = 154028, - [SMALL_STATE(4039)] = 154048, - [SMALL_STATE(4040)] = 154068, - [SMALL_STATE(4041)] = 154088, - [SMALL_STATE(4042)] = 154108, - [SMALL_STATE(4043)] = 154128, - [SMALL_STATE(4044)] = 154148, - [SMALL_STATE(4045)] = 154168, - [SMALL_STATE(4046)] = 154188, - [SMALL_STATE(4047)] = 154208, - [SMALL_STATE(4048)] = 154226, - [SMALL_STATE(4049)] = 154246, - [SMALL_STATE(4050)] = 154266, - [SMALL_STATE(4051)] = 154286, - [SMALL_STATE(4052)] = 154306, - [SMALL_STATE(4053)] = 154324, - [SMALL_STATE(4054)] = 154344, - [SMALL_STATE(4055)] = 154364, - [SMALL_STATE(4056)] = 154382, - [SMALL_STATE(4057)] = 154402, - [SMALL_STATE(4058)] = 154422, - [SMALL_STATE(4059)] = 154442, - [SMALL_STATE(4060)] = 154459, - [SMALL_STATE(4061)] = 154476, - [SMALL_STATE(4062)] = 154493, - [SMALL_STATE(4063)] = 154510, - [SMALL_STATE(4064)] = 154527, - [SMALL_STATE(4065)] = 154544, - [SMALL_STATE(4066)] = 154561, - [SMALL_STATE(4067)] = 154578, - [SMALL_STATE(4068)] = 154595, - [SMALL_STATE(4069)] = 154612, - [SMALL_STATE(4070)] = 154629, - [SMALL_STATE(4071)] = 154646, - [SMALL_STATE(4072)] = 154663, - [SMALL_STATE(4073)] = 154680, - [SMALL_STATE(4074)] = 154697, - [SMALL_STATE(4075)] = 154714, - [SMALL_STATE(4076)] = 154731, - [SMALL_STATE(4077)] = 154748, - [SMALL_STATE(4078)] = 154765, - [SMALL_STATE(4079)] = 154782, - [SMALL_STATE(4080)] = 154799, - [SMALL_STATE(4081)] = 154816, - [SMALL_STATE(4082)] = 154833, - [SMALL_STATE(4083)] = 154850, - [SMALL_STATE(4084)] = 154867, - [SMALL_STATE(4085)] = 154884, - [SMALL_STATE(4086)] = 154901, - [SMALL_STATE(4087)] = 154918, - [SMALL_STATE(4088)] = 154935, - [SMALL_STATE(4089)] = 154952, - [SMALL_STATE(4090)] = 154969, - [SMALL_STATE(4091)] = 154986, - [SMALL_STATE(4092)] = 155003, - [SMALL_STATE(4093)] = 155020, - [SMALL_STATE(4094)] = 155037, - [SMALL_STATE(4095)] = 155054, - [SMALL_STATE(4096)] = 155071, - [SMALL_STATE(4097)] = 155088, - [SMALL_STATE(4098)] = 155105, - [SMALL_STATE(4099)] = 155122, - [SMALL_STATE(4100)] = 155139, - [SMALL_STATE(4101)] = 155156, - [SMALL_STATE(4102)] = 155173, - [SMALL_STATE(4103)] = 155190, - [SMALL_STATE(4104)] = 155207, - [SMALL_STATE(4105)] = 155224, - [SMALL_STATE(4106)] = 155241, - [SMALL_STATE(4107)] = 155258, - [SMALL_STATE(4108)] = 155275, - [SMALL_STATE(4109)] = 155292, - [SMALL_STATE(4110)] = 155309, - [SMALL_STATE(4111)] = 155326, - [SMALL_STATE(4112)] = 155343, - [SMALL_STATE(4113)] = 155360, - [SMALL_STATE(4114)] = 155377, - [SMALL_STATE(4115)] = 155394, - [SMALL_STATE(4116)] = 155411, - [SMALL_STATE(4117)] = 155428, - [SMALL_STATE(4118)] = 155445, - [SMALL_STATE(4119)] = 155462, - [SMALL_STATE(4120)] = 155479, - [SMALL_STATE(4121)] = 155496, - [SMALL_STATE(4122)] = 155513, - [SMALL_STATE(4123)] = 155530, - [SMALL_STATE(4124)] = 155547, - [SMALL_STATE(4125)] = 155564, - [SMALL_STATE(4126)] = 155581, - [SMALL_STATE(4127)] = 155598, - [SMALL_STATE(4128)] = 155615, - [SMALL_STATE(4129)] = 155632, - [SMALL_STATE(4130)] = 155649, - [SMALL_STATE(4131)] = 155666, - [SMALL_STATE(4132)] = 155683, - [SMALL_STATE(4133)] = 155700, - [SMALL_STATE(4134)] = 155717, - [SMALL_STATE(4135)] = 155734, - [SMALL_STATE(4136)] = 155751, - [SMALL_STATE(4137)] = 155768, - [SMALL_STATE(4138)] = 155785, - [SMALL_STATE(4139)] = 155802, - [SMALL_STATE(4140)] = 155819, - [SMALL_STATE(4141)] = 155836, - [SMALL_STATE(4142)] = 155853, - [SMALL_STATE(4143)] = 155870, - [SMALL_STATE(4144)] = 155887, - [SMALL_STATE(4145)] = 155904, - [SMALL_STATE(4146)] = 155921, - [SMALL_STATE(4147)] = 155938, - [SMALL_STATE(4148)] = 155955, - [SMALL_STATE(4149)] = 155972, - [SMALL_STATE(4150)] = 155989, - [SMALL_STATE(4151)] = 156006, - [SMALL_STATE(4152)] = 156023, - [SMALL_STATE(4153)] = 156040, - [SMALL_STATE(4154)] = 156057, - [SMALL_STATE(4155)] = 156074, - [SMALL_STATE(4156)] = 156091, - [SMALL_STATE(4157)] = 156108, - [SMALL_STATE(4158)] = 156125, - [SMALL_STATE(4159)] = 156142, - [SMALL_STATE(4160)] = 156159, - [SMALL_STATE(4161)] = 156176, - [SMALL_STATE(4162)] = 156193, - [SMALL_STATE(4163)] = 156210, - [SMALL_STATE(4164)] = 156227, - [SMALL_STATE(4165)] = 156244, - [SMALL_STATE(4166)] = 156261, - [SMALL_STATE(4167)] = 156278, - [SMALL_STATE(4168)] = 156295, - [SMALL_STATE(4169)] = 156312, - [SMALL_STATE(4170)] = 156329, - [SMALL_STATE(4171)] = 156346, - [SMALL_STATE(4172)] = 156363, - [SMALL_STATE(4173)] = 156380, - [SMALL_STATE(4174)] = 156397, - [SMALL_STATE(4175)] = 156414, - [SMALL_STATE(4176)] = 156431, - [SMALL_STATE(4177)] = 156448, - [SMALL_STATE(4178)] = 156465, - [SMALL_STATE(4179)] = 156482, - [SMALL_STATE(4180)] = 156499, - [SMALL_STATE(4181)] = 156516, - [SMALL_STATE(4182)] = 156533, - [SMALL_STATE(4183)] = 156550, - [SMALL_STATE(4184)] = 156567, - [SMALL_STATE(4185)] = 156584, - [SMALL_STATE(4186)] = 156601, - [SMALL_STATE(4187)] = 156618, - [SMALL_STATE(4188)] = 156635, - [SMALL_STATE(4189)] = 156652, - [SMALL_STATE(4190)] = 156669, - [SMALL_STATE(4191)] = 156686, - [SMALL_STATE(4192)] = 156703, - [SMALL_STATE(4193)] = 156720, - [SMALL_STATE(4194)] = 156737, - [SMALL_STATE(4195)] = 156754, - [SMALL_STATE(4196)] = 156771, - [SMALL_STATE(4197)] = 156788, - [SMALL_STATE(4198)] = 156805, - [SMALL_STATE(4199)] = 156822, - [SMALL_STATE(4200)] = 156839, - [SMALL_STATE(4201)] = 156856, - [SMALL_STATE(4202)] = 156873, - [SMALL_STATE(4203)] = 156890, - [SMALL_STATE(4204)] = 156907, - [SMALL_STATE(4205)] = 156924, - [SMALL_STATE(4206)] = 156941, - [SMALL_STATE(4207)] = 156958, - [SMALL_STATE(4208)] = 156975, - [SMALL_STATE(4209)] = 156992, - [SMALL_STATE(4210)] = 157009, - [SMALL_STATE(4211)] = 157026, - [SMALL_STATE(4212)] = 157043, - [SMALL_STATE(4213)] = 157060, - [SMALL_STATE(4214)] = 157077, - [SMALL_STATE(4215)] = 157094, - [SMALL_STATE(4216)] = 157111, - [SMALL_STATE(4217)] = 157128, - [SMALL_STATE(4218)] = 157145, - [SMALL_STATE(4219)] = 157162, - [SMALL_STATE(4220)] = 157179, - [SMALL_STATE(4221)] = 157196, - [SMALL_STATE(4222)] = 157213, - [SMALL_STATE(4223)] = 157230, - [SMALL_STATE(4224)] = 157247, - [SMALL_STATE(4225)] = 157264, - [SMALL_STATE(4226)] = 157281, - [SMALL_STATE(4227)] = 157298, - [SMALL_STATE(4228)] = 157315, - [SMALL_STATE(4229)] = 157332, - [SMALL_STATE(4230)] = 157349, - [SMALL_STATE(4231)] = 157366, - [SMALL_STATE(4232)] = 157383, - [SMALL_STATE(4233)] = 157400, - [SMALL_STATE(4234)] = 157417, - [SMALL_STATE(4235)] = 157434, - [SMALL_STATE(4236)] = 157451, - [SMALL_STATE(4237)] = 157468, - [SMALL_STATE(4238)] = 157485, - [SMALL_STATE(4239)] = 157502, - [SMALL_STATE(4240)] = 157519, - [SMALL_STATE(4241)] = 157536, - [SMALL_STATE(4242)] = 157553, - [SMALL_STATE(4243)] = 157570, - [SMALL_STATE(4244)] = 157587, - [SMALL_STATE(4245)] = 157604, - [SMALL_STATE(4246)] = 157621, - [SMALL_STATE(4247)] = 157638, - [SMALL_STATE(4248)] = 157655, - [SMALL_STATE(4249)] = 157672, - [SMALL_STATE(4250)] = 157689, - [SMALL_STATE(4251)] = 157706, - [SMALL_STATE(4252)] = 157723, - [SMALL_STATE(4253)] = 157740, - [SMALL_STATE(4254)] = 157757, - [SMALL_STATE(4255)] = 157774, - [SMALL_STATE(4256)] = 157791, - [SMALL_STATE(4257)] = 157808, - [SMALL_STATE(4258)] = 157825, - [SMALL_STATE(4259)] = 157842, - [SMALL_STATE(4260)] = 157859, - [SMALL_STATE(4261)] = 157876, - [SMALL_STATE(4262)] = 157893, - [SMALL_STATE(4263)] = 157910, - [SMALL_STATE(4264)] = 157927, - [SMALL_STATE(4265)] = 157944, - [SMALL_STATE(4266)] = 157961, - [SMALL_STATE(4267)] = 157978, - [SMALL_STATE(4268)] = 157995, - [SMALL_STATE(4269)] = 158012, - [SMALL_STATE(4270)] = 158029, - [SMALL_STATE(4271)] = 158046, - [SMALL_STATE(4272)] = 158063, - [SMALL_STATE(4273)] = 158080, - [SMALL_STATE(4274)] = 158097, - [SMALL_STATE(4275)] = 158114, - [SMALL_STATE(4276)] = 158131, - [SMALL_STATE(4277)] = 158148, - [SMALL_STATE(4278)] = 158165, - [SMALL_STATE(4279)] = 158182, - [SMALL_STATE(4280)] = 158199, - [SMALL_STATE(4281)] = 158216, - [SMALL_STATE(4282)] = 158233, - [SMALL_STATE(4283)] = 158250, - [SMALL_STATE(4284)] = 158267, - [SMALL_STATE(4285)] = 158284, - [SMALL_STATE(4286)] = 158301, - [SMALL_STATE(4287)] = 158318, - [SMALL_STATE(4288)] = 158335, - [SMALL_STATE(4289)] = 158352, - [SMALL_STATE(4290)] = 158369, - [SMALL_STATE(4291)] = 158386, - [SMALL_STATE(4292)] = 158403, - [SMALL_STATE(4293)] = 158420, - [SMALL_STATE(4294)] = 158437, - [SMALL_STATE(4295)] = 158454, - [SMALL_STATE(4296)] = 158471, - [SMALL_STATE(4297)] = 158488, - [SMALL_STATE(4298)] = 158505, - [SMALL_STATE(4299)] = 158522, - [SMALL_STATE(4300)] = 158539, - [SMALL_STATE(4301)] = 158556, - [SMALL_STATE(4302)] = 158573, - [SMALL_STATE(4303)] = 158590, - [SMALL_STATE(4304)] = 158607, - [SMALL_STATE(4305)] = 158624, - [SMALL_STATE(4306)] = 158641, - [SMALL_STATE(4307)] = 158658, - [SMALL_STATE(4308)] = 158675, - [SMALL_STATE(4309)] = 158692, - [SMALL_STATE(4310)] = 158709, - [SMALL_STATE(4311)] = 158726, - [SMALL_STATE(4312)] = 158743, - [SMALL_STATE(4313)] = 158760, - [SMALL_STATE(4314)] = 158777, - [SMALL_STATE(4315)] = 158794, - [SMALL_STATE(4316)] = 158811, - [SMALL_STATE(4317)] = 158828, - [SMALL_STATE(4318)] = 158845, - [SMALL_STATE(4319)] = 158862, - [SMALL_STATE(4320)] = 158879, - [SMALL_STATE(4321)] = 158896, - [SMALL_STATE(4322)] = 158913, - [SMALL_STATE(4323)] = 158930, - [SMALL_STATE(4324)] = 158947, - [SMALL_STATE(4325)] = 158964, - [SMALL_STATE(4326)] = 158981, - [SMALL_STATE(4327)] = 158998, - [SMALL_STATE(4328)] = 159015, - [SMALL_STATE(4329)] = 159032, - [SMALL_STATE(4330)] = 159049, - [SMALL_STATE(4331)] = 159066, - [SMALL_STATE(4332)] = 159083, - [SMALL_STATE(4333)] = 159100, - [SMALL_STATE(4334)] = 159117, - [SMALL_STATE(4335)] = 159134, - [SMALL_STATE(4336)] = 159151, - [SMALL_STATE(4337)] = 159168, - [SMALL_STATE(4338)] = 159185, - [SMALL_STATE(4339)] = 159202, - [SMALL_STATE(4340)] = 159219, - [SMALL_STATE(4341)] = 159236, - [SMALL_STATE(4342)] = 159253, - [SMALL_STATE(4343)] = 159270, - [SMALL_STATE(4344)] = 159287, - [SMALL_STATE(4345)] = 159304, - [SMALL_STATE(4346)] = 159321, - [SMALL_STATE(4347)] = 159338, - [SMALL_STATE(4348)] = 159355, - [SMALL_STATE(4349)] = 159372, - [SMALL_STATE(4350)] = 159389, - [SMALL_STATE(4351)] = 159406, - [SMALL_STATE(4352)] = 159423, - [SMALL_STATE(4353)] = 159440, - [SMALL_STATE(4354)] = 159457, - [SMALL_STATE(4355)] = 159474, - [SMALL_STATE(4356)] = 159491, - [SMALL_STATE(4357)] = 159508, - [SMALL_STATE(4358)] = 159525, - [SMALL_STATE(4359)] = 159542, - [SMALL_STATE(4360)] = 159559, - [SMALL_STATE(4361)] = 159576, - [SMALL_STATE(4362)] = 159593, - [SMALL_STATE(4363)] = 159610, - [SMALL_STATE(4364)] = 159627, - [SMALL_STATE(4365)] = 159644, - [SMALL_STATE(4366)] = 159661, - [SMALL_STATE(4367)] = 159678, - [SMALL_STATE(4368)] = 159695, - [SMALL_STATE(4369)] = 159712, - [SMALL_STATE(4370)] = 159729, - [SMALL_STATE(4371)] = 159746, - [SMALL_STATE(4372)] = 159763, - [SMALL_STATE(4373)] = 159780, - [SMALL_STATE(4374)] = 159797, - [SMALL_STATE(4375)] = 159814, - [SMALL_STATE(4376)] = 159831, - [SMALL_STATE(4377)] = 159848, - [SMALL_STATE(4378)] = 159865, - [SMALL_STATE(4379)] = 159882, - [SMALL_STATE(4380)] = 159899, - [SMALL_STATE(4381)] = 159916, - [SMALL_STATE(4382)] = 159933, - [SMALL_STATE(4383)] = 159950, - [SMALL_STATE(4384)] = 159967, - [SMALL_STATE(4385)] = 159984, - [SMALL_STATE(4386)] = 160001, - [SMALL_STATE(4387)] = 160018, - [SMALL_STATE(4388)] = 160035, - [SMALL_STATE(4389)] = 160052, - [SMALL_STATE(4390)] = 160069, - [SMALL_STATE(4391)] = 160086, - [SMALL_STATE(4392)] = 160103, - [SMALL_STATE(4393)] = 160120, - [SMALL_STATE(4394)] = 160137, - [SMALL_STATE(4395)] = 160154, - [SMALL_STATE(4396)] = 160171, - [SMALL_STATE(4397)] = 160188, - [SMALL_STATE(4398)] = 160205, - [SMALL_STATE(4399)] = 160222, - [SMALL_STATE(4400)] = 160239, - [SMALL_STATE(4401)] = 160256, - [SMALL_STATE(4402)] = 160273, - [SMALL_STATE(4403)] = 160290, - [SMALL_STATE(4404)] = 160307, - [SMALL_STATE(4405)] = 160324, - [SMALL_STATE(4406)] = 160341, - [SMALL_STATE(4407)] = 160358, - [SMALL_STATE(4408)] = 160375, - [SMALL_STATE(4409)] = 160392, - [SMALL_STATE(4410)] = 160409, - [SMALL_STATE(4411)] = 160426, - [SMALL_STATE(4412)] = 160443, - [SMALL_STATE(4413)] = 160460, - [SMALL_STATE(4414)] = 160477, - [SMALL_STATE(4415)] = 160494, - [SMALL_STATE(4416)] = 160511, - [SMALL_STATE(4417)] = 160528, - [SMALL_STATE(4418)] = 160545, - [SMALL_STATE(4419)] = 160562, - [SMALL_STATE(4420)] = 160579, - [SMALL_STATE(4421)] = 160596, - [SMALL_STATE(4422)] = 160613, - [SMALL_STATE(4423)] = 160630, - [SMALL_STATE(4424)] = 160647, - [SMALL_STATE(4425)] = 160664, - [SMALL_STATE(4426)] = 160681, - [SMALL_STATE(4427)] = 160698, - [SMALL_STATE(4428)] = 160715, - [SMALL_STATE(4429)] = 160732, - [SMALL_STATE(4430)] = 160749, - [SMALL_STATE(4431)] = 160766, - [SMALL_STATE(4432)] = 160783, - [SMALL_STATE(4433)] = 160800, - [SMALL_STATE(4434)] = 160817, - [SMALL_STATE(4435)] = 160834, - [SMALL_STATE(4436)] = 160851, - [SMALL_STATE(4437)] = 160868, - [SMALL_STATE(4438)] = 160885, - [SMALL_STATE(4439)] = 160902, - [SMALL_STATE(4440)] = 160919, - [SMALL_STATE(4441)] = 160936, - [SMALL_STATE(4442)] = 160953, - [SMALL_STATE(4443)] = 160970, - [SMALL_STATE(4444)] = 160987, - [SMALL_STATE(4445)] = 161004, - [SMALL_STATE(4446)] = 161021, - [SMALL_STATE(4447)] = 161038, - [SMALL_STATE(4448)] = 161055, - [SMALL_STATE(4449)] = 161072, - [SMALL_STATE(4450)] = 161089, - [SMALL_STATE(4451)] = 161106, - [SMALL_STATE(4452)] = 161123, - [SMALL_STATE(4453)] = 161140, - [SMALL_STATE(4454)] = 161157, - [SMALL_STATE(4455)] = 161174, - [SMALL_STATE(4456)] = 161191, - [SMALL_STATE(4457)] = 161208, - [SMALL_STATE(4458)] = 161225, - [SMALL_STATE(4459)] = 161242, - [SMALL_STATE(4460)] = 161259, - [SMALL_STATE(4461)] = 161276, - [SMALL_STATE(4462)] = 161293, - [SMALL_STATE(4463)] = 161310, - [SMALL_STATE(4464)] = 161327, - [SMALL_STATE(4465)] = 161344, - [SMALL_STATE(4466)] = 161361, - [SMALL_STATE(4467)] = 161378, - [SMALL_STATE(4468)] = 161395, - [SMALL_STATE(4469)] = 161412, - [SMALL_STATE(4470)] = 161429, - [SMALL_STATE(4471)] = 161446, - [SMALL_STATE(4472)] = 161463, - [SMALL_STATE(4473)] = 161480, - [SMALL_STATE(4474)] = 161497, - [SMALL_STATE(4475)] = 161514, - [SMALL_STATE(4476)] = 161531, - [SMALL_STATE(4477)] = 161548, - [SMALL_STATE(4478)] = 161565, - [SMALL_STATE(4479)] = 161582, - [SMALL_STATE(4480)] = 161599, - [SMALL_STATE(4481)] = 161616, - [SMALL_STATE(4482)] = 161633, - [SMALL_STATE(4483)] = 161650, - [SMALL_STATE(4484)] = 161667, - [SMALL_STATE(4485)] = 161684, - [SMALL_STATE(4486)] = 161701, - [SMALL_STATE(4487)] = 161718, - [SMALL_STATE(4488)] = 161735, - [SMALL_STATE(4489)] = 161752, - [SMALL_STATE(4490)] = 161769, - [SMALL_STATE(4491)] = 161786, - [SMALL_STATE(4492)] = 161803, - [SMALL_STATE(4493)] = 161820, - [SMALL_STATE(4494)] = 161837, - [SMALL_STATE(4495)] = 161854, - [SMALL_STATE(4496)] = 161871, - [SMALL_STATE(4497)] = 161888, - [SMALL_STATE(4498)] = 161905, - [SMALL_STATE(4499)] = 161922, - [SMALL_STATE(4500)] = 161939, - [SMALL_STATE(4501)] = 161956, - [SMALL_STATE(4502)] = 161973, - [SMALL_STATE(4503)] = 161990, - [SMALL_STATE(4504)] = 162007, - [SMALL_STATE(4505)] = 162024, - [SMALL_STATE(4506)] = 162041, - [SMALL_STATE(4507)] = 162058, - [SMALL_STATE(4508)] = 162075, - [SMALL_STATE(4509)] = 162092, - [SMALL_STATE(4510)] = 162109, - [SMALL_STATE(4511)] = 162126, - [SMALL_STATE(4512)] = 162143, - [SMALL_STATE(4513)] = 162160, - [SMALL_STATE(4514)] = 162177, - [SMALL_STATE(4515)] = 162194, - [SMALL_STATE(4516)] = 162211, - [SMALL_STATE(4517)] = 162228, - [SMALL_STATE(4518)] = 162245, - [SMALL_STATE(4519)] = 162262, - [SMALL_STATE(4520)] = 162279, - [SMALL_STATE(4521)] = 162296, - [SMALL_STATE(4522)] = 162313, - [SMALL_STATE(4523)] = 162330, - [SMALL_STATE(4524)] = 162347, - [SMALL_STATE(4525)] = 162364, - [SMALL_STATE(4526)] = 162381, - [SMALL_STATE(4527)] = 162398, - [SMALL_STATE(4528)] = 162415, - [SMALL_STATE(4529)] = 162432, - [SMALL_STATE(4530)] = 162449, - [SMALL_STATE(4531)] = 162466, - [SMALL_STATE(4532)] = 162483, - [SMALL_STATE(4533)] = 162500, - [SMALL_STATE(4534)] = 162517, - [SMALL_STATE(4535)] = 162534, - [SMALL_STATE(4536)] = 162551, - [SMALL_STATE(4537)] = 162568, - [SMALL_STATE(4538)] = 162585, - [SMALL_STATE(4539)] = 162602, - [SMALL_STATE(4540)] = 162619, - [SMALL_STATE(4541)] = 162636, - [SMALL_STATE(4542)] = 162653, - [SMALL_STATE(4543)] = 162670, - [SMALL_STATE(4544)] = 162687, - [SMALL_STATE(4545)] = 162704, - [SMALL_STATE(4546)] = 162721, - [SMALL_STATE(4547)] = 162738, - [SMALL_STATE(4548)] = 162755, - [SMALL_STATE(4549)] = 162772, - [SMALL_STATE(4550)] = 162789, - [SMALL_STATE(4551)] = 162806, - [SMALL_STATE(4552)] = 162823, - [SMALL_STATE(4553)] = 162840, - [SMALL_STATE(4554)] = 162857, - [SMALL_STATE(4555)] = 162874, - [SMALL_STATE(4556)] = 162891, - [SMALL_STATE(4557)] = 162908, - [SMALL_STATE(4558)] = 162925, - [SMALL_STATE(4559)] = 162942, - [SMALL_STATE(4560)] = 162959, - [SMALL_STATE(4561)] = 162976, - [SMALL_STATE(4562)] = 162993, - [SMALL_STATE(4563)] = 163010, - [SMALL_STATE(4564)] = 163027, - [SMALL_STATE(4565)] = 163044, - [SMALL_STATE(4566)] = 163061, - [SMALL_STATE(4567)] = 163078, - [SMALL_STATE(4568)] = 163095, - [SMALL_STATE(4569)] = 163112, - [SMALL_STATE(4570)] = 163129, - [SMALL_STATE(4571)] = 163146, - [SMALL_STATE(4572)] = 163163, - [SMALL_STATE(4573)] = 163180, - [SMALL_STATE(4574)] = 163197, - [SMALL_STATE(4575)] = 163214, - [SMALL_STATE(4576)] = 163231, - [SMALL_STATE(4577)] = 163248, - [SMALL_STATE(4578)] = 163265, - [SMALL_STATE(4579)] = 163282, - [SMALL_STATE(4580)] = 163299, - [SMALL_STATE(4581)] = 163316, - [SMALL_STATE(4582)] = 163333, - [SMALL_STATE(4583)] = 163350, - [SMALL_STATE(4584)] = 163367, - [SMALL_STATE(4585)] = 163384, - [SMALL_STATE(4586)] = 163401, - [SMALL_STATE(4587)] = 163418, - [SMALL_STATE(4588)] = 163435, - [SMALL_STATE(4589)] = 163452, - [SMALL_STATE(4590)] = 163469, - [SMALL_STATE(4591)] = 163486, - [SMALL_STATE(4592)] = 163503, - [SMALL_STATE(4593)] = 163520, - [SMALL_STATE(4594)] = 163537, - [SMALL_STATE(4595)] = 163554, - [SMALL_STATE(4596)] = 163571, - [SMALL_STATE(4597)] = 163588, - [SMALL_STATE(4598)] = 163605, - [SMALL_STATE(4599)] = 163622, - [SMALL_STATE(4600)] = 163639, - [SMALL_STATE(4601)] = 163656, - [SMALL_STATE(4602)] = 163673, - [SMALL_STATE(4603)] = 163690, - [SMALL_STATE(4604)] = 163707, - [SMALL_STATE(4605)] = 163724, - [SMALL_STATE(4606)] = 163741, - [SMALL_STATE(4607)] = 163758, - [SMALL_STATE(4608)] = 163775, - [SMALL_STATE(4609)] = 163792, - [SMALL_STATE(4610)] = 163809, - [SMALL_STATE(4611)] = 163826, - [SMALL_STATE(4612)] = 163843, - [SMALL_STATE(4613)] = 163860, - [SMALL_STATE(4614)] = 163877, - [SMALL_STATE(4615)] = 163894, - [SMALL_STATE(4616)] = 163911, - [SMALL_STATE(4617)] = 163928, - [SMALL_STATE(4618)] = 163945, - [SMALL_STATE(4619)] = 163962, - [SMALL_STATE(4620)] = 163979, - [SMALL_STATE(4621)] = 163996, - [SMALL_STATE(4622)] = 164013, - [SMALL_STATE(4623)] = 164030, - [SMALL_STATE(4624)] = 164047, - [SMALL_STATE(4625)] = 164064, - [SMALL_STATE(4626)] = 164081, - [SMALL_STATE(4627)] = 164098, - [SMALL_STATE(4628)] = 164115, - [SMALL_STATE(4629)] = 164132, - [SMALL_STATE(4630)] = 164149, - [SMALL_STATE(4631)] = 164166, - [SMALL_STATE(4632)] = 164183, - [SMALL_STATE(4633)] = 164200, - [SMALL_STATE(4634)] = 164217, - [SMALL_STATE(4635)] = 164234, - [SMALL_STATE(4636)] = 164251, - [SMALL_STATE(4637)] = 164268, - [SMALL_STATE(4638)] = 164285, - [SMALL_STATE(4639)] = 164302, - [SMALL_STATE(4640)] = 164319, - [SMALL_STATE(4641)] = 164336, - [SMALL_STATE(4642)] = 164353, - [SMALL_STATE(4643)] = 164370, - [SMALL_STATE(4644)] = 164387, - [SMALL_STATE(4645)] = 164404, - [SMALL_STATE(4646)] = 164421, - [SMALL_STATE(4647)] = 164438, - [SMALL_STATE(4648)] = 164455, - [SMALL_STATE(4649)] = 164472, - [SMALL_STATE(4650)] = 164489, - [SMALL_STATE(4651)] = 164506, - [SMALL_STATE(4652)] = 164523, - [SMALL_STATE(4653)] = 164540, - [SMALL_STATE(4654)] = 164557, - [SMALL_STATE(4655)] = 164574, - [SMALL_STATE(4656)] = 164591, - [SMALL_STATE(4657)] = 164608, - [SMALL_STATE(4658)] = 164625, - [SMALL_STATE(4659)] = 164642, - [SMALL_STATE(4660)] = 164659, - [SMALL_STATE(4661)] = 164676, - [SMALL_STATE(4662)] = 164693, - [SMALL_STATE(4663)] = 164710, - [SMALL_STATE(4664)] = 164727, - [SMALL_STATE(4665)] = 164744, - [SMALL_STATE(4666)] = 164761, - [SMALL_STATE(4667)] = 164778, - [SMALL_STATE(4668)] = 164795, - [SMALL_STATE(4669)] = 164812, - [SMALL_STATE(4670)] = 164829, - [SMALL_STATE(4671)] = 164846, - [SMALL_STATE(4672)] = 164863, - [SMALL_STATE(4673)] = 164880, - [SMALL_STATE(4674)] = 164897, - [SMALL_STATE(4675)] = 164914, - [SMALL_STATE(4676)] = 164931, - [SMALL_STATE(4677)] = 164948, - [SMALL_STATE(4678)] = 164965, - [SMALL_STATE(4679)] = 164982, - [SMALL_STATE(4680)] = 164999, - [SMALL_STATE(4681)] = 165016, - [SMALL_STATE(4682)] = 165033, - [SMALL_STATE(4683)] = 165050, - [SMALL_STATE(4684)] = 165067, - [SMALL_STATE(4685)] = 165084, - [SMALL_STATE(4686)] = 165101, - [SMALL_STATE(4687)] = 165118, - [SMALL_STATE(4688)] = 165135, - [SMALL_STATE(4689)] = 165152, - [SMALL_STATE(4690)] = 165169, - [SMALL_STATE(4691)] = 165186, - [SMALL_STATE(4692)] = 165203, - [SMALL_STATE(4693)] = 165220, - [SMALL_STATE(4694)] = 165237, - [SMALL_STATE(4695)] = 165254, - [SMALL_STATE(4696)] = 165271, - [SMALL_STATE(4697)] = 165288, - [SMALL_STATE(4698)] = 165305, - [SMALL_STATE(4699)] = 165322, - [SMALL_STATE(4700)] = 165339, - [SMALL_STATE(4701)] = 165356, - [SMALL_STATE(4702)] = 165373, - [SMALL_STATE(4703)] = 165390, - [SMALL_STATE(4704)] = 165407, - [SMALL_STATE(4705)] = 165424, - [SMALL_STATE(4706)] = 165441, - [SMALL_STATE(4707)] = 165458, - [SMALL_STATE(4708)] = 165475, - [SMALL_STATE(4709)] = 165492, - [SMALL_STATE(4710)] = 165509, - [SMALL_STATE(4711)] = 165526, - [SMALL_STATE(4712)] = 165543, - [SMALL_STATE(4713)] = 165560, - [SMALL_STATE(4714)] = 165577, - [SMALL_STATE(4715)] = 165594, - [SMALL_STATE(4716)] = 165598, - [SMALL_STATE(4717)] = 165602, - [SMALL_STATE(4718)] = 165606, + [SMALL_STATE(1954)] = 99035, + [SMALL_STATE(1955)] = 99081, + [SMALL_STATE(1956)] = 99127, + [SMALL_STATE(1957)] = 99165, + [SMALL_STATE(1958)] = 99207, + [SMALL_STATE(1959)] = 99245, + [SMALL_STATE(1960)] = 99291, + [SMALL_STATE(1961)] = 99333, + [SMALL_STATE(1962)] = 99375, + [SMALL_STATE(1963)] = 99413, + [SMALL_STATE(1964)] = 99459, + [SMALL_STATE(1965)] = 99505, + [SMALL_STATE(1966)] = 99543, + [SMALL_STATE(1967)] = 99589, + [SMALL_STATE(1968)] = 99635, + [SMALL_STATE(1969)] = 99677, + [SMALL_STATE(1970)] = 99715, + [SMALL_STATE(1971)] = 99757, + [SMALL_STATE(1972)] = 99795, + [SMALL_STATE(1973)] = 99841, + [SMALL_STATE(1974)] = 99871, + [SMALL_STATE(1975)] = 99917, + [SMALL_STATE(1976)] = 99963, + [SMALL_STATE(1977)] = 100011, + [SMALL_STATE(1978)] = 100049, + [SMALL_STATE(1979)] = 100085, + [SMALL_STATE(1980)] = 100127, + [SMALL_STATE(1981)] = 100169, + [SMALL_STATE(1982)] = 100211, + [SMALL_STATE(1983)] = 100259, + [SMALL_STATE(1984)] = 100307, + [SMALL_STATE(1985)] = 100349, + [SMALL_STATE(1986)] = 100395, + [SMALL_STATE(1987)] = 100441, + [SMALL_STATE(1988)] = 100487, + [SMALL_STATE(1989)] = 100533, + [SMALL_STATE(1990)] = 100579, + [SMALL_STATE(1991)] = 100627, + [SMALL_STATE(1992)] = 100665, + [SMALL_STATE(1993)] = 100711, + [SMALL_STATE(1994)] = 100759, + [SMALL_STATE(1995)] = 100805, + [SMALL_STATE(1996)] = 100851, + [SMALL_STATE(1997)] = 100897, + [SMALL_STATE(1998)] = 100929, + [SMALL_STATE(1999)] = 100975, + [SMALL_STATE(2000)] = 101013, + [SMALL_STATE(2001)] = 101051, + [SMALL_STATE(2002)] = 101097, + [SMALL_STATE(2003)] = 101143, + [SMALL_STATE(2004)] = 101191, + [SMALL_STATE(2005)] = 101229, + [SMALL_STATE(2006)] = 101259, + [SMALL_STATE(2007)] = 101305, + [SMALL_STATE(2008)] = 101337, + [SMALL_STATE(2009)] = 101385, + [SMALL_STATE(2010)] = 101431, + [SMALL_STATE(2011)] = 101477, + [SMALL_STATE(2012)] = 101515, + [SMALL_STATE(2013)] = 101561, + [SMALL_STATE(2014)] = 101595, + [SMALL_STATE(2015)] = 101633, + [SMALL_STATE(2016)] = 101679, + [SMALL_STATE(2017)] = 101707, + [SMALL_STATE(2018)] = 101755, + [SMALL_STATE(2019)] = 101793, + [SMALL_STATE(2020)] = 101839, + [SMALL_STATE(2021)] = 101877, + [SMALL_STATE(2022)] = 101925, + [SMALL_STATE(2023)] = 101973, + [SMALL_STATE(2024)] = 102020, + [SMALL_STATE(2025)] = 102067, + [SMALL_STATE(2026)] = 102114, + [SMALL_STATE(2027)] = 102153, + [SMALL_STATE(2028)] = 102188, + [SMALL_STATE(2029)] = 102225, + [SMALL_STATE(2030)] = 102260, + [SMALL_STATE(2031)] = 102297, + [SMALL_STATE(2032)] = 102332, + [SMALL_STATE(2033)] = 102361, + [SMALL_STATE(2034)] = 102398, + [SMALL_STATE(2035)] = 102435, + [SMALL_STATE(2036)] = 102464, + [SMALL_STATE(2037)] = 102511, + [SMALL_STATE(2038)] = 102550, + [SMALL_STATE(2039)] = 102597, + [SMALL_STATE(2040)] = 102636, + [SMALL_STATE(2041)] = 102665, + [SMALL_STATE(2042)] = 102694, + [SMALL_STATE(2043)] = 102741, + [SMALL_STATE(2044)] = 102788, + [SMALL_STATE(2045)] = 102835, + [SMALL_STATE(2046)] = 102864, + [SMALL_STATE(2047)] = 102911, + [SMALL_STATE(2048)] = 102958, + [SMALL_STATE(2049)] = 103005, + [SMALL_STATE(2050)] = 103044, + [SMALL_STATE(2051)] = 103091, + [SMALL_STATE(2052)] = 103138, + [SMALL_STATE(2053)] = 103177, + [SMALL_STATE(2054)] = 103224, + [SMALL_STATE(2055)] = 103271, + [SMALL_STATE(2056)] = 103310, + [SMALL_STATE(2057)] = 103349, + [SMALL_STATE(2058)] = 103378, + [SMALL_STATE(2059)] = 103407, + [SMALL_STATE(2060)] = 103446, + [SMALL_STATE(2061)] = 103493, + [SMALL_STATE(2062)] = 103532, + [SMALL_STATE(2063)] = 103579, + [SMALL_STATE(2064)] = 103626, + [SMALL_STATE(2065)] = 103673, + [SMALL_STATE(2066)] = 103712, + [SMALL_STATE(2067)] = 103751, + [SMALL_STATE(2068)] = 103798, + [SMALL_STATE(2069)] = 103845, + [SMALL_STATE(2070)] = 103872, + [SMALL_STATE(2071)] = 103911, + [SMALL_STATE(2072)] = 103942, + [SMALL_STATE(2073)] = 103971, + [SMALL_STATE(2074)] = 104018, + [SMALL_STATE(2075)] = 104065, + [SMALL_STATE(2076)] = 104104, + [SMALL_STATE(2077)] = 104143, + [SMALL_STATE(2078)] = 104190, + [SMALL_STATE(2079)] = 104237, + [SMALL_STATE(2080)] = 104276, + [SMALL_STATE(2081)] = 104323, + [SMALL_STATE(2082)] = 104370, + [SMALL_STATE(2083)] = 104409, + [SMALL_STATE(2084)] = 104456, + [SMALL_STATE(2085)] = 104495, + [SMALL_STATE(2086)] = 104524, + [SMALL_STATE(2087)] = 104553, + [SMALL_STATE(2088)] = 104592, + [SMALL_STATE(2089)] = 104621, + [SMALL_STATE(2090)] = 104668, + [SMALL_STATE(2091)] = 104707, + [SMALL_STATE(2092)] = 104736, + [SMALL_STATE(2093)] = 104783, + [SMALL_STATE(2094)] = 104830, + [SMALL_STATE(2095)] = 104869, + [SMALL_STATE(2096)] = 104916, + [SMALL_STATE(2097)] = 104945, + [SMALL_STATE(2098)] = 104992, + [SMALL_STATE(2099)] = 105039, + [SMALL_STATE(2100)] = 105066, + [SMALL_STATE(2101)] = 105113, + [SMALL_STATE(2102)] = 105160, + [SMALL_STATE(2103)] = 105207, + [SMALL_STATE(2104)] = 105246, + [SMALL_STATE(2105)] = 105293, + [SMALL_STATE(2106)] = 105322, + [SMALL_STATE(2107)] = 105361, + [SMALL_STATE(2108)] = 105408, + [SMALL_STATE(2109)] = 105455, + [SMALL_STATE(2110)] = 105492, + [SMALL_STATE(2111)] = 105529, + [SMALL_STATE(2112)] = 105576, + [SMALL_STATE(2113)] = 105623, + [SMALL_STATE(2114)] = 105652, + [SMALL_STATE(2115)] = 105691, + [SMALL_STATE(2116)] = 105730, + [SMALL_STATE(2117)] = 105769, + [SMALL_STATE(2118)] = 105816, + [SMALL_STATE(2119)] = 105855, + [SMALL_STATE(2120)] = 105902, + [SMALL_STATE(2121)] = 105949, + [SMALL_STATE(2122)] = 105978, + [SMALL_STATE(2123)] = 106005, + [SMALL_STATE(2124)] = 106040, + [SMALL_STATE(2125)] = 106067, + [SMALL_STATE(2126)] = 106114, + [SMALL_STATE(2127)] = 106161, + [SMALL_STATE(2128)] = 106200, + [SMALL_STATE(2129)] = 106247, + [SMALL_STATE(2130)] = 106274, + [SMALL_STATE(2131)] = 106313, + [SMALL_STATE(2132)] = 106352, + [SMALL_STATE(2133)] = 106399, + [SMALL_STATE(2134)] = 106438, + [SMALL_STATE(2135)] = 106467, + [SMALL_STATE(2136)] = 106514, + [SMALL_STATE(2137)] = 106554, + [SMALL_STATE(2138)] = 106594, + [SMALL_STATE(2139)] = 106634, + [SMALL_STATE(2140)] = 106660, + [SMALL_STATE(2141)] = 106704, + [SMALL_STATE(2142)] = 106744, + [SMALL_STATE(2143)] = 106784, + [SMALL_STATE(2144)] = 106824, + [SMALL_STATE(2145)] = 106850, + [SMALL_STATE(2146)] = 106888, + [SMALL_STATE(2147)] = 106916, + [SMALL_STATE(2148)] = 106944, + [SMALL_STATE(2149)] = 106984, + [SMALL_STATE(2150)] = 107012, + [SMALL_STATE(2151)] = 107052, + [SMALL_STATE(2152)] = 107092, + [SMALL_STATE(2153)] = 107120, + [SMALL_STATE(2154)] = 107164, + [SMALL_STATE(2155)] = 107208, + [SMALL_STATE(2156)] = 107246, + [SMALL_STATE(2157)] = 107288, + [SMALL_STATE(2158)] = 107328, + [SMALL_STATE(2159)] = 107356, + [SMALL_STATE(2160)] = 107400, + [SMALL_STATE(2161)] = 107444, + [SMALL_STATE(2162)] = 107472, + [SMALL_STATE(2163)] = 107498, + [SMALL_STATE(2164)] = 107542, + [SMALL_STATE(2165)] = 107586, + [SMALL_STATE(2166)] = 107630, + [SMALL_STATE(2167)] = 107668, + [SMALL_STATE(2168)] = 107708, + [SMALL_STATE(2169)] = 107748, + [SMALL_STATE(2170)] = 107792, + [SMALL_STATE(2171)] = 107836, + [SMALL_STATE(2172)] = 107874, + [SMALL_STATE(2173)] = 107900, + [SMALL_STATE(2174)] = 107928, + [SMALL_STATE(2175)] = 107970, + [SMALL_STATE(2176)] = 108000, + [SMALL_STATE(2177)] = 108036, + [SMALL_STATE(2178)] = 108076, + [SMALL_STATE(2179)] = 108116, + [SMALL_STATE(2180)] = 108150, + [SMALL_STATE(2181)] = 108194, + [SMALL_STATE(2182)] = 108236, + [SMALL_STATE(2183)] = 108276, + [SMALL_STATE(2184)] = 108318, + [SMALL_STATE(2185)] = 108358, + [SMALL_STATE(2186)] = 108400, + [SMALL_STATE(2187)] = 108438, + [SMALL_STATE(2188)] = 108478, + [SMALL_STATE(2189)] = 108506, + [SMALL_STATE(2190)] = 108546, + [SMALL_STATE(2191)] = 108586, + [SMALL_STATE(2192)] = 108630, + [SMALL_STATE(2193)] = 108670, + [SMALL_STATE(2194)] = 108710, + [SMALL_STATE(2195)] = 108750, + [SMALL_STATE(2196)] = 108790, + [SMALL_STATE(2197)] = 108830, + [SMALL_STATE(2198)] = 108874, + [SMALL_STATE(2199)] = 108914, + [SMALL_STATE(2200)] = 108958, + [SMALL_STATE(2201)] = 108998, + [SMALL_STATE(2202)] = 109038, + [SMALL_STATE(2203)] = 109078, + [SMALL_STATE(2204)] = 109118, + [SMALL_STATE(2205)] = 109158, + [SMALL_STATE(2206)] = 109196, + [SMALL_STATE(2207)] = 109236, + [SMALL_STATE(2208)] = 109274, + [SMALL_STATE(2209)] = 109314, + [SMALL_STATE(2210)] = 109342, + [SMALL_STATE(2211)] = 109386, + [SMALL_STATE(2212)] = 109414, + [SMALL_STATE(2213)] = 109454, + [SMALL_STATE(2214)] = 109482, + [SMALL_STATE(2215)] = 109522, + [SMALL_STATE(2216)] = 109552, + [SMALL_STATE(2217)] = 109592, + [SMALL_STATE(2218)] = 109618, + [SMALL_STATE(2219)] = 109651, + [SMALL_STATE(2220)] = 109684, + [SMALL_STATE(2221)] = 109711, + [SMALL_STATE(2222)] = 109740, + [SMALL_STATE(2223)] = 109773, + [SMALL_STATE(2224)] = 109800, + [SMALL_STATE(2225)] = 109833, + [SMALL_STATE(2226)] = 109862, + [SMALL_STATE(2227)] = 109895, + [SMALL_STATE(2228)] = 109928, + [SMALL_STATE(2229)] = 109961, + [SMALL_STATE(2230)] = 109994, + [SMALL_STATE(2231)] = 110021, + [SMALL_STATE(2232)] = 110054, + [SMALL_STATE(2233)] = 110087, + [SMALL_STATE(2234)] = 110120, + [SMALL_STATE(2235)] = 110153, + [SMALL_STATE(2236)] = 110184, + [SMALL_STATE(2237)] = 110217, + [SMALL_STATE(2238)] = 110252, + [SMALL_STATE(2239)] = 110285, + [SMALL_STATE(2240)] = 110318, + [SMALL_STATE(2241)] = 110351, + [SMALL_STATE(2242)] = 110384, + [SMALL_STATE(2243)] = 110417, + [SMALL_STATE(2244)] = 110452, + [SMALL_STATE(2245)] = 110485, + [SMALL_STATE(2246)] = 110518, + [SMALL_STATE(2247)] = 110551, + [SMALL_STATE(2248)] = 110584, + [SMALL_STATE(2249)] = 110617, + [SMALL_STATE(2250)] = 110650, + [SMALL_STATE(2251)] = 110683, + [SMALL_STATE(2252)] = 110716, + [SMALL_STATE(2253)] = 110749, + [SMALL_STATE(2254)] = 110782, + [SMALL_STATE(2255)] = 110815, + [SMALL_STATE(2256)] = 110848, + [SMALL_STATE(2257)] = 110881, + [SMALL_STATE(2258)] = 110914, + [SMALL_STATE(2259)] = 110947, + [SMALL_STATE(2260)] = 110980, + [SMALL_STATE(2261)] = 111013, + [SMALL_STATE(2262)] = 111046, + [SMALL_STATE(2263)] = 111079, + [SMALL_STATE(2264)] = 111112, + [SMALL_STATE(2265)] = 111145, + [SMALL_STATE(2266)] = 111172, + [SMALL_STATE(2267)] = 111197, + [SMALL_STATE(2268)] = 111230, + [SMALL_STATE(2269)] = 111263, + [SMALL_STATE(2270)] = 111296, + [SMALL_STATE(2271)] = 111329, + [SMALL_STATE(2272)] = 111362, + [SMALL_STATE(2273)] = 111395, + [SMALL_STATE(2274)] = 111428, + [SMALL_STATE(2275)] = 111461, + [SMALL_STATE(2276)] = 111494, + [SMALL_STATE(2277)] = 111519, + [SMALL_STATE(2278)] = 111552, + [SMALL_STATE(2279)] = 111585, + [SMALL_STATE(2280)] = 111618, + [SMALL_STATE(2281)] = 111651, + [SMALL_STATE(2282)] = 111682, + [SMALL_STATE(2283)] = 111715, + [SMALL_STATE(2284)] = 111740, + [SMALL_STATE(2285)] = 111773, + [SMALL_STATE(2286)] = 111806, + [SMALL_STATE(2287)] = 111839, + [SMALL_STATE(2288)] = 111872, + [SMALL_STATE(2289)] = 111905, + [SMALL_STATE(2290)] = 111938, + [SMALL_STATE(2291)] = 111971, + [SMALL_STATE(2292)] = 112004, + [SMALL_STATE(2293)] = 112037, + [SMALL_STATE(2294)] = 112068, + [SMALL_STATE(2295)] = 112101, + [SMALL_STATE(2296)] = 112134, + [SMALL_STATE(2297)] = 112167, + [SMALL_STATE(2298)] = 112200, + [SMALL_STATE(2299)] = 112233, + [SMALL_STATE(2300)] = 112266, + [SMALL_STATE(2301)] = 112299, + [SMALL_STATE(2302)] = 112332, + [SMALL_STATE(2303)] = 112365, + [SMALL_STATE(2304)] = 112398, + [SMALL_STATE(2305)] = 112431, + [SMALL_STATE(2306)] = 112464, + [SMALL_STATE(2307)] = 112497, + [SMALL_STATE(2308)] = 112530, + [SMALL_STATE(2309)] = 112563, + [SMALL_STATE(2310)] = 112596, + [SMALL_STATE(2311)] = 112629, + [SMALL_STATE(2312)] = 112662, + [SMALL_STATE(2313)] = 112695, + [SMALL_STATE(2314)] = 112728, + [SMALL_STATE(2315)] = 112761, + [SMALL_STATE(2316)] = 112794, + [SMALL_STATE(2317)] = 112827, + [SMALL_STATE(2318)] = 112860, + [SMALL_STATE(2319)] = 112893, + [SMALL_STATE(2320)] = 112926, + [SMALL_STATE(2321)] = 112959, + [SMALL_STATE(2322)] = 112992, + [SMALL_STATE(2323)] = 113025, + [SMALL_STATE(2324)] = 113058, + [SMALL_STATE(2325)] = 113087, + [SMALL_STATE(2326)] = 113116, + [SMALL_STATE(2327)] = 113149, + [SMALL_STATE(2328)] = 113182, + [SMALL_STATE(2329)] = 113215, + [SMALL_STATE(2330)] = 113248, + [SMALL_STATE(2331)] = 113281, + [SMALL_STATE(2332)] = 113314, + [SMALL_STATE(2333)] = 113347, + [SMALL_STATE(2334)] = 113380, + [SMALL_STATE(2335)] = 113413, + [SMALL_STATE(2336)] = 113446, + [SMALL_STATE(2337)] = 113479, + [SMALL_STATE(2338)] = 113512, + [SMALL_STATE(2339)] = 113545, + [SMALL_STATE(2340)] = 113578, + [SMALL_STATE(2341)] = 113607, + [SMALL_STATE(2342)] = 113640, + [SMALL_STATE(2343)] = 113673, + [SMALL_STATE(2344)] = 113706, + [SMALL_STATE(2345)] = 113739, + [SMALL_STATE(2346)] = 113772, + [SMALL_STATE(2347)] = 113805, + [SMALL_STATE(2348)] = 113838, + [SMALL_STATE(2349)] = 113871, + [SMALL_STATE(2350)] = 113904, + [SMALL_STATE(2351)] = 113940, + [SMALL_STATE(2352)] = 113964, + [SMALL_STATE(2353)] = 113988, + [SMALL_STATE(2354)] = 114024, + [SMALL_STATE(2355)] = 114060, + [SMALL_STATE(2356)] = 114090, + [SMALL_STATE(2357)] = 114126, + [SMALL_STATE(2358)] = 114156, + [SMALL_STATE(2359)] = 114192, + [SMALL_STATE(2360)] = 114228, + [SMALL_STATE(2361)] = 114258, + [SMALL_STATE(2362)] = 114294, + [SMALL_STATE(2363)] = 114322, + [SMALL_STATE(2364)] = 114358, + [SMALL_STATE(2365)] = 114392, + [SMALL_STATE(2366)] = 114430, + [SMALL_STATE(2367)] = 114466, + [SMALL_STATE(2368)] = 114502, + [SMALL_STATE(2369)] = 114538, + [SMALL_STATE(2370)] = 114562, + [SMALL_STATE(2371)] = 114598, + [SMALL_STATE(2372)] = 114634, + [SMALL_STATE(2373)] = 114670, + [SMALL_STATE(2374)] = 114706, + [SMALL_STATE(2375)] = 114742, + [SMALL_STATE(2376)] = 114778, + [SMALL_STATE(2377)] = 114814, + [SMALL_STATE(2378)] = 114844, + [SMALL_STATE(2379)] = 114878, + [SMALL_STATE(2380)] = 114914, + [SMALL_STATE(2381)] = 114950, + [SMALL_STATE(2382)] = 114986, + [SMALL_STATE(2383)] = 115022, + [SMALL_STATE(2384)] = 115058, + [SMALL_STATE(2385)] = 115096, + [SMALL_STATE(2386)] = 115132, + [SMALL_STATE(2387)] = 115168, + [SMALL_STATE(2388)] = 115198, + [SMALL_STATE(2389)] = 115234, + [SMALL_STATE(2390)] = 115261, + [SMALL_STATE(2391)] = 115286, + [SMALL_STATE(2392)] = 115321, + [SMALL_STATE(2393)] = 115346, + [SMALL_STATE(2394)] = 115381, + [SMALL_STATE(2395)] = 115406, + [SMALL_STATE(2396)] = 115439, + [SMALL_STATE(2397)] = 115474, + [SMALL_STATE(2398)] = 115499, + [SMALL_STATE(2399)] = 115522, + [SMALL_STATE(2400)] = 115557, + [SMALL_STATE(2401)] = 115588, + [SMALL_STATE(2402)] = 115613, + [SMALL_STATE(2403)] = 115638, + [SMALL_STATE(2404)] = 115673, + [SMALL_STATE(2405)] = 115706, + [SMALL_STATE(2406)] = 115741, + [SMALL_STATE(2407)] = 115766, + [SMALL_STATE(2408)] = 115791, + [SMALL_STATE(2409)] = 115822, + [SMALL_STATE(2410)] = 115855, + [SMALL_STATE(2411)] = 115890, + [SMALL_STATE(2412)] = 115913, + [SMALL_STATE(2413)] = 115938, + [SMALL_STATE(2414)] = 115973, + [SMALL_STATE(2415)] = 115996, + [SMALL_STATE(2416)] = 116029, + [SMALL_STATE(2417)] = 116054, + [SMALL_STATE(2418)] = 116087, + [SMALL_STATE(2419)] = 116122, + [SMALL_STATE(2420)] = 116147, + [SMALL_STATE(2421)] = 116172, + [SMALL_STATE(2422)] = 116207, + [SMALL_STATE(2423)] = 116242, + [SMALL_STATE(2424)] = 116277, + [SMALL_STATE(2425)] = 116312, + [SMALL_STATE(2426)] = 116337, + [SMALL_STATE(2427)] = 116368, + [SMALL_STATE(2428)] = 116403, + [SMALL_STATE(2429)] = 116438, + [SMALL_STATE(2430)] = 116469, + [SMALL_STATE(2431)] = 116500, + [SMALL_STATE(2432)] = 116525, + [SMALL_STATE(2433)] = 116550, + [SMALL_STATE(2434)] = 116585, + [SMALL_STATE(2435)] = 116620, + [SMALL_STATE(2436)] = 116645, + [SMALL_STATE(2437)] = 116670, + [SMALL_STATE(2438)] = 116695, + [SMALL_STATE(2439)] = 116728, + [SMALL_STATE(2440)] = 116753, + [SMALL_STATE(2441)] = 116786, + [SMALL_STATE(2442)] = 116817, + [SMALL_STATE(2443)] = 116852, + [SMALL_STATE(2444)] = 116885, + [SMALL_STATE(2445)] = 116918, + [SMALL_STATE(2446)] = 116953, + [SMALL_STATE(2447)] = 116988, + [SMALL_STATE(2448)] = 117023, + [SMALL_STATE(2449)] = 117054, + [SMALL_STATE(2450)] = 117089, + [SMALL_STATE(2451)] = 117120, + [SMALL_STATE(2452)] = 117155, + [SMALL_STATE(2453)] = 117190, + [SMALL_STATE(2454)] = 117223, + [SMALL_STATE(2455)] = 117248, + [SMALL_STATE(2456)] = 117283, + [SMALL_STATE(2457)] = 117316, + [SMALL_STATE(2458)] = 117349, + [SMALL_STATE(2459)] = 117384, + [SMALL_STATE(2460)] = 117415, + [SMALL_STATE(2461)] = 117440, + [SMALL_STATE(2462)] = 117471, + [SMALL_STATE(2463)] = 117506, + [SMALL_STATE(2464)] = 117537, + [SMALL_STATE(2465)] = 117570, + [SMALL_STATE(2466)] = 117605, + [SMALL_STATE(2467)] = 117636, + [SMALL_STATE(2468)] = 117671, + [SMALL_STATE(2469)] = 117704, + [SMALL_STATE(2470)] = 117729, + [SMALL_STATE(2471)] = 117764, + [SMALL_STATE(2472)] = 117797, + [SMALL_STATE(2473)] = 117832, + [SMALL_STATE(2474)] = 117857, + [SMALL_STATE(2475)] = 117892, + [SMALL_STATE(2476)] = 117915, + [SMALL_STATE(2477)] = 117950, + [SMALL_STATE(2478)] = 117983, + [SMALL_STATE(2479)] = 118016, + [SMALL_STATE(2480)] = 118039, + [SMALL_STATE(2481)] = 118074, + [SMALL_STATE(2482)] = 118109, + [SMALL_STATE(2483)] = 118142, + [SMALL_STATE(2484)] = 118167, + [SMALL_STATE(2485)] = 118190, + [SMALL_STATE(2486)] = 118225, + [SMALL_STATE(2487)] = 118260, + [SMALL_STATE(2488)] = 118295, + [SMALL_STATE(2489)] = 118330, + [SMALL_STATE(2490)] = 118355, + [SMALL_STATE(2491)] = 118380, + [SMALL_STATE(2492)] = 118411, + [SMALL_STATE(2493)] = 118442, + [SMALL_STATE(2494)] = 118477, + [SMALL_STATE(2495)] = 118502, + [SMALL_STATE(2496)] = 118535, + [SMALL_STATE(2497)] = 118570, + [SMALL_STATE(2498)] = 118605, + [SMALL_STATE(2499)] = 118630, + [SMALL_STATE(2500)] = 118663, + [SMALL_STATE(2501)] = 118698, + [SMALL_STATE(2502)] = 118731, + [SMALL_STATE(2503)] = 118766, + [SMALL_STATE(2504)] = 118801, + [SMALL_STATE(2505)] = 118834, + [SMALL_STATE(2506)] = 118867, + [SMALL_STATE(2507)] = 118896, + [SMALL_STATE(2508)] = 118929, + [SMALL_STATE(2509)] = 118964, + [SMALL_STATE(2510)] = 118997, + [SMALL_STATE(2511)] = 119022, + [SMALL_STATE(2512)] = 119049, + [SMALL_STATE(2513)] = 119072, + [SMALL_STATE(2514)] = 119105, + [SMALL_STATE(2515)] = 119138, + [SMALL_STATE(2516)] = 119167, + [SMALL_STATE(2517)] = 119192, + [SMALL_STATE(2518)] = 119217, + [SMALL_STATE(2519)] = 119250, + [SMALL_STATE(2520)] = 119285, + [SMALL_STATE(2521)] = 119320, + [SMALL_STATE(2522)] = 119353, + [SMALL_STATE(2523)] = 119378, + [SMALL_STATE(2524)] = 119413, + [SMALL_STATE(2525)] = 119448, + [SMALL_STATE(2526)] = 119483, + [SMALL_STATE(2527)] = 119516, + [SMALL_STATE(2528)] = 119551, + [SMALL_STATE(2529)] = 119586, + [SMALL_STATE(2530)] = 119619, + [SMALL_STATE(2531)] = 119650, + [SMALL_STATE(2532)] = 119681, + [SMALL_STATE(2533)] = 119714, + [SMALL_STATE(2534)] = 119749, + [SMALL_STATE(2535)] = 119774, + [SMALL_STATE(2536)] = 119809, + [SMALL_STATE(2537)] = 119842, + [SMALL_STATE(2538)] = 119875, + [SMALL_STATE(2539)] = 119910, + [SMALL_STATE(2540)] = 119945, + [SMALL_STATE(2541)] = 119978, + [SMALL_STATE(2542)] = 120013, + [SMALL_STATE(2543)] = 120048, + [SMALL_STATE(2544)] = 120083, + [SMALL_STATE(2545)] = 120113, + [SMALL_STATE(2546)] = 120143, + [SMALL_STATE(2547)] = 120173, + [SMALL_STATE(2548)] = 120203, + [SMALL_STATE(2549)] = 120233, + [SMALL_STATE(2550)] = 120263, + [SMALL_STATE(2551)] = 120293, + [SMALL_STATE(2552)] = 120325, + [SMALL_STATE(2553)] = 120357, + [SMALL_STATE(2554)] = 120389, + [SMALL_STATE(2555)] = 120419, + [SMALL_STATE(2556)] = 120451, + [SMALL_STATE(2557)] = 120481, + [SMALL_STATE(2558)] = 120513, + [SMALL_STATE(2559)] = 120543, + [SMALL_STATE(2560)] = 120575, + [SMALL_STATE(2561)] = 120597, + [SMALL_STATE(2562)] = 120619, + [SMALL_STATE(2563)] = 120649, + [SMALL_STATE(2564)] = 120679, + [SMALL_STATE(2565)] = 120709, + [SMALL_STATE(2566)] = 120739, + [SMALL_STATE(2567)] = 120769, + [SMALL_STATE(2568)] = 120801, + [SMALL_STATE(2569)] = 120833, + [SMALL_STATE(2570)] = 120863, + [SMALL_STATE(2571)] = 120885, + [SMALL_STATE(2572)] = 120917, + [SMALL_STATE(2573)] = 120949, + [SMALL_STATE(2574)] = 120979, + [SMALL_STATE(2575)] = 121007, + [SMALL_STATE(2576)] = 121037, + [SMALL_STATE(2577)] = 121069, + [SMALL_STATE(2578)] = 121101, + [SMALL_STATE(2579)] = 121133, + [SMALL_STATE(2580)] = 121163, + [SMALL_STATE(2581)] = 121193, + [SMALL_STATE(2582)] = 121223, + [SMALL_STATE(2583)] = 121253, + [SMALL_STATE(2584)] = 121285, + [SMALL_STATE(2585)] = 121317, + [SMALL_STATE(2586)] = 121349, + [SMALL_STATE(2587)] = 121379, + [SMALL_STATE(2588)] = 121409, + [SMALL_STATE(2589)] = 121439, + [SMALL_STATE(2590)] = 121471, + [SMALL_STATE(2591)] = 121503, + [SMALL_STATE(2592)] = 121535, + [SMALL_STATE(2593)] = 121567, + [SMALL_STATE(2594)] = 121599, + [SMALL_STATE(2595)] = 121631, + [SMALL_STATE(2596)] = 121663, + [SMALL_STATE(2597)] = 121695, + [SMALL_STATE(2598)] = 121725, + [SMALL_STATE(2599)] = 121755, + [SMALL_STATE(2600)] = 121787, + [SMALL_STATE(2601)] = 121819, + [SMALL_STATE(2602)] = 121851, + [SMALL_STATE(2603)] = 121883, + [SMALL_STATE(2604)] = 121913, + [SMALL_STATE(2605)] = 121943, + [SMALL_STATE(2606)] = 121975, + [SMALL_STATE(2607)] = 121999, + [SMALL_STATE(2608)] = 122029, + [SMALL_STATE(2609)] = 122059, + [SMALL_STATE(2610)] = 122091, + [SMALL_STATE(2611)] = 122113, + [SMALL_STATE(2612)] = 122143, + [SMALL_STATE(2613)] = 122173, + [SMALL_STATE(2614)] = 122203, + [SMALL_STATE(2615)] = 122235, + [SMALL_STATE(2616)] = 122265, + [SMALL_STATE(2617)] = 122291, + [SMALL_STATE(2618)] = 122323, + [SMALL_STATE(2619)] = 122351, + [SMALL_STATE(2620)] = 122383, + [SMALL_STATE(2621)] = 122413, + [SMALL_STATE(2622)] = 122435, + [SMALL_STATE(2623)] = 122465, + [SMALL_STATE(2624)] = 122495, + [SMALL_STATE(2625)] = 122525, + [SMALL_STATE(2626)] = 122557, + [SMALL_STATE(2627)] = 122587, + [SMALL_STATE(2628)] = 122619, + [SMALL_STATE(2629)] = 122651, + [SMALL_STATE(2630)] = 122683, + [SMALL_STATE(2631)] = 122713, + [SMALL_STATE(2632)] = 122741, + [SMALL_STATE(2633)] = 122773, + [SMALL_STATE(2634)] = 122801, + [SMALL_STATE(2635)] = 122831, + [SMALL_STATE(2636)] = 122861, + [SMALL_STATE(2637)] = 122891, + [SMALL_STATE(2638)] = 122921, + [SMALL_STATE(2639)] = 122951, + [SMALL_STATE(2640)] = 122983, + [SMALL_STATE(2641)] = 123013, + [SMALL_STATE(2642)] = 123045, + [SMALL_STATE(2643)] = 123075, + [SMALL_STATE(2644)] = 123105, + [SMALL_STATE(2645)] = 123135, + [SMALL_STATE(2646)] = 123167, + [SMALL_STATE(2647)] = 123197, + [SMALL_STATE(2648)] = 123227, + [SMALL_STATE(2649)] = 123257, + [SMALL_STATE(2650)] = 123287, + [SMALL_STATE(2651)] = 123319, + [SMALL_STATE(2652)] = 123349, + [SMALL_STATE(2653)] = 123379, + [SMALL_STATE(2654)] = 123409, + [SMALL_STATE(2655)] = 123439, + [SMALL_STATE(2656)] = 123471, + [SMALL_STATE(2657)] = 123501, + [SMALL_STATE(2658)] = 123531, + [SMALL_STATE(2659)] = 123561, + [SMALL_STATE(2660)] = 123591, + [SMALL_STATE(2661)] = 123621, + [SMALL_STATE(2662)] = 123651, + [SMALL_STATE(2663)] = 123683, + [SMALL_STATE(2664)] = 123715, + [SMALL_STATE(2665)] = 123745, + [SMALL_STATE(2666)] = 123775, + [SMALL_STATE(2667)] = 123805, + [SMALL_STATE(2668)] = 123837, + [SMALL_STATE(2669)] = 123867, + [SMALL_STATE(2670)] = 123899, + [SMALL_STATE(2671)] = 123929, + [SMALL_STATE(2672)] = 123959, + [SMALL_STATE(2673)] = 123989, + [SMALL_STATE(2674)] = 124021, + [SMALL_STATE(2675)] = 124049, + [SMALL_STATE(2676)] = 124081, + [SMALL_STATE(2677)] = 124113, + [SMALL_STATE(2678)] = 124145, + [SMALL_STATE(2679)] = 124177, + [SMALL_STATE(2680)] = 124207, + [SMALL_STATE(2681)] = 124237, + [SMALL_STATE(2682)] = 124267, + [SMALL_STATE(2683)] = 124297, + [SMALL_STATE(2684)] = 124327, + [SMALL_STATE(2685)] = 124359, + [SMALL_STATE(2686)] = 124389, + [SMALL_STATE(2687)] = 124419, + [SMALL_STATE(2688)] = 124449, + [SMALL_STATE(2689)] = 124479, + [SMALL_STATE(2690)] = 124511, + [SMALL_STATE(2691)] = 124543, + [SMALL_STATE(2692)] = 124567, + [SMALL_STATE(2693)] = 124599, + [SMALL_STATE(2694)] = 124629, + [SMALL_STATE(2695)] = 124661, + [SMALL_STATE(2696)] = 124691, + [SMALL_STATE(2697)] = 124723, + [SMALL_STATE(2698)] = 124753, + [SMALL_STATE(2699)] = 124785, + [SMALL_STATE(2700)] = 124815, + [SMALL_STATE(2701)] = 124845, + [SMALL_STATE(2702)] = 124877, + [SMALL_STATE(2703)] = 124907, + [SMALL_STATE(2704)] = 124937, + [SMALL_STATE(2705)] = 124969, + [SMALL_STATE(2706)] = 125001, + [SMALL_STATE(2707)] = 125031, + [SMALL_STATE(2708)] = 125063, + [SMALL_STATE(2709)] = 125093, + [SMALL_STATE(2710)] = 125123, + [SMALL_STATE(2711)] = 125153, + [SMALL_STATE(2712)] = 125183, + [SMALL_STATE(2713)] = 125213, + [SMALL_STATE(2714)] = 125245, + [SMALL_STATE(2715)] = 125274, + [SMALL_STATE(2716)] = 125303, + [SMALL_STATE(2717)] = 125332, + [SMALL_STATE(2718)] = 125357, + [SMALL_STATE(2719)] = 125380, + [SMALL_STATE(2720)] = 125403, + [SMALL_STATE(2721)] = 125424, + [SMALL_STATE(2722)] = 125453, + [SMALL_STATE(2723)] = 125476, + [SMALL_STATE(2724)] = 125499, + [SMALL_STATE(2725)] = 125528, + [SMALL_STATE(2726)] = 125557, + [SMALL_STATE(2727)] = 125582, + [SMALL_STATE(2728)] = 125605, + [SMALL_STATE(2729)] = 125634, + [SMALL_STATE(2730)] = 125659, + [SMALL_STATE(2731)] = 125682, + [SMALL_STATE(2732)] = 125711, + [SMALL_STATE(2733)] = 125740, + [SMALL_STATE(2734)] = 125765, + [SMALL_STATE(2735)] = 125794, + [SMALL_STATE(2736)] = 125823, + [SMALL_STATE(2737)] = 125846, + [SMALL_STATE(2738)] = 125871, + [SMALL_STATE(2739)] = 125900, + [SMALL_STATE(2740)] = 125925, + [SMALL_STATE(2741)] = 125948, + [SMALL_STATE(2742)] = 125973, + [SMALL_STATE(2743)] = 125996, + [SMALL_STATE(2744)] = 126019, + [SMALL_STATE(2745)] = 126048, + [SMALL_STATE(2746)] = 126077, + [SMALL_STATE(2747)] = 126100, + [SMALL_STATE(2748)] = 126129, + [SMALL_STATE(2749)] = 126154, + [SMALL_STATE(2750)] = 126183, + [SMALL_STATE(2751)] = 126208, + [SMALL_STATE(2752)] = 126237, + [SMALL_STATE(2753)] = 126262, + [SMALL_STATE(2754)] = 126291, + [SMALL_STATE(2755)] = 126320, + [SMALL_STATE(2756)] = 126343, + [SMALL_STATE(2757)] = 126372, + [SMALL_STATE(2758)] = 126401, + [SMALL_STATE(2759)] = 126424, + [SMALL_STATE(2760)] = 126453, + [SMALL_STATE(2761)] = 126482, + [SMALL_STATE(2762)] = 126507, + [SMALL_STATE(2763)] = 126532, + [SMALL_STATE(2764)] = 126557, + [SMALL_STATE(2765)] = 126578, + [SMALL_STATE(2766)] = 126601, + [SMALL_STATE(2767)] = 126624, + [SMALL_STATE(2768)] = 126653, + [SMALL_STATE(2769)] = 126676, + [SMALL_STATE(2770)] = 126699, + [SMALL_STATE(2771)] = 126728, + [SMALL_STATE(2772)] = 126753, + [SMALL_STATE(2773)] = 126776, + [SMALL_STATE(2774)] = 126805, + [SMALL_STATE(2775)] = 126828, + [SMALL_STATE(2776)] = 126857, + [SMALL_STATE(2777)] = 126880, + [SMALL_STATE(2778)] = 126905, + [SMALL_STATE(2779)] = 126934, + [SMALL_STATE(2780)] = 126963, + [SMALL_STATE(2781)] = 126986, + [SMALL_STATE(2782)] = 127015, + [SMALL_STATE(2783)] = 127036, + [SMALL_STATE(2784)] = 127065, + [SMALL_STATE(2785)] = 127094, + [SMALL_STATE(2786)] = 127117, + [SMALL_STATE(2787)] = 127142, + [SMALL_STATE(2788)] = 127171, + [SMALL_STATE(2789)] = 127200, + [SMALL_STATE(2790)] = 127229, + [SMALL_STATE(2791)] = 127252, + [SMALL_STATE(2792)] = 127279, + [SMALL_STATE(2793)] = 127302, + [SMALL_STATE(2794)] = 127331, + [SMALL_STATE(2795)] = 127352, + [SMALL_STATE(2796)] = 127375, + [SMALL_STATE(2797)] = 127404, + [SMALL_STATE(2798)] = 127427, + [SMALL_STATE(2799)] = 127456, + [SMALL_STATE(2800)] = 127485, + [SMALL_STATE(2801)] = 127514, + [SMALL_STATE(2802)] = 127543, + [SMALL_STATE(2803)] = 127572, + [SMALL_STATE(2804)] = 127595, + [SMALL_STATE(2805)] = 127624, + [SMALL_STATE(2806)] = 127653, + [SMALL_STATE(2807)] = 127682, + [SMALL_STATE(2808)] = 127711, + [SMALL_STATE(2809)] = 127736, + [SMALL_STATE(2810)] = 127765, + [SMALL_STATE(2811)] = 127790, + [SMALL_STATE(2812)] = 127819, + [SMALL_STATE(2813)] = 127848, + [SMALL_STATE(2814)] = 127873, + [SMALL_STATE(2815)] = 127896, + [SMALL_STATE(2816)] = 127921, + [SMALL_STATE(2817)] = 127950, + [SMALL_STATE(2818)] = 127975, + [SMALL_STATE(2819)] = 128002, + [SMALL_STATE(2820)] = 128031, + [SMALL_STATE(2821)] = 128060, + [SMALL_STATE(2822)] = 128089, + [SMALL_STATE(2823)] = 128118, + [SMALL_STATE(2824)] = 128143, + [SMALL_STATE(2825)] = 128172, + [SMALL_STATE(2826)] = 128201, + [SMALL_STATE(2827)] = 128226, + [SMALL_STATE(2828)] = 128255, + [SMALL_STATE(2829)] = 128280, + [SMALL_STATE(2830)] = 128309, + [SMALL_STATE(2831)] = 128338, + [SMALL_STATE(2832)] = 128367, + [SMALL_STATE(2833)] = 128396, + [SMALL_STATE(2834)] = 128421, + [SMALL_STATE(2835)] = 128442, + [SMALL_STATE(2836)] = 128465, + [SMALL_STATE(2837)] = 128488, + [SMALL_STATE(2838)] = 128517, + [SMALL_STATE(2839)] = 128542, + [SMALL_STATE(2840)] = 128571, + [SMALL_STATE(2841)] = 128600, + [SMALL_STATE(2842)] = 128623, + [SMALL_STATE(2843)] = 128652, + [SMALL_STATE(2844)] = 128681, + [SMALL_STATE(2845)] = 128704, + [SMALL_STATE(2846)] = 128727, + [SMALL_STATE(2847)] = 128756, + [SMALL_STATE(2848)] = 128785, + [SMALL_STATE(2849)] = 128810, + [SMALL_STATE(2850)] = 128839, + [SMALL_STATE(2851)] = 128868, + [SMALL_STATE(2852)] = 128897, + [SMALL_STATE(2853)] = 128926, + [SMALL_STATE(2854)] = 128949, + [SMALL_STATE(2855)] = 128972, + [SMALL_STATE(2856)] = 128995, + [SMALL_STATE(2857)] = 129024, + [SMALL_STATE(2858)] = 129053, + [SMALL_STATE(2859)] = 129078, + [SMALL_STATE(2860)] = 129107, + [SMALL_STATE(2861)] = 129136, + [SMALL_STATE(2862)] = 129165, + [SMALL_STATE(2863)] = 129192, + [SMALL_STATE(2864)] = 129221, + [SMALL_STATE(2865)] = 129250, + [SMALL_STATE(2866)] = 129277, + [SMALL_STATE(2867)] = 129300, + [SMALL_STATE(2868)] = 129329, + [SMALL_STATE(2869)] = 129358, + [SMALL_STATE(2870)] = 129387, + [SMALL_STATE(2871)] = 129414, + [SMALL_STATE(2872)] = 129439, + [SMALL_STATE(2873)] = 129464, + [SMALL_STATE(2874)] = 129487, + [SMALL_STATE(2875)] = 129516, + [SMALL_STATE(2876)] = 129545, + [SMALL_STATE(2877)] = 129568, + [SMALL_STATE(2878)] = 129593, + [SMALL_STATE(2879)] = 129618, + [SMALL_STATE(2880)] = 129639, + [SMALL_STATE(2881)] = 129668, + [SMALL_STATE(2882)] = 129693, + [SMALL_STATE(2883)] = 129722, + [SMALL_STATE(2884)] = 129751, + [SMALL_STATE(2885)] = 129778, + [SMALL_STATE(2886)] = 129803, + [SMALL_STATE(2887)] = 129832, + [SMALL_STATE(2888)] = 129857, + [SMALL_STATE(2889)] = 129880, + [SMALL_STATE(2890)] = 129909, + [SMALL_STATE(2891)] = 129932, + [SMALL_STATE(2892)] = 129957, + [SMALL_STATE(2893)] = 129986, + [SMALL_STATE(2894)] = 130015, + [SMALL_STATE(2895)] = 130044, + [SMALL_STATE(2896)] = 130067, + [SMALL_STATE(2897)] = 130096, + [SMALL_STATE(2898)] = 130125, + [SMALL_STATE(2899)] = 130150, + [SMALL_STATE(2900)] = 130175, + [SMALL_STATE(2901)] = 130204, + [SMALL_STATE(2902)] = 130231, + [SMALL_STATE(2903)] = 130254, + [SMALL_STATE(2904)] = 130279, + [SMALL_STATE(2905)] = 130308, + [SMALL_STATE(2906)] = 130333, + [SMALL_STATE(2907)] = 130356, + [SMALL_STATE(2908)] = 130385, + [SMALL_STATE(2909)] = 130410, + [SMALL_STATE(2910)] = 130439, + [SMALL_STATE(2911)] = 130460, + [SMALL_STATE(2912)] = 130483, + [SMALL_STATE(2913)] = 130508, + [SMALL_STATE(2914)] = 130531, + [SMALL_STATE(2915)] = 130560, + [SMALL_STATE(2916)] = 130589, + [SMALL_STATE(2917)] = 130612, + [SMALL_STATE(2918)] = 130632, + [SMALL_STATE(2919)] = 130652, + [SMALL_STATE(2920)] = 130676, + [SMALL_STATE(2921)] = 130700, + [SMALL_STATE(2922)] = 130724, + [SMALL_STATE(2923)] = 130748, + [SMALL_STATE(2924)] = 130774, + [SMALL_STATE(2925)] = 130798, + [SMALL_STATE(2926)] = 130822, + [SMALL_STATE(2927)] = 130844, + [SMALL_STATE(2928)] = 130870, + [SMALL_STATE(2929)] = 130892, + [SMALL_STATE(2930)] = 130912, + [SMALL_STATE(2931)] = 130934, + [SMALL_STATE(2932)] = 130956, + [SMALL_STATE(2933)] = 130980, + [SMALL_STATE(2934)] = 131006, + [SMALL_STATE(2935)] = 131026, + [SMALL_STATE(2936)] = 131052, + [SMALL_STATE(2937)] = 131078, + [SMALL_STATE(2938)] = 131104, + [SMALL_STATE(2939)] = 131128, + [SMALL_STATE(2940)] = 131148, + [SMALL_STATE(2941)] = 131172, + [SMALL_STATE(2942)] = 131198, + [SMALL_STATE(2943)] = 131224, + [SMALL_STATE(2944)] = 131250, + [SMALL_STATE(2945)] = 131276, + [SMALL_STATE(2946)] = 131298, + [SMALL_STATE(2947)] = 131318, + [SMALL_STATE(2948)] = 131342, + [SMALL_STATE(2949)] = 131366, + [SMALL_STATE(2950)] = 131390, + [SMALL_STATE(2951)] = 131416, + [SMALL_STATE(2952)] = 131436, + [SMALL_STATE(2953)] = 131460, + [SMALL_STATE(2954)] = 131486, + [SMALL_STATE(2955)] = 131512, + [SMALL_STATE(2956)] = 131536, + [SMALL_STATE(2957)] = 131560, + [SMALL_STATE(2958)] = 131584, + [SMALL_STATE(2959)] = 131608, + [SMALL_STATE(2960)] = 131632, + [SMALL_STATE(2961)] = 131658, + [SMALL_STATE(2962)] = 131682, + [SMALL_STATE(2963)] = 131704, + [SMALL_STATE(2964)] = 131724, + [SMALL_STATE(2965)] = 131750, + [SMALL_STATE(2966)] = 131774, + [SMALL_STATE(2967)] = 131798, + [SMALL_STATE(2968)] = 131822, + [SMALL_STATE(2969)] = 131848, + [SMALL_STATE(2970)] = 131868, + [SMALL_STATE(2971)] = 131894, + [SMALL_STATE(2972)] = 131920, + [SMALL_STATE(2973)] = 131940, + [SMALL_STATE(2974)] = 131964, + [SMALL_STATE(2975)] = 131984, + [SMALL_STATE(2976)] = 132008, + [SMALL_STATE(2977)] = 132028, + [SMALL_STATE(2978)] = 132048, + [SMALL_STATE(2979)] = 132072, + [SMALL_STATE(2980)] = 132098, + [SMALL_STATE(2981)] = 132124, + [SMALL_STATE(2982)] = 132148, + [SMALL_STATE(2983)] = 132168, + [SMALL_STATE(2984)] = 132194, + [SMALL_STATE(2985)] = 132214, + [SMALL_STATE(2986)] = 132240, + [SMALL_STATE(2987)] = 132264, + [SMALL_STATE(2988)] = 132290, + [SMALL_STATE(2989)] = 132314, + [SMALL_STATE(2990)] = 132338, + [SMALL_STATE(2991)] = 132364, + [SMALL_STATE(2992)] = 132386, + [SMALL_STATE(2993)] = 132410, + [SMALL_STATE(2994)] = 132434, + [SMALL_STATE(2995)] = 132458, + [SMALL_STATE(2996)] = 132484, + [SMALL_STATE(2997)] = 132508, + [SMALL_STATE(2998)] = 132532, + [SMALL_STATE(2999)] = 132556, + [SMALL_STATE(3000)] = 132582, + [SMALL_STATE(3001)] = 132606, + [SMALL_STATE(3002)] = 132632, + [SMALL_STATE(3003)] = 132658, + [SMALL_STATE(3004)] = 132678, + [SMALL_STATE(3005)] = 132704, + [SMALL_STATE(3006)] = 132728, + [SMALL_STATE(3007)] = 132752, + [SMALL_STATE(3008)] = 132772, + [SMALL_STATE(3009)] = 132796, + [SMALL_STATE(3010)] = 132820, + [SMALL_STATE(3011)] = 132842, + [SMALL_STATE(3012)] = 132866, + [SMALL_STATE(3013)] = 132888, + [SMALL_STATE(3014)] = 132914, + [SMALL_STATE(3015)] = 132938, + [SMALL_STATE(3016)] = 132960, + [SMALL_STATE(3017)] = 132982, + [SMALL_STATE(3018)] = 133002, + [SMALL_STATE(3019)] = 133028, + [SMALL_STATE(3020)] = 133050, + [SMALL_STATE(3021)] = 133076, + [SMALL_STATE(3022)] = 133096, + [SMALL_STATE(3023)] = 133116, + [SMALL_STATE(3024)] = 133138, + [SMALL_STATE(3025)] = 133164, + [SMALL_STATE(3026)] = 133190, + [SMALL_STATE(3027)] = 133214, + [SMALL_STATE(3028)] = 133234, + [SMALL_STATE(3029)] = 133260, + [SMALL_STATE(3030)] = 133280, + [SMALL_STATE(3031)] = 133304, + [SMALL_STATE(3032)] = 133326, + [SMALL_STATE(3033)] = 133346, + [SMALL_STATE(3034)] = 133368, + [SMALL_STATE(3035)] = 133390, + [SMALL_STATE(3036)] = 133410, + [SMALL_STATE(3037)] = 133434, + [SMALL_STATE(3038)] = 133458, + [SMALL_STATE(3039)] = 133482, + [SMALL_STATE(3040)] = 133508, + [SMALL_STATE(3041)] = 133534, + [SMALL_STATE(3042)] = 133560, + [SMALL_STATE(3043)] = 133582, + [SMALL_STATE(3044)] = 133608, + [SMALL_STATE(3045)] = 133634, + [SMALL_STATE(3046)] = 133660, + [SMALL_STATE(3047)] = 133680, + [SMALL_STATE(3048)] = 133704, + [SMALL_STATE(3049)] = 133726, + [SMALL_STATE(3050)] = 133752, + [SMALL_STATE(3051)] = 133774, + [SMALL_STATE(3052)] = 133800, + [SMALL_STATE(3053)] = 133826, + [SMALL_STATE(3054)] = 133850, + [SMALL_STATE(3055)] = 133876, + [SMALL_STATE(3056)] = 133902, + [SMALL_STATE(3057)] = 133921, + [SMALL_STATE(3058)] = 133944, + [SMALL_STATE(3059)] = 133967, + [SMALL_STATE(3060)] = 133986, + [SMALL_STATE(3061)] = 134005, + [SMALL_STATE(3062)] = 134028, + [SMALL_STATE(3063)] = 134047, + [SMALL_STATE(3064)] = 134070, + [SMALL_STATE(3065)] = 134089, + [SMALL_STATE(3066)] = 134112, + [SMALL_STATE(3067)] = 134131, + [SMALL_STATE(3068)] = 134150, + [SMALL_STATE(3069)] = 134169, + [SMALL_STATE(3070)] = 134192, + [SMALL_STATE(3071)] = 134215, + [SMALL_STATE(3072)] = 134238, + [SMALL_STATE(3073)] = 134257, + [SMALL_STATE(3074)] = 134280, + [SMALL_STATE(3075)] = 134299, + [SMALL_STATE(3076)] = 134318, + [SMALL_STATE(3077)] = 134337, + [SMALL_STATE(3078)] = 134356, + [SMALL_STATE(3079)] = 134375, + [SMALL_STATE(3080)] = 134394, + [SMALL_STATE(3081)] = 134417, + [SMALL_STATE(3082)] = 134440, + [SMALL_STATE(3083)] = 134463, + [SMALL_STATE(3084)] = 134486, + [SMALL_STATE(3085)] = 134509, + [SMALL_STATE(3086)] = 134532, + [SMALL_STATE(3087)] = 134555, + [SMALL_STATE(3088)] = 134578, + [SMALL_STATE(3089)] = 134601, + [SMALL_STATE(3090)] = 134624, + [SMALL_STATE(3091)] = 134647, + [SMALL_STATE(3092)] = 134670, + [SMALL_STATE(3093)] = 134693, + [SMALL_STATE(3094)] = 134716, + [SMALL_STATE(3095)] = 134739, + [SMALL_STATE(3096)] = 134762, + [SMALL_STATE(3097)] = 134785, + [SMALL_STATE(3098)] = 134808, + [SMALL_STATE(3099)] = 134831, + [SMALL_STATE(3100)] = 134854, + [SMALL_STATE(3101)] = 134877, + [SMALL_STATE(3102)] = 134900, + [SMALL_STATE(3103)] = 134923, + [SMALL_STATE(3104)] = 134946, + [SMALL_STATE(3105)] = 134969, + [SMALL_STATE(3106)] = 134992, + [SMALL_STATE(3107)] = 135015, + [SMALL_STATE(3108)] = 135038, + [SMALL_STATE(3109)] = 135061, + [SMALL_STATE(3110)] = 135084, + [SMALL_STATE(3111)] = 135107, + [SMALL_STATE(3112)] = 135130, + [SMALL_STATE(3113)] = 135153, + [SMALL_STATE(3114)] = 135176, + [SMALL_STATE(3115)] = 135199, + [SMALL_STATE(3116)] = 135222, + [SMALL_STATE(3117)] = 135245, + [SMALL_STATE(3118)] = 135268, + [SMALL_STATE(3119)] = 135291, + [SMALL_STATE(3120)] = 135314, + [SMALL_STATE(3121)] = 135337, + [SMALL_STATE(3122)] = 135360, + [SMALL_STATE(3123)] = 135383, + [SMALL_STATE(3124)] = 135406, + [SMALL_STATE(3125)] = 135429, + [SMALL_STATE(3126)] = 135452, + [SMALL_STATE(3127)] = 135475, + [SMALL_STATE(3128)] = 135494, + [SMALL_STATE(3129)] = 135517, + [SMALL_STATE(3130)] = 135540, + [SMALL_STATE(3131)] = 135563, + [SMALL_STATE(3132)] = 135586, + [SMALL_STATE(3133)] = 135609, + [SMALL_STATE(3134)] = 135632, + [SMALL_STATE(3135)] = 135655, + [SMALL_STATE(3136)] = 135678, + [SMALL_STATE(3137)] = 135701, + [SMALL_STATE(3138)] = 135724, + [SMALL_STATE(3139)] = 135745, + [SMALL_STATE(3140)] = 135768, + [SMALL_STATE(3141)] = 135791, + [SMALL_STATE(3142)] = 135814, + [SMALL_STATE(3143)] = 135837, + [SMALL_STATE(3144)] = 135860, + [SMALL_STATE(3145)] = 135883, + [SMALL_STATE(3146)] = 135902, + [SMALL_STATE(3147)] = 135925, + [SMALL_STATE(3148)] = 135948, + [SMALL_STATE(3149)] = 135971, + [SMALL_STATE(3150)] = 135994, + [SMALL_STATE(3151)] = 136017, + [SMALL_STATE(3152)] = 136040, + [SMALL_STATE(3153)] = 136063, + [SMALL_STATE(3154)] = 136084, + [SMALL_STATE(3155)] = 136107, + [SMALL_STATE(3156)] = 136130, + [SMALL_STATE(3157)] = 136153, + [SMALL_STATE(3158)] = 136176, + [SMALL_STATE(3159)] = 136199, + [SMALL_STATE(3160)] = 136222, + [SMALL_STATE(3161)] = 136245, + [SMALL_STATE(3162)] = 136268, + [SMALL_STATE(3163)] = 136291, + [SMALL_STATE(3164)] = 136314, + [SMALL_STATE(3165)] = 136337, + [SMALL_STATE(3166)] = 136360, + [SMALL_STATE(3167)] = 136381, + [SMALL_STATE(3168)] = 136404, + [SMALL_STATE(3169)] = 136427, + [SMALL_STATE(3170)] = 136450, + [SMALL_STATE(3171)] = 136471, + [SMALL_STATE(3172)] = 136494, + [SMALL_STATE(3173)] = 136517, + [SMALL_STATE(3174)] = 136536, + [SMALL_STATE(3175)] = 136559, + [SMALL_STATE(3176)] = 136582, + [SMALL_STATE(3177)] = 136605, + [SMALL_STATE(3178)] = 136628, + [SMALL_STATE(3179)] = 136651, + [SMALL_STATE(3180)] = 136674, + [SMALL_STATE(3181)] = 136697, + [SMALL_STATE(3182)] = 136720, + [SMALL_STATE(3183)] = 136743, + [SMALL_STATE(3184)] = 136766, + [SMALL_STATE(3185)] = 136789, + [SMALL_STATE(3186)] = 136812, + [SMALL_STATE(3187)] = 136835, + [SMALL_STATE(3188)] = 136858, + [SMALL_STATE(3189)] = 136881, + [SMALL_STATE(3190)] = 136904, + [SMALL_STATE(3191)] = 136927, + [SMALL_STATE(3192)] = 136950, + [SMALL_STATE(3193)] = 136973, + [SMALL_STATE(3194)] = 136996, + [SMALL_STATE(3195)] = 137019, + [SMALL_STATE(3196)] = 137042, + [SMALL_STATE(3197)] = 137065, + [SMALL_STATE(3198)] = 137088, + [SMALL_STATE(3199)] = 137111, + [SMALL_STATE(3200)] = 137134, + [SMALL_STATE(3201)] = 137157, + [SMALL_STATE(3202)] = 137180, + [SMALL_STATE(3203)] = 137203, + [SMALL_STATE(3204)] = 137226, + [SMALL_STATE(3205)] = 137249, + [SMALL_STATE(3206)] = 137272, + [SMALL_STATE(3207)] = 137295, + [SMALL_STATE(3208)] = 137318, + [SMALL_STATE(3209)] = 137337, + [SMALL_STATE(3210)] = 137360, + [SMALL_STATE(3211)] = 137383, + [SMALL_STATE(3212)] = 137406, + [SMALL_STATE(3213)] = 137429, + [SMALL_STATE(3214)] = 137452, + [SMALL_STATE(3215)] = 137475, + [SMALL_STATE(3216)] = 137498, + [SMALL_STATE(3217)] = 137521, + [SMALL_STATE(3218)] = 137544, + [SMALL_STATE(3219)] = 137567, + [SMALL_STATE(3220)] = 137588, + [SMALL_STATE(3221)] = 137607, + [SMALL_STATE(3222)] = 137630, + [SMALL_STATE(3223)] = 137653, + [SMALL_STATE(3224)] = 137672, + [SMALL_STATE(3225)] = 137695, + [SMALL_STATE(3226)] = 137718, + [SMALL_STATE(3227)] = 137741, + [SMALL_STATE(3228)] = 137764, + [SMALL_STATE(3229)] = 137787, + [SMALL_STATE(3230)] = 137806, + [SMALL_STATE(3231)] = 137829, + [SMALL_STATE(3232)] = 137852, + [SMALL_STATE(3233)] = 137873, + [SMALL_STATE(3234)] = 137896, + [SMALL_STATE(3235)] = 137919, + [SMALL_STATE(3236)] = 137942, + [SMALL_STATE(3237)] = 137965, + [SMALL_STATE(3238)] = 137988, + [SMALL_STATE(3239)] = 138011, + [SMALL_STATE(3240)] = 138034, + [SMALL_STATE(3241)] = 138057, + [SMALL_STATE(3242)] = 138080, + [SMALL_STATE(3243)] = 138103, + [SMALL_STATE(3244)] = 138126, + [SMALL_STATE(3245)] = 138149, + [SMALL_STATE(3246)] = 138172, + [SMALL_STATE(3247)] = 138195, + [SMALL_STATE(3248)] = 138216, + [SMALL_STATE(3249)] = 138235, + [SMALL_STATE(3250)] = 138258, + [SMALL_STATE(3251)] = 138281, + [SMALL_STATE(3252)] = 138304, + [SMALL_STATE(3253)] = 138327, + [SMALL_STATE(3254)] = 138350, + [SMALL_STATE(3255)] = 138373, + [SMALL_STATE(3256)] = 138396, + [SMALL_STATE(3257)] = 138415, + [SMALL_STATE(3258)] = 138438, + [SMALL_STATE(3259)] = 138461, + [SMALL_STATE(3260)] = 138484, + [SMALL_STATE(3261)] = 138507, + [SMALL_STATE(3262)] = 138530, + [SMALL_STATE(3263)] = 138553, + [SMALL_STATE(3264)] = 138576, + [SMALL_STATE(3265)] = 138599, + [SMALL_STATE(3266)] = 138622, + [SMALL_STATE(3267)] = 138645, + [SMALL_STATE(3268)] = 138668, + [SMALL_STATE(3269)] = 138691, + [SMALL_STATE(3270)] = 138714, + [SMALL_STATE(3271)] = 138733, + [SMALL_STATE(3272)] = 138756, + [SMALL_STATE(3273)] = 138779, + [SMALL_STATE(3274)] = 138802, + [SMALL_STATE(3275)] = 138825, + [SMALL_STATE(3276)] = 138848, + [SMALL_STATE(3277)] = 138871, + [SMALL_STATE(3278)] = 138894, + [SMALL_STATE(3279)] = 138917, + [SMALL_STATE(3280)] = 138940, + [SMALL_STATE(3281)] = 138963, + [SMALL_STATE(3282)] = 138986, + [SMALL_STATE(3283)] = 139009, + [SMALL_STATE(3284)] = 139032, + [SMALL_STATE(3285)] = 139055, + [SMALL_STATE(3286)] = 139078, + [SMALL_STATE(3287)] = 139101, + [SMALL_STATE(3288)] = 139124, + [SMALL_STATE(3289)] = 139147, + [SMALL_STATE(3290)] = 139170, + [SMALL_STATE(3291)] = 139193, + [SMALL_STATE(3292)] = 139216, + [SMALL_STATE(3293)] = 139239, + [SMALL_STATE(3294)] = 139262, + [SMALL_STATE(3295)] = 139285, + [SMALL_STATE(3296)] = 139308, + [SMALL_STATE(3297)] = 139331, + [SMALL_STATE(3298)] = 139354, + [SMALL_STATE(3299)] = 139377, + [SMALL_STATE(3300)] = 139396, + [SMALL_STATE(3301)] = 139415, + [SMALL_STATE(3302)] = 139438, + [SMALL_STATE(3303)] = 139461, + [SMALL_STATE(3304)] = 139484, + [SMALL_STATE(3305)] = 139507, + [SMALL_STATE(3306)] = 139528, + [SMALL_STATE(3307)] = 139551, + [SMALL_STATE(3308)] = 139574, + [SMALL_STATE(3309)] = 139597, + [SMALL_STATE(3310)] = 139620, + [SMALL_STATE(3311)] = 139643, + [SMALL_STATE(3312)] = 139666, + [SMALL_STATE(3313)] = 139689, + [SMALL_STATE(3314)] = 139712, + [SMALL_STATE(3315)] = 139735, + [SMALL_STATE(3316)] = 139758, + [SMALL_STATE(3317)] = 139781, + [SMALL_STATE(3318)] = 139804, + [SMALL_STATE(3319)] = 139827, + [SMALL_STATE(3320)] = 139850, + [SMALL_STATE(3321)] = 139873, + [SMALL_STATE(3322)] = 139896, + [SMALL_STATE(3323)] = 139919, + [SMALL_STATE(3324)] = 139940, + [SMALL_STATE(3325)] = 139963, + [SMALL_STATE(3326)] = 139986, + [SMALL_STATE(3327)] = 140009, + [SMALL_STATE(3328)] = 140032, + [SMALL_STATE(3329)] = 140055, + [SMALL_STATE(3330)] = 140078, + [SMALL_STATE(3331)] = 140101, + [SMALL_STATE(3332)] = 140124, + [SMALL_STATE(3333)] = 140147, + [SMALL_STATE(3334)] = 140170, + [SMALL_STATE(3335)] = 140193, + [SMALL_STATE(3336)] = 140216, + [SMALL_STATE(3337)] = 140239, + [SMALL_STATE(3338)] = 140262, + [SMALL_STATE(3339)] = 140285, + [SMALL_STATE(3340)] = 140308, + [SMALL_STATE(3341)] = 140331, + [SMALL_STATE(3342)] = 140354, + [SMALL_STATE(3343)] = 140377, + [SMALL_STATE(3344)] = 140400, + [SMALL_STATE(3345)] = 140423, + [SMALL_STATE(3346)] = 140446, + [SMALL_STATE(3347)] = 140469, + [SMALL_STATE(3348)] = 140492, + [SMALL_STATE(3349)] = 140515, + [SMALL_STATE(3350)] = 140538, + [SMALL_STATE(3351)] = 140561, + [SMALL_STATE(3352)] = 140584, + [SMALL_STATE(3353)] = 140607, + [SMALL_STATE(3354)] = 140630, + [SMALL_STATE(3355)] = 140651, + [SMALL_STATE(3356)] = 140674, + [SMALL_STATE(3357)] = 140693, + [SMALL_STATE(3358)] = 140712, + [SMALL_STATE(3359)] = 140731, + [SMALL_STATE(3360)] = 140750, + [SMALL_STATE(3361)] = 140769, + [SMALL_STATE(3362)] = 140788, + [SMALL_STATE(3363)] = 140811, + [SMALL_STATE(3364)] = 140834, + [SMALL_STATE(3365)] = 140857, + [SMALL_STATE(3366)] = 140876, + [SMALL_STATE(3367)] = 140895, + [SMALL_STATE(3368)] = 140914, + [SMALL_STATE(3369)] = 140933, + [SMALL_STATE(3370)] = 140956, + [SMALL_STATE(3371)] = 140979, + [SMALL_STATE(3372)] = 141002, + [SMALL_STATE(3373)] = 141021, + [SMALL_STATE(3374)] = 141040, + [SMALL_STATE(3375)] = 141059, + [SMALL_STATE(3376)] = 141078, + [SMALL_STATE(3377)] = 141101, + [SMALL_STATE(3378)] = 141124, + [SMALL_STATE(3379)] = 141143, + [SMALL_STATE(3380)] = 141166, + [SMALL_STATE(3381)] = 141185, + [SMALL_STATE(3382)] = 141208, + [SMALL_STATE(3383)] = 141227, + [SMALL_STATE(3384)] = 141250, + [SMALL_STATE(3385)] = 141273, + [SMALL_STATE(3386)] = 141296, + [SMALL_STATE(3387)] = 141319, + [SMALL_STATE(3388)] = 141338, + [SMALL_STATE(3389)] = 141357, + [SMALL_STATE(3390)] = 141376, + [SMALL_STATE(3391)] = 141395, + [SMALL_STATE(3392)] = 141414, + [SMALL_STATE(3393)] = 141433, + [SMALL_STATE(3394)] = 141452, + [SMALL_STATE(3395)] = 141471, + [SMALL_STATE(3396)] = 141494, + [SMALL_STATE(3397)] = 141513, + [SMALL_STATE(3398)] = 141532, + [SMALL_STATE(3399)] = 141551, + [SMALL_STATE(3400)] = 141570, + [SMALL_STATE(3401)] = 141589, + [SMALL_STATE(3402)] = 141608, + [SMALL_STATE(3403)] = 141631, + [SMALL_STATE(3404)] = 141654, + [SMALL_STATE(3405)] = 141673, + [SMALL_STATE(3406)] = 141692, + [SMALL_STATE(3407)] = 141715, + [SMALL_STATE(3408)] = 141738, + [SMALL_STATE(3409)] = 141757, + [SMALL_STATE(3410)] = 141776, + [SMALL_STATE(3411)] = 141795, + [SMALL_STATE(3412)] = 141814, + [SMALL_STATE(3413)] = 141833, + [SMALL_STATE(3414)] = 141856, + [SMALL_STATE(3415)] = 141875, + [SMALL_STATE(3416)] = 141894, + [SMALL_STATE(3417)] = 141917, + [SMALL_STATE(3418)] = 141936, + [SMALL_STATE(3419)] = 141959, + [SMALL_STATE(3420)] = 141982, + [SMALL_STATE(3421)] = 142001, + [SMALL_STATE(3422)] = 142020, + [SMALL_STATE(3423)] = 142039, + [SMALL_STATE(3424)] = 142058, + [SMALL_STATE(3425)] = 142081, + [SMALL_STATE(3426)] = 142104, + [SMALL_STATE(3427)] = 142127, + [SMALL_STATE(3428)] = 142146, + [SMALL_STATE(3429)] = 142169, + [SMALL_STATE(3430)] = 142188, + [SMALL_STATE(3431)] = 142207, + [SMALL_STATE(3432)] = 142226, + [SMALL_STATE(3433)] = 142245, + [SMALL_STATE(3434)] = 142264, + [SMALL_STATE(3435)] = 142287, + [SMALL_STATE(3436)] = 142306, + [SMALL_STATE(3437)] = 142325, + [SMALL_STATE(3438)] = 142344, + [SMALL_STATE(3439)] = 142363, + [SMALL_STATE(3440)] = 142382, + [SMALL_STATE(3441)] = 142405, + [SMALL_STATE(3442)] = 142428, + [SMALL_STATE(3443)] = 142447, + [SMALL_STATE(3444)] = 142466, + [SMALL_STATE(3445)] = 142489, + [SMALL_STATE(3446)] = 142512, + [SMALL_STATE(3447)] = 142531, + [SMALL_STATE(3448)] = 142550, + [SMALL_STATE(3449)] = 142569, + [SMALL_STATE(3450)] = 142588, + [SMALL_STATE(3451)] = 142607, + [SMALL_STATE(3452)] = 142626, + [SMALL_STATE(3453)] = 142649, + [SMALL_STATE(3454)] = 142672, + [SMALL_STATE(3455)] = 142691, + [SMALL_STATE(3456)] = 142714, + [SMALL_STATE(3457)] = 142733, + [SMALL_STATE(3458)] = 142752, + [SMALL_STATE(3459)] = 142775, + [SMALL_STATE(3460)] = 142794, + [SMALL_STATE(3461)] = 142817, + [SMALL_STATE(3462)] = 142840, + [SMALL_STATE(3463)] = 142859, + [SMALL_STATE(3464)] = 142878, + [SMALL_STATE(3465)] = 142897, + [SMALL_STATE(3466)] = 142916, + [SMALL_STATE(3467)] = 142939, + [SMALL_STATE(3468)] = 142958, + [SMALL_STATE(3469)] = 142977, + [SMALL_STATE(3470)] = 142996, + [SMALL_STATE(3471)] = 143015, + [SMALL_STATE(3472)] = 143038, + [SMALL_STATE(3473)] = 143061, + [SMALL_STATE(3474)] = 143080, + [SMALL_STATE(3475)] = 143103, + [SMALL_STATE(3476)] = 143126, + [SMALL_STATE(3477)] = 143145, + [SMALL_STATE(3478)] = 143164, + [SMALL_STATE(3479)] = 143187, + [SMALL_STATE(3480)] = 143206, + [SMALL_STATE(3481)] = 143225, + [SMALL_STATE(3482)] = 143244, + [SMALL_STATE(3483)] = 143263, + [SMALL_STATE(3484)] = 143286, + [SMALL_STATE(3485)] = 143309, + [SMALL_STATE(3486)] = 143328, + [SMALL_STATE(3487)] = 143351, + [SMALL_STATE(3488)] = 143370, + [SMALL_STATE(3489)] = 143393, + [SMALL_STATE(3490)] = 143412, + [SMALL_STATE(3491)] = 143435, + [SMALL_STATE(3492)] = 143454, + [SMALL_STATE(3493)] = 143473, + [SMALL_STATE(3494)] = 143492, + [SMALL_STATE(3495)] = 143515, + [SMALL_STATE(3496)] = 143534, + [SMALL_STATE(3497)] = 143553, + [SMALL_STATE(3498)] = 143576, + [SMALL_STATE(3499)] = 143595, + [SMALL_STATE(3500)] = 143614, + [SMALL_STATE(3501)] = 143633, + [SMALL_STATE(3502)] = 143652, + [SMALL_STATE(3503)] = 143671, + [SMALL_STATE(3504)] = 143694, + [SMALL_STATE(3505)] = 143713, + [SMALL_STATE(3506)] = 143736, + [SMALL_STATE(3507)] = 143755, + [SMALL_STATE(3508)] = 143774, + [SMALL_STATE(3509)] = 143797, + [SMALL_STATE(3510)] = 143820, + [SMALL_STATE(3511)] = 143839, + [SMALL_STATE(3512)] = 143862, + [SMALL_STATE(3513)] = 143885, + [SMALL_STATE(3514)] = 143908, + [SMALL_STATE(3515)] = 143931, + [SMALL_STATE(3516)] = 143954, + [SMALL_STATE(3517)] = 143977, + [SMALL_STATE(3518)] = 144000, + [SMALL_STATE(3519)] = 144023, + [SMALL_STATE(3520)] = 144042, + [SMALL_STATE(3521)] = 144065, + [SMALL_STATE(3522)] = 144088, + [SMALL_STATE(3523)] = 144111, + [SMALL_STATE(3524)] = 144134, + [SMALL_STATE(3525)] = 144157, + [SMALL_STATE(3526)] = 144176, + [SMALL_STATE(3527)] = 144199, + [SMALL_STATE(3528)] = 144222, + [SMALL_STATE(3529)] = 144243, + [SMALL_STATE(3530)] = 144266, + [SMALL_STATE(3531)] = 144289, + [SMALL_STATE(3532)] = 144312, + [SMALL_STATE(3533)] = 144335, + [SMALL_STATE(3534)] = 144358, + [SMALL_STATE(3535)] = 144381, + [SMALL_STATE(3536)] = 144404, + [SMALL_STATE(3537)] = 144427, + [SMALL_STATE(3538)] = 144450, + [SMALL_STATE(3539)] = 144473, + [SMALL_STATE(3540)] = 144496, + [SMALL_STATE(3541)] = 144517, + [SMALL_STATE(3542)] = 144540, + [SMALL_STATE(3543)] = 144563, + [SMALL_STATE(3544)] = 144586, + [SMALL_STATE(3545)] = 144607, + [SMALL_STATE(3546)] = 144630, + [SMALL_STATE(3547)] = 144651, + [SMALL_STATE(3548)] = 144674, + [SMALL_STATE(3549)] = 144697, + [SMALL_STATE(3550)] = 144720, + [SMALL_STATE(3551)] = 144740, + [SMALL_STATE(3552)] = 144760, + [SMALL_STATE(3553)] = 144780, + [SMALL_STATE(3554)] = 144800, + [SMALL_STATE(3555)] = 144820, + [SMALL_STATE(3556)] = 144840, + [SMALL_STATE(3557)] = 144860, + [SMALL_STATE(3558)] = 144880, + [SMALL_STATE(3559)] = 144900, + [SMALL_STATE(3560)] = 144920, + [SMALL_STATE(3561)] = 144940, + [SMALL_STATE(3562)] = 144960, + [SMALL_STATE(3563)] = 144980, + [SMALL_STATE(3564)] = 145000, + [SMALL_STATE(3565)] = 145020, + [SMALL_STATE(3566)] = 145040, + [SMALL_STATE(3567)] = 145060, + [SMALL_STATE(3568)] = 145080, + [SMALL_STATE(3569)] = 145100, + [SMALL_STATE(3570)] = 145120, + [SMALL_STATE(3571)] = 145140, + [SMALL_STATE(3572)] = 145160, + [SMALL_STATE(3573)] = 145180, + [SMALL_STATE(3574)] = 145200, + [SMALL_STATE(3575)] = 145220, + [SMALL_STATE(3576)] = 145240, + [SMALL_STATE(3577)] = 145260, + [SMALL_STATE(3578)] = 145280, + [SMALL_STATE(3579)] = 145300, + [SMALL_STATE(3580)] = 145320, + [SMALL_STATE(3581)] = 145340, + [SMALL_STATE(3582)] = 145360, + [SMALL_STATE(3583)] = 145380, + [SMALL_STATE(3584)] = 145400, + [SMALL_STATE(3585)] = 145418, + [SMALL_STATE(3586)] = 145438, + [SMALL_STATE(3587)] = 145458, + [SMALL_STATE(3588)] = 145478, + [SMALL_STATE(3589)] = 145498, + [SMALL_STATE(3590)] = 145518, + [SMALL_STATE(3591)] = 145538, + [SMALL_STATE(3592)] = 145558, + [SMALL_STATE(3593)] = 145578, + [SMALL_STATE(3594)] = 145598, + [SMALL_STATE(3595)] = 145618, + [SMALL_STATE(3596)] = 145638, + [SMALL_STATE(3597)] = 145658, + [SMALL_STATE(3598)] = 145678, + [SMALL_STATE(3599)] = 145696, + [SMALL_STATE(3600)] = 145716, + [SMALL_STATE(3601)] = 145736, + [SMALL_STATE(3602)] = 145756, + [SMALL_STATE(3603)] = 145776, + [SMALL_STATE(3604)] = 145796, + [SMALL_STATE(3605)] = 145816, + [SMALL_STATE(3606)] = 145836, + [SMALL_STATE(3607)] = 145856, + [SMALL_STATE(3608)] = 145876, + [SMALL_STATE(3609)] = 145896, + [SMALL_STATE(3610)] = 145916, + [SMALL_STATE(3611)] = 145936, + [SMALL_STATE(3612)] = 145956, + [SMALL_STATE(3613)] = 145976, + [SMALL_STATE(3614)] = 145996, + [SMALL_STATE(3615)] = 146016, + [SMALL_STATE(3616)] = 146036, + [SMALL_STATE(3617)] = 146056, + [SMALL_STATE(3618)] = 146076, + [SMALL_STATE(3619)] = 146096, + [SMALL_STATE(3620)] = 146116, + [SMALL_STATE(3621)] = 146136, + [SMALL_STATE(3622)] = 146156, + [SMALL_STATE(3623)] = 146174, + [SMALL_STATE(3624)] = 146194, + [SMALL_STATE(3625)] = 146214, + [SMALL_STATE(3626)] = 146234, + [SMALL_STATE(3627)] = 146254, + [SMALL_STATE(3628)] = 146274, + [SMALL_STATE(3629)] = 146294, + [SMALL_STATE(3630)] = 146314, + [SMALL_STATE(3631)] = 146334, + [SMALL_STATE(3632)] = 146354, + [SMALL_STATE(3633)] = 146372, + [SMALL_STATE(3634)] = 146392, + [SMALL_STATE(3635)] = 146412, + [SMALL_STATE(3636)] = 146432, + [SMALL_STATE(3637)] = 146452, + [SMALL_STATE(3638)] = 146472, + [SMALL_STATE(3639)] = 146492, + [SMALL_STATE(3640)] = 146512, + [SMALL_STATE(3641)] = 146532, + [SMALL_STATE(3642)] = 146552, + [SMALL_STATE(3643)] = 146572, + [SMALL_STATE(3644)] = 146592, + [SMALL_STATE(3645)] = 146612, + [SMALL_STATE(3646)] = 146632, + [SMALL_STATE(3647)] = 146652, + [SMALL_STATE(3648)] = 146672, + [SMALL_STATE(3649)] = 146692, + [SMALL_STATE(3650)] = 146712, + [SMALL_STATE(3651)] = 146732, + [SMALL_STATE(3652)] = 146752, + [SMALL_STATE(3653)] = 146772, + [SMALL_STATE(3654)] = 146792, + [SMALL_STATE(3655)] = 146812, + [SMALL_STATE(3656)] = 146832, + [SMALL_STATE(3657)] = 146852, + [SMALL_STATE(3658)] = 146872, + [SMALL_STATE(3659)] = 146892, + [SMALL_STATE(3660)] = 146912, + [SMALL_STATE(3661)] = 146932, + [SMALL_STATE(3662)] = 146952, + [SMALL_STATE(3663)] = 146972, + [SMALL_STATE(3664)] = 146992, + [SMALL_STATE(3665)] = 147012, + [SMALL_STATE(3666)] = 147032, + [SMALL_STATE(3667)] = 147052, + [SMALL_STATE(3668)] = 147072, + [SMALL_STATE(3669)] = 147092, + [SMALL_STATE(3670)] = 147112, + [SMALL_STATE(3671)] = 147132, + [SMALL_STATE(3672)] = 147152, + [SMALL_STATE(3673)] = 147172, + [SMALL_STATE(3674)] = 147192, + [SMALL_STATE(3675)] = 147212, + [SMALL_STATE(3676)] = 147232, + [SMALL_STATE(3677)] = 147252, + [SMALL_STATE(3678)] = 147272, + [SMALL_STATE(3679)] = 147292, + [SMALL_STATE(3680)] = 147312, + [SMALL_STATE(3681)] = 147330, + [SMALL_STATE(3682)] = 147350, + [SMALL_STATE(3683)] = 147370, + [SMALL_STATE(3684)] = 147388, + [SMALL_STATE(3685)] = 147408, + [SMALL_STATE(3686)] = 147428, + [SMALL_STATE(3687)] = 147448, + [SMALL_STATE(3688)] = 147468, + [SMALL_STATE(3689)] = 147486, + [SMALL_STATE(3690)] = 147504, + [SMALL_STATE(3691)] = 147524, + [SMALL_STATE(3692)] = 147544, + [SMALL_STATE(3693)] = 147564, + [SMALL_STATE(3694)] = 147584, + [SMALL_STATE(3695)] = 147604, + [SMALL_STATE(3696)] = 147624, + [SMALL_STATE(3697)] = 147644, + [SMALL_STATE(3698)] = 147664, + [SMALL_STATE(3699)] = 147684, + [SMALL_STATE(3700)] = 147704, + [SMALL_STATE(3701)] = 147724, + [SMALL_STATE(3702)] = 147744, + [SMALL_STATE(3703)] = 147764, + [SMALL_STATE(3704)] = 147784, + [SMALL_STATE(3705)] = 147804, + [SMALL_STATE(3706)] = 147824, + [SMALL_STATE(3707)] = 147844, + [SMALL_STATE(3708)] = 147864, + [SMALL_STATE(3709)] = 147884, + [SMALL_STATE(3710)] = 147904, + [SMALL_STATE(3711)] = 147924, + [SMALL_STATE(3712)] = 147944, + [SMALL_STATE(3713)] = 147964, + [SMALL_STATE(3714)] = 147984, + [SMALL_STATE(3715)] = 148004, + [SMALL_STATE(3716)] = 148024, + [SMALL_STATE(3717)] = 148044, + [SMALL_STATE(3718)] = 148064, + [SMALL_STATE(3719)] = 148084, + [SMALL_STATE(3720)] = 148104, + [SMALL_STATE(3721)] = 148122, + [SMALL_STATE(3722)] = 148142, + [SMALL_STATE(3723)] = 148162, + [SMALL_STATE(3724)] = 148182, + [SMALL_STATE(3725)] = 148202, + [SMALL_STATE(3726)] = 148222, + [SMALL_STATE(3727)] = 148242, + [SMALL_STATE(3728)] = 148262, + [SMALL_STATE(3729)] = 148282, + [SMALL_STATE(3730)] = 148302, + [SMALL_STATE(3731)] = 148322, + [SMALL_STATE(3732)] = 148342, + [SMALL_STATE(3733)] = 148362, + [SMALL_STATE(3734)] = 148382, + [SMALL_STATE(3735)] = 148402, + [SMALL_STATE(3736)] = 148422, + [SMALL_STATE(3737)] = 148440, + [SMALL_STATE(3738)] = 148460, + [SMALL_STATE(3739)] = 148480, + [SMALL_STATE(3740)] = 148500, + [SMALL_STATE(3741)] = 148520, + [SMALL_STATE(3742)] = 148540, + [SMALL_STATE(3743)] = 148558, + [SMALL_STATE(3744)] = 148578, + [SMALL_STATE(3745)] = 148598, + [SMALL_STATE(3746)] = 148618, + [SMALL_STATE(3747)] = 148638, + [SMALL_STATE(3748)] = 148658, + [SMALL_STATE(3749)] = 148678, + [SMALL_STATE(3750)] = 148698, + [SMALL_STATE(3751)] = 148718, + [SMALL_STATE(3752)] = 148738, + [SMALL_STATE(3753)] = 148758, + [SMALL_STATE(3754)] = 148778, + [SMALL_STATE(3755)] = 148798, + [SMALL_STATE(3756)] = 148818, + [SMALL_STATE(3757)] = 148838, + [SMALL_STATE(3758)] = 148858, + [SMALL_STATE(3759)] = 148878, + [SMALL_STATE(3760)] = 148898, + [SMALL_STATE(3761)] = 148918, + [SMALL_STATE(3762)] = 148938, + [SMALL_STATE(3763)] = 148958, + [SMALL_STATE(3764)] = 148978, + [SMALL_STATE(3765)] = 148998, + [SMALL_STATE(3766)] = 149018, + [SMALL_STATE(3767)] = 149038, + [SMALL_STATE(3768)] = 149058, + [SMALL_STATE(3769)] = 149078, + [SMALL_STATE(3770)] = 149098, + [SMALL_STATE(3771)] = 149118, + [SMALL_STATE(3772)] = 149138, + [SMALL_STATE(3773)] = 149158, + [SMALL_STATE(3774)] = 149178, + [SMALL_STATE(3775)] = 149198, + [SMALL_STATE(3776)] = 149218, + [SMALL_STATE(3777)] = 149238, + [SMALL_STATE(3778)] = 149258, + [SMALL_STATE(3779)] = 149278, + [SMALL_STATE(3780)] = 149298, + [SMALL_STATE(3781)] = 149318, + [SMALL_STATE(3782)] = 149336, + [SMALL_STATE(3783)] = 149356, + [SMALL_STATE(3784)] = 149376, + [SMALL_STATE(3785)] = 149396, + [SMALL_STATE(3786)] = 149416, + [SMALL_STATE(3787)] = 149436, + [SMALL_STATE(3788)] = 149456, + [SMALL_STATE(3789)] = 149476, + [SMALL_STATE(3790)] = 149496, + [SMALL_STATE(3791)] = 149516, + [SMALL_STATE(3792)] = 149536, + [SMALL_STATE(3793)] = 149554, + [SMALL_STATE(3794)] = 149574, + [SMALL_STATE(3795)] = 149594, + [SMALL_STATE(3796)] = 149614, + [SMALL_STATE(3797)] = 149634, + [SMALL_STATE(3798)] = 149654, + [SMALL_STATE(3799)] = 149674, + [SMALL_STATE(3800)] = 149694, + [SMALL_STATE(3801)] = 149714, + [SMALL_STATE(3802)] = 149732, + [SMALL_STATE(3803)] = 149752, + [SMALL_STATE(3804)] = 149770, + [SMALL_STATE(3805)] = 149790, + [SMALL_STATE(3806)] = 149810, + [SMALL_STATE(3807)] = 149830, + [SMALL_STATE(3808)] = 149850, + [SMALL_STATE(3809)] = 149870, + [SMALL_STATE(3810)] = 149890, + [SMALL_STATE(3811)] = 149910, + [SMALL_STATE(3812)] = 149930, + [SMALL_STATE(3813)] = 149950, + [SMALL_STATE(3814)] = 149970, + [SMALL_STATE(3815)] = 149990, + [SMALL_STATE(3816)] = 150010, + [SMALL_STATE(3817)] = 150030, + [SMALL_STATE(3818)] = 150050, + [SMALL_STATE(3819)] = 150070, + [SMALL_STATE(3820)] = 150090, + [SMALL_STATE(3821)] = 150110, + [SMALL_STATE(3822)] = 150130, + [SMALL_STATE(3823)] = 150150, + [SMALL_STATE(3824)] = 150170, + [SMALL_STATE(3825)] = 150190, + [SMALL_STATE(3826)] = 150210, + [SMALL_STATE(3827)] = 150230, + [SMALL_STATE(3828)] = 150250, + [SMALL_STATE(3829)] = 150270, + [SMALL_STATE(3830)] = 150290, + [SMALL_STATE(3831)] = 150308, + [SMALL_STATE(3832)] = 150328, + [SMALL_STATE(3833)] = 150348, + [SMALL_STATE(3834)] = 150368, + [SMALL_STATE(3835)] = 150386, + [SMALL_STATE(3836)] = 150404, + [SMALL_STATE(3837)] = 150424, + [SMALL_STATE(3838)] = 150444, + [SMALL_STATE(3839)] = 150464, + [SMALL_STATE(3840)] = 150484, + [SMALL_STATE(3841)] = 150504, + [SMALL_STATE(3842)] = 150524, + [SMALL_STATE(3843)] = 150544, + [SMALL_STATE(3844)] = 150564, + [SMALL_STATE(3845)] = 150584, + [SMALL_STATE(3846)] = 150604, + [SMALL_STATE(3847)] = 150624, + [SMALL_STATE(3848)] = 150644, + [SMALL_STATE(3849)] = 150664, + [SMALL_STATE(3850)] = 150684, + [SMALL_STATE(3851)] = 150704, + [SMALL_STATE(3852)] = 150724, + [SMALL_STATE(3853)] = 150744, + [SMALL_STATE(3854)] = 150762, + [SMALL_STATE(3855)] = 150782, + [SMALL_STATE(3856)] = 150802, + [SMALL_STATE(3857)] = 150822, + [SMALL_STATE(3858)] = 150840, + [SMALL_STATE(3859)] = 150860, + [SMALL_STATE(3860)] = 150880, + [SMALL_STATE(3861)] = 150900, + [SMALL_STATE(3862)] = 150920, + [SMALL_STATE(3863)] = 150940, + [SMALL_STATE(3864)] = 150960, + [SMALL_STATE(3865)] = 150980, + [SMALL_STATE(3866)] = 151000, + [SMALL_STATE(3867)] = 151020, + [SMALL_STATE(3868)] = 151038, + [SMALL_STATE(3869)] = 151056, + [SMALL_STATE(3870)] = 151076, + [SMALL_STATE(3871)] = 151096, + [SMALL_STATE(3872)] = 151116, + [SMALL_STATE(3873)] = 151136, + [SMALL_STATE(3874)] = 151156, + [SMALL_STATE(3875)] = 151176, + [SMALL_STATE(3876)] = 151194, + [SMALL_STATE(3877)] = 151214, + [SMALL_STATE(3878)] = 151234, + [SMALL_STATE(3879)] = 151254, + [SMALL_STATE(3880)] = 151274, + [SMALL_STATE(3881)] = 151294, + [SMALL_STATE(3882)] = 151314, + [SMALL_STATE(3883)] = 151334, + [SMALL_STATE(3884)] = 151354, + [SMALL_STATE(3885)] = 151374, + [SMALL_STATE(3886)] = 151394, + [SMALL_STATE(3887)] = 151414, + [SMALL_STATE(3888)] = 151434, + [SMALL_STATE(3889)] = 151454, + [SMALL_STATE(3890)] = 151474, + [SMALL_STATE(3891)] = 151494, + [SMALL_STATE(3892)] = 151514, + [SMALL_STATE(3893)] = 151534, + [SMALL_STATE(3894)] = 151554, + [SMALL_STATE(3895)] = 151574, + [SMALL_STATE(3896)] = 151594, + [SMALL_STATE(3897)] = 151614, + [SMALL_STATE(3898)] = 151634, + [SMALL_STATE(3899)] = 151654, + [SMALL_STATE(3900)] = 151674, + [SMALL_STATE(3901)] = 151694, + [SMALL_STATE(3902)] = 151712, + [SMALL_STATE(3903)] = 151732, + [SMALL_STATE(3904)] = 151752, + [SMALL_STATE(3905)] = 151772, + [SMALL_STATE(3906)] = 151792, + [SMALL_STATE(3907)] = 151812, + [SMALL_STATE(3908)] = 151832, + [SMALL_STATE(3909)] = 151852, + [SMALL_STATE(3910)] = 151872, + [SMALL_STATE(3911)] = 151892, + [SMALL_STATE(3912)] = 151912, + [SMALL_STATE(3913)] = 151932, + [SMALL_STATE(3914)] = 151952, + [SMALL_STATE(3915)] = 151972, + [SMALL_STATE(3916)] = 151992, + [SMALL_STATE(3917)] = 152012, + [SMALL_STATE(3918)] = 152032, + [SMALL_STATE(3919)] = 152052, + [SMALL_STATE(3920)] = 152072, + [SMALL_STATE(3921)] = 152092, + [SMALL_STATE(3922)] = 152112, + [SMALL_STATE(3923)] = 152132, + [SMALL_STATE(3924)] = 152152, + [SMALL_STATE(3925)] = 152172, + [SMALL_STATE(3926)] = 152192, + [SMALL_STATE(3927)] = 152212, + [SMALL_STATE(3928)] = 152232, + [SMALL_STATE(3929)] = 152252, + [SMALL_STATE(3930)] = 152272, + [SMALL_STATE(3931)] = 152292, + [SMALL_STATE(3932)] = 152312, + [SMALL_STATE(3933)] = 152332, + [SMALL_STATE(3934)] = 152352, + [SMALL_STATE(3935)] = 152372, + [SMALL_STATE(3936)] = 152390, + [SMALL_STATE(3937)] = 152410, + [SMALL_STATE(3938)] = 152430, + [SMALL_STATE(3939)] = 152450, + [SMALL_STATE(3940)] = 152470, + [SMALL_STATE(3941)] = 152490, + [SMALL_STATE(3942)] = 152510, + [SMALL_STATE(3943)] = 152530, + [SMALL_STATE(3944)] = 152548, + [SMALL_STATE(3945)] = 152566, + [SMALL_STATE(3946)] = 152586, + [SMALL_STATE(3947)] = 152606, + [SMALL_STATE(3948)] = 152626, + [SMALL_STATE(3949)] = 152646, + [SMALL_STATE(3950)] = 152666, + [SMALL_STATE(3951)] = 152686, + [SMALL_STATE(3952)] = 152706, + [SMALL_STATE(3953)] = 152726, + [SMALL_STATE(3954)] = 152746, + [SMALL_STATE(3955)] = 152766, + [SMALL_STATE(3956)] = 152786, + [SMALL_STATE(3957)] = 152804, + [SMALL_STATE(3958)] = 152824, + [SMALL_STATE(3959)] = 152844, + [SMALL_STATE(3960)] = 152864, + [SMALL_STATE(3961)] = 152884, + [SMALL_STATE(3962)] = 152904, + [SMALL_STATE(3963)] = 152924, + [SMALL_STATE(3964)] = 152944, + [SMALL_STATE(3965)] = 152962, + [SMALL_STATE(3966)] = 152982, + [SMALL_STATE(3967)] = 153000, + [SMALL_STATE(3968)] = 153020, + [SMALL_STATE(3969)] = 153040, + [SMALL_STATE(3970)] = 153060, + [SMALL_STATE(3971)] = 153080, + [SMALL_STATE(3972)] = 153100, + [SMALL_STATE(3973)] = 153118, + [SMALL_STATE(3974)] = 153138, + [SMALL_STATE(3975)] = 153158, + [SMALL_STATE(3976)] = 153178, + [SMALL_STATE(3977)] = 153198, + [SMALL_STATE(3978)] = 153216, + [SMALL_STATE(3979)] = 153236, + [SMALL_STATE(3980)] = 153256, + [SMALL_STATE(3981)] = 153276, + [SMALL_STATE(3982)] = 153296, + [SMALL_STATE(3983)] = 153316, + [SMALL_STATE(3984)] = 153336, + [SMALL_STATE(3985)] = 153356, + [SMALL_STATE(3986)] = 153376, + [SMALL_STATE(3987)] = 153396, + [SMALL_STATE(3988)] = 153414, + [SMALL_STATE(3989)] = 153434, + [SMALL_STATE(3990)] = 153454, + [SMALL_STATE(3991)] = 153474, + [SMALL_STATE(3992)] = 153494, + [SMALL_STATE(3993)] = 153514, + [SMALL_STATE(3994)] = 153534, + [SMALL_STATE(3995)] = 153554, + [SMALL_STATE(3996)] = 153572, + [SMALL_STATE(3997)] = 153592, + [SMALL_STATE(3998)] = 153612, + [SMALL_STATE(3999)] = 153632, + [SMALL_STATE(4000)] = 153652, + [SMALL_STATE(4001)] = 153672, + [SMALL_STATE(4002)] = 153690, + [SMALL_STATE(4003)] = 153710, + [SMALL_STATE(4004)] = 153730, + [SMALL_STATE(4005)] = 153750, + [SMALL_STATE(4006)] = 153770, + [SMALL_STATE(4007)] = 153790, + [SMALL_STATE(4008)] = 153810, + [SMALL_STATE(4009)] = 153828, + [SMALL_STATE(4010)] = 153848, + [SMALL_STATE(4011)] = 153868, + [SMALL_STATE(4012)] = 153888, + [SMALL_STATE(4013)] = 153908, + [SMALL_STATE(4014)] = 153928, + [SMALL_STATE(4015)] = 153948, + [SMALL_STATE(4016)] = 153968, + [SMALL_STATE(4017)] = 153988, + [SMALL_STATE(4018)] = 154008, + [SMALL_STATE(4019)] = 154028, + [SMALL_STATE(4020)] = 154048, + [SMALL_STATE(4021)] = 154068, + [SMALL_STATE(4022)] = 154088, + [SMALL_STATE(4023)] = 154108, + [SMALL_STATE(4024)] = 154128, + [SMALL_STATE(4025)] = 154148, + [SMALL_STATE(4026)] = 154168, + [SMALL_STATE(4027)] = 154186, + [SMALL_STATE(4028)] = 154206, + [SMALL_STATE(4029)] = 154224, + [SMALL_STATE(4030)] = 154244, + [SMALL_STATE(4031)] = 154264, + [SMALL_STATE(4032)] = 154284, + [SMALL_STATE(4033)] = 154304, + [SMALL_STATE(4034)] = 154324, + [SMALL_STATE(4035)] = 154344, + [SMALL_STATE(4036)] = 154364, + [SMALL_STATE(4037)] = 154384, + [SMALL_STATE(4038)] = 154404, + [SMALL_STATE(4039)] = 154424, + [SMALL_STATE(4040)] = 154442, + [SMALL_STATE(4041)] = 154462, + [SMALL_STATE(4042)] = 154482, + [SMALL_STATE(4043)] = 154502, + [SMALL_STATE(4044)] = 154522, + [SMALL_STATE(4045)] = 154542, + [SMALL_STATE(4046)] = 154562, + [SMALL_STATE(4047)] = 154580, + [SMALL_STATE(4048)] = 154600, + [SMALL_STATE(4049)] = 154620, + [SMALL_STATE(4050)] = 154640, + [SMALL_STATE(4051)] = 154660, + [SMALL_STATE(4052)] = 154680, + [SMALL_STATE(4053)] = 154700, + [SMALL_STATE(4054)] = 154720, + [SMALL_STATE(4055)] = 154740, + [SMALL_STATE(4056)] = 154758, + [SMALL_STATE(4057)] = 154778, + [SMALL_STATE(4058)] = 154798, + [SMALL_STATE(4059)] = 154816, + [SMALL_STATE(4060)] = 154834, + [SMALL_STATE(4061)] = 154852, + [SMALL_STATE(4062)] = 154872, + [SMALL_STATE(4063)] = 154892, + [SMALL_STATE(4064)] = 154912, + [SMALL_STATE(4065)] = 154930, + [SMALL_STATE(4066)] = 154950, + [SMALL_STATE(4067)] = 154970, + [SMALL_STATE(4068)] = 154990, + [SMALL_STATE(4069)] = 155010, + [SMALL_STATE(4070)] = 155028, + [SMALL_STATE(4071)] = 155048, + [SMALL_STATE(4072)] = 155068, + [SMALL_STATE(4073)] = 155088, + [SMALL_STATE(4074)] = 155108, + [SMALL_STATE(4075)] = 155128, + [SMALL_STATE(4076)] = 155148, + [SMALL_STATE(4077)] = 155168, + [SMALL_STATE(4078)] = 155188, + [SMALL_STATE(4079)] = 155208, + [SMALL_STATE(4080)] = 155225, + [SMALL_STATE(4081)] = 155242, + [SMALL_STATE(4082)] = 155259, + [SMALL_STATE(4083)] = 155276, + [SMALL_STATE(4084)] = 155293, + [SMALL_STATE(4085)] = 155310, + [SMALL_STATE(4086)] = 155327, + [SMALL_STATE(4087)] = 155344, + [SMALL_STATE(4088)] = 155361, + [SMALL_STATE(4089)] = 155378, + [SMALL_STATE(4090)] = 155395, + [SMALL_STATE(4091)] = 155412, + [SMALL_STATE(4092)] = 155429, + [SMALL_STATE(4093)] = 155446, + [SMALL_STATE(4094)] = 155463, + [SMALL_STATE(4095)] = 155480, + [SMALL_STATE(4096)] = 155497, + [SMALL_STATE(4097)] = 155514, + [SMALL_STATE(4098)] = 155531, + [SMALL_STATE(4099)] = 155548, + [SMALL_STATE(4100)] = 155565, + [SMALL_STATE(4101)] = 155582, + [SMALL_STATE(4102)] = 155599, + [SMALL_STATE(4103)] = 155616, + [SMALL_STATE(4104)] = 155633, + [SMALL_STATE(4105)] = 155650, + [SMALL_STATE(4106)] = 155667, + [SMALL_STATE(4107)] = 155684, + [SMALL_STATE(4108)] = 155701, + [SMALL_STATE(4109)] = 155718, + [SMALL_STATE(4110)] = 155735, + [SMALL_STATE(4111)] = 155752, + [SMALL_STATE(4112)] = 155769, + [SMALL_STATE(4113)] = 155786, + [SMALL_STATE(4114)] = 155803, + [SMALL_STATE(4115)] = 155820, + [SMALL_STATE(4116)] = 155837, + [SMALL_STATE(4117)] = 155854, + [SMALL_STATE(4118)] = 155871, + [SMALL_STATE(4119)] = 155888, + [SMALL_STATE(4120)] = 155905, + [SMALL_STATE(4121)] = 155922, + [SMALL_STATE(4122)] = 155939, + [SMALL_STATE(4123)] = 155956, + [SMALL_STATE(4124)] = 155973, + [SMALL_STATE(4125)] = 155990, + [SMALL_STATE(4126)] = 156007, + [SMALL_STATE(4127)] = 156024, + [SMALL_STATE(4128)] = 156041, + [SMALL_STATE(4129)] = 156058, + [SMALL_STATE(4130)] = 156075, + [SMALL_STATE(4131)] = 156092, + [SMALL_STATE(4132)] = 156109, + [SMALL_STATE(4133)] = 156126, + [SMALL_STATE(4134)] = 156143, + [SMALL_STATE(4135)] = 156160, + [SMALL_STATE(4136)] = 156177, + [SMALL_STATE(4137)] = 156194, + [SMALL_STATE(4138)] = 156211, + [SMALL_STATE(4139)] = 156228, + [SMALL_STATE(4140)] = 156245, + [SMALL_STATE(4141)] = 156262, + [SMALL_STATE(4142)] = 156279, + [SMALL_STATE(4143)] = 156296, + [SMALL_STATE(4144)] = 156313, + [SMALL_STATE(4145)] = 156330, + [SMALL_STATE(4146)] = 156347, + [SMALL_STATE(4147)] = 156364, + [SMALL_STATE(4148)] = 156381, + [SMALL_STATE(4149)] = 156398, + [SMALL_STATE(4150)] = 156415, + [SMALL_STATE(4151)] = 156432, + [SMALL_STATE(4152)] = 156449, + [SMALL_STATE(4153)] = 156466, + [SMALL_STATE(4154)] = 156483, + [SMALL_STATE(4155)] = 156500, + [SMALL_STATE(4156)] = 156517, + [SMALL_STATE(4157)] = 156534, + [SMALL_STATE(4158)] = 156551, + [SMALL_STATE(4159)] = 156568, + [SMALL_STATE(4160)] = 156585, + [SMALL_STATE(4161)] = 156602, + [SMALL_STATE(4162)] = 156619, + [SMALL_STATE(4163)] = 156636, + [SMALL_STATE(4164)] = 156653, + [SMALL_STATE(4165)] = 156670, + [SMALL_STATE(4166)] = 156687, + [SMALL_STATE(4167)] = 156704, + [SMALL_STATE(4168)] = 156721, + [SMALL_STATE(4169)] = 156738, + [SMALL_STATE(4170)] = 156755, + [SMALL_STATE(4171)] = 156772, + [SMALL_STATE(4172)] = 156789, + [SMALL_STATE(4173)] = 156806, + [SMALL_STATE(4174)] = 156823, + [SMALL_STATE(4175)] = 156840, + [SMALL_STATE(4176)] = 156857, + [SMALL_STATE(4177)] = 156874, + [SMALL_STATE(4178)] = 156891, + [SMALL_STATE(4179)] = 156908, + [SMALL_STATE(4180)] = 156925, + [SMALL_STATE(4181)] = 156942, + [SMALL_STATE(4182)] = 156959, + [SMALL_STATE(4183)] = 156976, + [SMALL_STATE(4184)] = 156993, + [SMALL_STATE(4185)] = 157010, + [SMALL_STATE(4186)] = 157027, + [SMALL_STATE(4187)] = 157044, + [SMALL_STATE(4188)] = 157061, + [SMALL_STATE(4189)] = 157078, + [SMALL_STATE(4190)] = 157095, + [SMALL_STATE(4191)] = 157112, + [SMALL_STATE(4192)] = 157129, + [SMALL_STATE(4193)] = 157146, + [SMALL_STATE(4194)] = 157163, + [SMALL_STATE(4195)] = 157180, + [SMALL_STATE(4196)] = 157197, + [SMALL_STATE(4197)] = 157214, + [SMALL_STATE(4198)] = 157231, + [SMALL_STATE(4199)] = 157248, + [SMALL_STATE(4200)] = 157265, + [SMALL_STATE(4201)] = 157282, + [SMALL_STATE(4202)] = 157299, + [SMALL_STATE(4203)] = 157316, + [SMALL_STATE(4204)] = 157333, + [SMALL_STATE(4205)] = 157350, + [SMALL_STATE(4206)] = 157367, + [SMALL_STATE(4207)] = 157384, + [SMALL_STATE(4208)] = 157401, + [SMALL_STATE(4209)] = 157418, + [SMALL_STATE(4210)] = 157435, + [SMALL_STATE(4211)] = 157452, + [SMALL_STATE(4212)] = 157469, + [SMALL_STATE(4213)] = 157486, + [SMALL_STATE(4214)] = 157503, + [SMALL_STATE(4215)] = 157520, + [SMALL_STATE(4216)] = 157537, + [SMALL_STATE(4217)] = 157554, + [SMALL_STATE(4218)] = 157571, + [SMALL_STATE(4219)] = 157588, + [SMALL_STATE(4220)] = 157605, + [SMALL_STATE(4221)] = 157622, + [SMALL_STATE(4222)] = 157639, + [SMALL_STATE(4223)] = 157656, + [SMALL_STATE(4224)] = 157673, + [SMALL_STATE(4225)] = 157690, + [SMALL_STATE(4226)] = 157707, + [SMALL_STATE(4227)] = 157724, + [SMALL_STATE(4228)] = 157741, + [SMALL_STATE(4229)] = 157758, + [SMALL_STATE(4230)] = 157775, + [SMALL_STATE(4231)] = 157792, + [SMALL_STATE(4232)] = 157809, + [SMALL_STATE(4233)] = 157826, + [SMALL_STATE(4234)] = 157843, + [SMALL_STATE(4235)] = 157860, + [SMALL_STATE(4236)] = 157877, + [SMALL_STATE(4237)] = 157894, + [SMALL_STATE(4238)] = 157911, + [SMALL_STATE(4239)] = 157928, + [SMALL_STATE(4240)] = 157945, + [SMALL_STATE(4241)] = 157962, + [SMALL_STATE(4242)] = 157979, + [SMALL_STATE(4243)] = 157996, + [SMALL_STATE(4244)] = 158013, + [SMALL_STATE(4245)] = 158030, + [SMALL_STATE(4246)] = 158047, + [SMALL_STATE(4247)] = 158064, + [SMALL_STATE(4248)] = 158081, + [SMALL_STATE(4249)] = 158098, + [SMALL_STATE(4250)] = 158115, + [SMALL_STATE(4251)] = 158132, + [SMALL_STATE(4252)] = 158149, + [SMALL_STATE(4253)] = 158166, + [SMALL_STATE(4254)] = 158183, + [SMALL_STATE(4255)] = 158200, + [SMALL_STATE(4256)] = 158217, + [SMALL_STATE(4257)] = 158234, + [SMALL_STATE(4258)] = 158251, + [SMALL_STATE(4259)] = 158268, + [SMALL_STATE(4260)] = 158285, + [SMALL_STATE(4261)] = 158302, + [SMALL_STATE(4262)] = 158319, + [SMALL_STATE(4263)] = 158336, + [SMALL_STATE(4264)] = 158353, + [SMALL_STATE(4265)] = 158370, + [SMALL_STATE(4266)] = 158387, + [SMALL_STATE(4267)] = 158404, + [SMALL_STATE(4268)] = 158421, + [SMALL_STATE(4269)] = 158438, + [SMALL_STATE(4270)] = 158455, + [SMALL_STATE(4271)] = 158472, + [SMALL_STATE(4272)] = 158489, + [SMALL_STATE(4273)] = 158506, + [SMALL_STATE(4274)] = 158523, + [SMALL_STATE(4275)] = 158540, + [SMALL_STATE(4276)] = 158557, + [SMALL_STATE(4277)] = 158574, + [SMALL_STATE(4278)] = 158591, + [SMALL_STATE(4279)] = 158608, + [SMALL_STATE(4280)] = 158625, + [SMALL_STATE(4281)] = 158642, + [SMALL_STATE(4282)] = 158659, + [SMALL_STATE(4283)] = 158676, + [SMALL_STATE(4284)] = 158693, + [SMALL_STATE(4285)] = 158710, + [SMALL_STATE(4286)] = 158727, + [SMALL_STATE(4287)] = 158744, + [SMALL_STATE(4288)] = 158761, + [SMALL_STATE(4289)] = 158778, + [SMALL_STATE(4290)] = 158795, + [SMALL_STATE(4291)] = 158812, + [SMALL_STATE(4292)] = 158829, + [SMALL_STATE(4293)] = 158846, + [SMALL_STATE(4294)] = 158863, + [SMALL_STATE(4295)] = 158880, + [SMALL_STATE(4296)] = 158897, + [SMALL_STATE(4297)] = 158914, + [SMALL_STATE(4298)] = 158931, + [SMALL_STATE(4299)] = 158948, + [SMALL_STATE(4300)] = 158965, + [SMALL_STATE(4301)] = 158982, + [SMALL_STATE(4302)] = 158999, + [SMALL_STATE(4303)] = 159016, + [SMALL_STATE(4304)] = 159033, + [SMALL_STATE(4305)] = 159050, + [SMALL_STATE(4306)] = 159067, + [SMALL_STATE(4307)] = 159084, + [SMALL_STATE(4308)] = 159101, + [SMALL_STATE(4309)] = 159118, + [SMALL_STATE(4310)] = 159135, + [SMALL_STATE(4311)] = 159152, + [SMALL_STATE(4312)] = 159169, + [SMALL_STATE(4313)] = 159186, + [SMALL_STATE(4314)] = 159203, + [SMALL_STATE(4315)] = 159220, + [SMALL_STATE(4316)] = 159237, + [SMALL_STATE(4317)] = 159254, + [SMALL_STATE(4318)] = 159271, + [SMALL_STATE(4319)] = 159288, + [SMALL_STATE(4320)] = 159305, + [SMALL_STATE(4321)] = 159322, + [SMALL_STATE(4322)] = 159339, + [SMALL_STATE(4323)] = 159356, + [SMALL_STATE(4324)] = 159373, + [SMALL_STATE(4325)] = 159390, + [SMALL_STATE(4326)] = 159407, + [SMALL_STATE(4327)] = 159424, + [SMALL_STATE(4328)] = 159441, + [SMALL_STATE(4329)] = 159458, + [SMALL_STATE(4330)] = 159475, + [SMALL_STATE(4331)] = 159492, + [SMALL_STATE(4332)] = 159509, + [SMALL_STATE(4333)] = 159526, + [SMALL_STATE(4334)] = 159543, + [SMALL_STATE(4335)] = 159560, + [SMALL_STATE(4336)] = 159577, + [SMALL_STATE(4337)] = 159594, + [SMALL_STATE(4338)] = 159611, + [SMALL_STATE(4339)] = 159628, + [SMALL_STATE(4340)] = 159645, + [SMALL_STATE(4341)] = 159662, + [SMALL_STATE(4342)] = 159679, + [SMALL_STATE(4343)] = 159696, + [SMALL_STATE(4344)] = 159713, + [SMALL_STATE(4345)] = 159730, + [SMALL_STATE(4346)] = 159747, + [SMALL_STATE(4347)] = 159764, + [SMALL_STATE(4348)] = 159781, + [SMALL_STATE(4349)] = 159798, + [SMALL_STATE(4350)] = 159815, + [SMALL_STATE(4351)] = 159832, + [SMALL_STATE(4352)] = 159849, + [SMALL_STATE(4353)] = 159866, + [SMALL_STATE(4354)] = 159883, + [SMALL_STATE(4355)] = 159900, + [SMALL_STATE(4356)] = 159917, + [SMALL_STATE(4357)] = 159934, + [SMALL_STATE(4358)] = 159951, + [SMALL_STATE(4359)] = 159968, + [SMALL_STATE(4360)] = 159985, + [SMALL_STATE(4361)] = 160002, + [SMALL_STATE(4362)] = 160019, + [SMALL_STATE(4363)] = 160036, + [SMALL_STATE(4364)] = 160053, + [SMALL_STATE(4365)] = 160070, + [SMALL_STATE(4366)] = 160087, + [SMALL_STATE(4367)] = 160104, + [SMALL_STATE(4368)] = 160121, + [SMALL_STATE(4369)] = 160138, + [SMALL_STATE(4370)] = 160155, + [SMALL_STATE(4371)] = 160172, + [SMALL_STATE(4372)] = 160189, + [SMALL_STATE(4373)] = 160206, + [SMALL_STATE(4374)] = 160223, + [SMALL_STATE(4375)] = 160240, + [SMALL_STATE(4376)] = 160257, + [SMALL_STATE(4377)] = 160274, + [SMALL_STATE(4378)] = 160291, + [SMALL_STATE(4379)] = 160308, + [SMALL_STATE(4380)] = 160325, + [SMALL_STATE(4381)] = 160342, + [SMALL_STATE(4382)] = 160359, + [SMALL_STATE(4383)] = 160376, + [SMALL_STATE(4384)] = 160393, + [SMALL_STATE(4385)] = 160410, + [SMALL_STATE(4386)] = 160427, + [SMALL_STATE(4387)] = 160444, + [SMALL_STATE(4388)] = 160461, + [SMALL_STATE(4389)] = 160478, + [SMALL_STATE(4390)] = 160495, + [SMALL_STATE(4391)] = 160512, + [SMALL_STATE(4392)] = 160529, + [SMALL_STATE(4393)] = 160546, + [SMALL_STATE(4394)] = 160563, + [SMALL_STATE(4395)] = 160580, + [SMALL_STATE(4396)] = 160597, + [SMALL_STATE(4397)] = 160614, + [SMALL_STATE(4398)] = 160631, + [SMALL_STATE(4399)] = 160648, + [SMALL_STATE(4400)] = 160665, + [SMALL_STATE(4401)] = 160682, + [SMALL_STATE(4402)] = 160699, + [SMALL_STATE(4403)] = 160716, + [SMALL_STATE(4404)] = 160733, + [SMALL_STATE(4405)] = 160750, + [SMALL_STATE(4406)] = 160767, + [SMALL_STATE(4407)] = 160784, + [SMALL_STATE(4408)] = 160801, + [SMALL_STATE(4409)] = 160818, + [SMALL_STATE(4410)] = 160835, + [SMALL_STATE(4411)] = 160852, + [SMALL_STATE(4412)] = 160869, + [SMALL_STATE(4413)] = 160886, + [SMALL_STATE(4414)] = 160903, + [SMALL_STATE(4415)] = 160920, + [SMALL_STATE(4416)] = 160937, + [SMALL_STATE(4417)] = 160954, + [SMALL_STATE(4418)] = 160971, + [SMALL_STATE(4419)] = 160988, + [SMALL_STATE(4420)] = 161005, + [SMALL_STATE(4421)] = 161022, + [SMALL_STATE(4422)] = 161039, + [SMALL_STATE(4423)] = 161056, + [SMALL_STATE(4424)] = 161073, + [SMALL_STATE(4425)] = 161090, + [SMALL_STATE(4426)] = 161107, + [SMALL_STATE(4427)] = 161124, + [SMALL_STATE(4428)] = 161141, + [SMALL_STATE(4429)] = 161158, + [SMALL_STATE(4430)] = 161175, + [SMALL_STATE(4431)] = 161192, + [SMALL_STATE(4432)] = 161209, + [SMALL_STATE(4433)] = 161226, + [SMALL_STATE(4434)] = 161243, + [SMALL_STATE(4435)] = 161260, + [SMALL_STATE(4436)] = 161277, + [SMALL_STATE(4437)] = 161294, + [SMALL_STATE(4438)] = 161311, + [SMALL_STATE(4439)] = 161328, + [SMALL_STATE(4440)] = 161345, + [SMALL_STATE(4441)] = 161362, + [SMALL_STATE(4442)] = 161379, + [SMALL_STATE(4443)] = 161396, + [SMALL_STATE(4444)] = 161413, + [SMALL_STATE(4445)] = 161430, + [SMALL_STATE(4446)] = 161447, + [SMALL_STATE(4447)] = 161464, + [SMALL_STATE(4448)] = 161481, + [SMALL_STATE(4449)] = 161498, + [SMALL_STATE(4450)] = 161515, + [SMALL_STATE(4451)] = 161532, + [SMALL_STATE(4452)] = 161549, + [SMALL_STATE(4453)] = 161566, + [SMALL_STATE(4454)] = 161583, + [SMALL_STATE(4455)] = 161600, + [SMALL_STATE(4456)] = 161617, + [SMALL_STATE(4457)] = 161634, + [SMALL_STATE(4458)] = 161651, + [SMALL_STATE(4459)] = 161668, + [SMALL_STATE(4460)] = 161685, + [SMALL_STATE(4461)] = 161702, + [SMALL_STATE(4462)] = 161719, + [SMALL_STATE(4463)] = 161736, + [SMALL_STATE(4464)] = 161753, + [SMALL_STATE(4465)] = 161770, + [SMALL_STATE(4466)] = 161787, + [SMALL_STATE(4467)] = 161804, + [SMALL_STATE(4468)] = 161821, + [SMALL_STATE(4469)] = 161838, + [SMALL_STATE(4470)] = 161855, + [SMALL_STATE(4471)] = 161872, + [SMALL_STATE(4472)] = 161889, + [SMALL_STATE(4473)] = 161906, + [SMALL_STATE(4474)] = 161923, + [SMALL_STATE(4475)] = 161940, + [SMALL_STATE(4476)] = 161957, + [SMALL_STATE(4477)] = 161974, + [SMALL_STATE(4478)] = 161991, + [SMALL_STATE(4479)] = 162008, + [SMALL_STATE(4480)] = 162025, + [SMALL_STATE(4481)] = 162042, + [SMALL_STATE(4482)] = 162059, + [SMALL_STATE(4483)] = 162076, + [SMALL_STATE(4484)] = 162093, + [SMALL_STATE(4485)] = 162110, + [SMALL_STATE(4486)] = 162127, + [SMALL_STATE(4487)] = 162144, + [SMALL_STATE(4488)] = 162161, + [SMALL_STATE(4489)] = 162178, + [SMALL_STATE(4490)] = 162195, + [SMALL_STATE(4491)] = 162212, + [SMALL_STATE(4492)] = 162229, + [SMALL_STATE(4493)] = 162246, + [SMALL_STATE(4494)] = 162263, + [SMALL_STATE(4495)] = 162280, + [SMALL_STATE(4496)] = 162297, + [SMALL_STATE(4497)] = 162314, + [SMALL_STATE(4498)] = 162331, + [SMALL_STATE(4499)] = 162348, + [SMALL_STATE(4500)] = 162365, + [SMALL_STATE(4501)] = 162382, + [SMALL_STATE(4502)] = 162399, + [SMALL_STATE(4503)] = 162416, + [SMALL_STATE(4504)] = 162433, + [SMALL_STATE(4505)] = 162450, + [SMALL_STATE(4506)] = 162467, + [SMALL_STATE(4507)] = 162484, + [SMALL_STATE(4508)] = 162501, + [SMALL_STATE(4509)] = 162518, + [SMALL_STATE(4510)] = 162535, + [SMALL_STATE(4511)] = 162552, + [SMALL_STATE(4512)] = 162569, + [SMALL_STATE(4513)] = 162586, + [SMALL_STATE(4514)] = 162603, + [SMALL_STATE(4515)] = 162620, + [SMALL_STATE(4516)] = 162637, + [SMALL_STATE(4517)] = 162654, + [SMALL_STATE(4518)] = 162671, + [SMALL_STATE(4519)] = 162688, + [SMALL_STATE(4520)] = 162705, + [SMALL_STATE(4521)] = 162722, + [SMALL_STATE(4522)] = 162739, + [SMALL_STATE(4523)] = 162756, + [SMALL_STATE(4524)] = 162773, + [SMALL_STATE(4525)] = 162790, + [SMALL_STATE(4526)] = 162807, + [SMALL_STATE(4527)] = 162824, + [SMALL_STATE(4528)] = 162841, + [SMALL_STATE(4529)] = 162858, + [SMALL_STATE(4530)] = 162875, + [SMALL_STATE(4531)] = 162892, + [SMALL_STATE(4532)] = 162909, + [SMALL_STATE(4533)] = 162926, + [SMALL_STATE(4534)] = 162943, + [SMALL_STATE(4535)] = 162960, + [SMALL_STATE(4536)] = 162977, + [SMALL_STATE(4537)] = 162994, + [SMALL_STATE(4538)] = 163011, + [SMALL_STATE(4539)] = 163028, + [SMALL_STATE(4540)] = 163045, + [SMALL_STATE(4541)] = 163062, + [SMALL_STATE(4542)] = 163079, + [SMALL_STATE(4543)] = 163096, + [SMALL_STATE(4544)] = 163113, + [SMALL_STATE(4545)] = 163130, + [SMALL_STATE(4546)] = 163147, + [SMALL_STATE(4547)] = 163164, + [SMALL_STATE(4548)] = 163181, + [SMALL_STATE(4549)] = 163198, + [SMALL_STATE(4550)] = 163215, + [SMALL_STATE(4551)] = 163232, + [SMALL_STATE(4552)] = 163249, + [SMALL_STATE(4553)] = 163266, + [SMALL_STATE(4554)] = 163283, + [SMALL_STATE(4555)] = 163300, + [SMALL_STATE(4556)] = 163317, + [SMALL_STATE(4557)] = 163334, + [SMALL_STATE(4558)] = 163351, + [SMALL_STATE(4559)] = 163368, + [SMALL_STATE(4560)] = 163385, + [SMALL_STATE(4561)] = 163402, + [SMALL_STATE(4562)] = 163419, + [SMALL_STATE(4563)] = 163436, + [SMALL_STATE(4564)] = 163453, + [SMALL_STATE(4565)] = 163470, + [SMALL_STATE(4566)] = 163487, + [SMALL_STATE(4567)] = 163504, + [SMALL_STATE(4568)] = 163521, + [SMALL_STATE(4569)] = 163538, + [SMALL_STATE(4570)] = 163555, + [SMALL_STATE(4571)] = 163572, + [SMALL_STATE(4572)] = 163589, + [SMALL_STATE(4573)] = 163606, + [SMALL_STATE(4574)] = 163623, + [SMALL_STATE(4575)] = 163640, + [SMALL_STATE(4576)] = 163657, + [SMALL_STATE(4577)] = 163674, + [SMALL_STATE(4578)] = 163691, + [SMALL_STATE(4579)] = 163708, + [SMALL_STATE(4580)] = 163725, + [SMALL_STATE(4581)] = 163742, + [SMALL_STATE(4582)] = 163759, + [SMALL_STATE(4583)] = 163776, + [SMALL_STATE(4584)] = 163793, + [SMALL_STATE(4585)] = 163810, + [SMALL_STATE(4586)] = 163827, + [SMALL_STATE(4587)] = 163844, + [SMALL_STATE(4588)] = 163861, + [SMALL_STATE(4589)] = 163878, + [SMALL_STATE(4590)] = 163895, + [SMALL_STATE(4591)] = 163912, + [SMALL_STATE(4592)] = 163929, + [SMALL_STATE(4593)] = 163946, + [SMALL_STATE(4594)] = 163963, + [SMALL_STATE(4595)] = 163980, + [SMALL_STATE(4596)] = 163997, + [SMALL_STATE(4597)] = 164014, + [SMALL_STATE(4598)] = 164031, + [SMALL_STATE(4599)] = 164048, + [SMALL_STATE(4600)] = 164065, + [SMALL_STATE(4601)] = 164082, + [SMALL_STATE(4602)] = 164099, + [SMALL_STATE(4603)] = 164116, + [SMALL_STATE(4604)] = 164133, + [SMALL_STATE(4605)] = 164150, + [SMALL_STATE(4606)] = 164167, + [SMALL_STATE(4607)] = 164184, + [SMALL_STATE(4608)] = 164201, + [SMALL_STATE(4609)] = 164218, + [SMALL_STATE(4610)] = 164235, + [SMALL_STATE(4611)] = 164252, + [SMALL_STATE(4612)] = 164269, + [SMALL_STATE(4613)] = 164286, + [SMALL_STATE(4614)] = 164303, + [SMALL_STATE(4615)] = 164320, + [SMALL_STATE(4616)] = 164337, + [SMALL_STATE(4617)] = 164354, + [SMALL_STATE(4618)] = 164371, + [SMALL_STATE(4619)] = 164388, + [SMALL_STATE(4620)] = 164405, + [SMALL_STATE(4621)] = 164422, + [SMALL_STATE(4622)] = 164439, + [SMALL_STATE(4623)] = 164456, + [SMALL_STATE(4624)] = 164473, + [SMALL_STATE(4625)] = 164490, + [SMALL_STATE(4626)] = 164507, + [SMALL_STATE(4627)] = 164524, + [SMALL_STATE(4628)] = 164541, + [SMALL_STATE(4629)] = 164558, + [SMALL_STATE(4630)] = 164575, + [SMALL_STATE(4631)] = 164592, + [SMALL_STATE(4632)] = 164609, + [SMALL_STATE(4633)] = 164626, + [SMALL_STATE(4634)] = 164643, + [SMALL_STATE(4635)] = 164660, + [SMALL_STATE(4636)] = 164677, + [SMALL_STATE(4637)] = 164694, + [SMALL_STATE(4638)] = 164711, + [SMALL_STATE(4639)] = 164728, + [SMALL_STATE(4640)] = 164745, + [SMALL_STATE(4641)] = 164762, + [SMALL_STATE(4642)] = 164779, + [SMALL_STATE(4643)] = 164796, + [SMALL_STATE(4644)] = 164813, + [SMALL_STATE(4645)] = 164830, + [SMALL_STATE(4646)] = 164847, + [SMALL_STATE(4647)] = 164864, + [SMALL_STATE(4648)] = 164881, + [SMALL_STATE(4649)] = 164898, + [SMALL_STATE(4650)] = 164915, + [SMALL_STATE(4651)] = 164932, + [SMALL_STATE(4652)] = 164949, + [SMALL_STATE(4653)] = 164966, + [SMALL_STATE(4654)] = 164983, + [SMALL_STATE(4655)] = 165000, + [SMALL_STATE(4656)] = 165017, + [SMALL_STATE(4657)] = 165034, + [SMALL_STATE(4658)] = 165051, + [SMALL_STATE(4659)] = 165068, + [SMALL_STATE(4660)] = 165085, + [SMALL_STATE(4661)] = 165102, + [SMALL_STATE(4662)] = 165119, + [SMALL_STATE(4663)] = 165136, + [SMALL_STATE(4664)] = 165153, + [SMALL_STATE(4665)] = 165170, + [SMALL_STATE(4666)] = 165187, + [SMALL_STATE(4667)] = 165204, + [SMALL_STATE(4668)] = 165221, + [SMALL_STATE(4669)] = 165238, + [SMALL_STATE(4670)] = 165255, + [SMALL_STATE(4671)] = 165272, + [SMALL_STATE(4672)] = 165289, + [SMALL_STATE(4673)] = 165306, + [SMALL_STATE(4674)] = 165323, + [SMALL_STATE(4675)] = 165340, + [SMALL_STATE(4676)] = 165357, + [SMALL_STATE(4677)] = 165374, + [SMALL_STATE(4678)] = 165391, + [SMALL_STATE(4679)] = 165408, + [SMALL_STATE(4680)] = 165425, + [SMALL_STATE(4681)] = 165442, + [SMALL_STATE(4682)] = 165459, + [SMALL_STATE(4683)] = 165476, + [SMALL_STATE(4684)] = 165493, + [SMALL_STATE(4685)] = 165510, + [SMALL_STATE(4686)] = 165527, + [SMALL_STATE(4687)] = 165544, + [SMALL_STATE(4688)] = 165561, + [SMALL_STATE(4689)] = 165578, + [SMALL_STATE(4690)] = 165595, + [SMALL_STATE(4691)] = 165612, + [SMALL_STATE(4692)] = 165629, + [SMALL_STATE(4693)] = 165646, + [SMALL_STATE(4694)] = 165663, + [SMALL_STATE(4695)] = 165680, + [SMALL_STATE(4696)] = 165697, + [SMALL_STATE(4697)] = 165714, + [SMALL_STATE(4698)] = 165731, + [SMALL_STATE(4699)] = 165748, + [SMALL_STATE(4700)] = 165765, + [SMALL_STATE(4701)] = 165782, + [SMALL_STATE(4702)] = 165799, + [SMALL_STATE(4703)] = 165816, + [SMALL_STATE(4704)] = 165833, + [SMALL_STATE(4705)] = 165850, + [SMALL_STATE(4706)] = 165867, + [SMALL_STATE(4707)] = 165884, + [SMALL_STATE(4708)] = 165901, + [SMALL_STATE(4709)] = 165918, + [SMALL_STATE(4710)] = 165935, + [SMALL_STATE(4711)] = 165952, + [SMALL_STATE(4712)] = 165969, + [SMALL_STATE(4713)] = 165986, + [SMALL_STATE(4714)] = 166003, + [SMALL_STATE(4715)] = 166020, + [SMALL_STATE(4716)] = 166037, + [SMALL_STATE(4717)] = 166054, + [SMALL_STATE(4718)] = 166071, + [SMALL_STATE(4719)] = 166088, + [SMALL_STATE(4720)] = 166105, + [SMALL_STATE(4721)] = 166122, + [SMALL_STATE(4722)] = 166139, + [SMALL_STATE(4723)] = 166156, + [SMALL_STATE(4724)] = 166173, + [SMALL_STATE(4725)] = 166190, + [SMALL_STATE(4726)] = 166207, + [SMALL_STATE(4727)] = 166224, + [SMALL_STATE(4728)] = 166241, + [SMALL_STATE(4729)] = 166258, + [SMALL_STATE(4730)] = 166275, + [SMALL_STATE(4731)] = 166292, + [SMALL_STATE(4732)] = 166309, + [SMALL_STATE(4733)] = 166326, + [SMALL_STATE(4734)] = 166343, + [SMALL_STATE(4735)] = 166360, + [SMALL_STATE(4736)] = 166364, + [SMALL_STATE(4737)] = 166368, + [SMALL_STATE(4738)] = 166372, }; 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(4621), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 0), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), [67] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), [75] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [83] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3616), - [86] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 4, .production_id = 13), - [88] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 4, .production_id = 13), - [90] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), - [92] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4570), - [97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 2, .production_id = 7), - [99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 2, .production_id = 7), - [101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_access, 2, .production_id = 2), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_access, 2, .production_id = 2), - [105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), + [81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), + [83] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 2, .production_id = 7), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 2, .production_id = 7), + [87] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 4, .production_id = 13), + [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 4, .production_id = 13), + [91] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), + [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), + [95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4259), + [98] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_name_repeat1, 2), + [100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3873), + [105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_access, 2, .production_id = 2), + [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_access, 2, .production_id = 2), [109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_literal, 1), [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_literal, 1), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), [115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 5), [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 5), - [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3), - [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), - [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), - [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4), - [135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), - [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), - [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), - [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), - [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), - [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), - [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3), - [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3), - [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 1), - [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 1), - [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 6), - [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 6), - [167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), - [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), - [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), - [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2), - [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2), + [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), + [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 6), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 6), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), + [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), + [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5, .production_id = 6), + [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5, .production_id = 6), + [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2), + [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2), + [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), + [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 1), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 1), + [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 6), + [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 6), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), + [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), + [167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), + [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), + [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6), + [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6), [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 14), [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 14), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 6), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 6), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), - [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), - [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), - [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5), + [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5), + [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), + [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__decimal_literal, 3), - [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decimal_literal, 3), - [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6), - [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6), - [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), - [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), - [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), - [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4), + [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__decimal_literal, 3), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decimal_literal, 3), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3), + [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3), + [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), + [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3), + [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(297), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2901), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2386), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1595), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1685), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3420), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2902), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(358), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1984), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4710), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(339), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4709), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2395), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3537), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(364), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3538), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1806), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4706), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2362), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2399), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4705), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4703), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(372), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3539), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(299), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2930), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2491), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1584), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1703), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3488), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2931), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(463), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1975), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4470), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(344), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4392), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2509), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3611), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(499), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3679), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1817), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4472), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2333), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2510), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4593), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4473), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(368), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3614), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3547), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(520), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3522), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(574), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(573), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(545), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2903), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2904), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(464), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2149), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(422), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(425), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(428), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(429), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3521), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3552), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(432), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(4670), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2069), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3513), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), - [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4079), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(4057), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 3), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 2), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 5), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 2), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 2), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4617), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3607), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 3), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 9), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 5), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4672), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 2), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3924), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 2), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3583), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 3), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(323), - [1399] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1842), - [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1935), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 1), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 9), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 9), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(326), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 9), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 9), - [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4220), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 22), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_phrase, 2, .production_id = 9), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4671), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3952), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 12), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 8), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 8), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 12, .production_id = 42), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 12, .production_id = 42), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 2), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 34), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 12), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 42), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 42), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 29), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 29), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 10), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 1), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 10), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 34), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 10), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_after_phrase, 2), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 42), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 42), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 29), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 29), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 34), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 9), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 9), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 9), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 12), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 42), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 42), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 9), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 9), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 29), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 29), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 34), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 8, .production_id = 12), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 8), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3603), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 8, .production_id = 18), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 12), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 1), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 42), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 42), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 40), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 40), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 39), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 39), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 29), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 29), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 8), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 8), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, .production_id = 18), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 34), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 12), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 10), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 7), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 7, .production_id = 18), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 7), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 12), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 42), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 42), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 40), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 40), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 39), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 39), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 29), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 29), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 7), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 7), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 27), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 27), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 26), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 26), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 18), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 34), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 12), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 10), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 32), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 20), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 6), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 6, .production_id = 18), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 12), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 6), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 12), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 6, .production_id = 29), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 6, .production_id = 29), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 6), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 6), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 27), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 27), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 26), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 26), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 18), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 34), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 10), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 10), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 12), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_scope_statement, 3), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_scope_statement, 3), - [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 34), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 12), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 12), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 10), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 34), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 21), - [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 20), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 5), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 5, .production_id = 18), - [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 34), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 12), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 5), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 5), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 18), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 4), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 4), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 12), - [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), - [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 12), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 10), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 10), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 4), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 4), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 12), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), - [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 18), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 12), - [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 5, .production_id = 18), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 5), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 20), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 21), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 10), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 12), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 18), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 12), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 6), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 6, .production_id = 18), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 6), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 20), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 32), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 10), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 12), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 18), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 12), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 7), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4180), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 7, .production_id = 18), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 7), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 10), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 12), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 34), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, .production_id = 18), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 12), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 34), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 34), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 12), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 34), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 12), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 34), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 12), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 34), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 12), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 34), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 12), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 10), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 10), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 34), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 10), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 12), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 34), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 9), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 9), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 9), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 12), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 34), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 8, .production_id = 12), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 8), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 8, .production_id = 18), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 45), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 45), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 51), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 51), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), - [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1594), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 50), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 50), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 50), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 50), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 45), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 45), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 51), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 51), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 6), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 6), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 8), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 8), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_tuning, 1), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_tuning, 1), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 45), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 45), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 10, .production_id = 50), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 10, .production_id = 50), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 10, .production_id = 51), - [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 10, .production_id = 51), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 11, .production_id = 50), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 11, .production_id = 50), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3553), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 2), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 2), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 30), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 1), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_tuning, 1), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 55), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 55), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, .production_id = 46), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, .production_id = 46), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 57), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 57), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 52), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 52), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 30), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 55), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 55), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(398), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1793), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1717), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 52), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 52), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 57), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 57), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 46), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 46), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 30), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), + [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(301), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3051), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2426), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1592), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1700), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3059), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3043), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(429), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2017), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4732), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(342), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4731), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2531), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3557), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(481), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3558), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1825), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4728), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2360), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2514), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4727), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4726), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(490), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3559), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(302), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2990), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2441), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1601), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1699), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3076), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3001), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(350), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2008), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4490), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(345), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4464), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2450), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3631), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(423), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3702), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1838), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4492), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2357), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2521), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4641), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4493), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(498), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3634), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3564), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(523), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3061), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(576), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(566), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(549), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2996), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2993), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(448), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2166), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(480), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(479), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(474), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(468), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3063), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3569), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(461), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(4698), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2121), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3065), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), + [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4334), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3836), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 3), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 2), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 5), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 2), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 2), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4637), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3627), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 3), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 9), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4640), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 5), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 2), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3678), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3603), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 2), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 3), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 9), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 9), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(325), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 9), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [1437] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1862), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1944), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 9), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(326), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4506), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_phrase, 2, .production_id = 9), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 22), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3891), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4677), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 34), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 34), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 7), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 7), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 12), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 12), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_after_phrase, 2), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 12), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 12), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 10), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 10), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 32), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 32), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 20), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 20), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 6), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 6), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 6), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 6), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 12), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 12), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 10), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_scope_statement, 3), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 12), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 12), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 10), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 10), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 21), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 21), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 20), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 20), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 5), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 5), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 10), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 12), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 12), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 12), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 12), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 10), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 4), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 4), + [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 34), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 34), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 10), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 10), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 4), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 4), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_scope_statement, 3), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 10), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 12), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 12), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 29), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 29), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 34), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 34), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, .production_id = 18), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, .production_id = 18), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 12), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 12), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3623), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 8), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 8), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 5), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 5), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 8, .production_id = 18), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 8, .production_id = 18), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 8), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 8), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [1846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), + [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 26), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 26), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 6), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 6), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 6, .production_id = 29), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 6, .production_id = 29), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 8, .production_id = 12), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 8, .production_id = 12), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 2), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 7), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 7), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 12), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 12), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 9), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 9), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 9), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 9), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 26), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 26), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 9), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 9), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 7), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 7), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 1), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 34), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 39), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 39), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 40), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 40), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 42), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 42), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 8), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 8), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 29), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 29), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 39), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 39), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 40), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 40), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 12), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 12), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 42), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 42), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 29), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 29), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 10), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 10), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 9), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 9), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 42), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 42), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 29), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 29), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 42), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 42), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 34), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 10), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 10), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 29), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 29), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 42), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 42), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 12), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 34), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 12, .production_id = 42), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 12, .production_id = 42), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 12), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 34), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 12), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 34), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 12), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 34), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 12), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 34), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 34), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 10), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 10), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 12), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 34), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 12), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 34), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 12), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 34), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 12), + [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4252), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 34), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 12), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 34), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 34), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 1), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 6), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_tuning, 1), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_tuning, 1), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 50), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 50), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 45), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 45), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 45), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 45), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 51), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 51), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1586), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 6), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 10, .production_id = 50), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 10, .production_id = 50), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 10, .production_id = 51), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 10, .production_id = 51), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 51), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 51), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 45), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 45), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 11, .production_id = 50), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 11, .production_id = 50), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 50), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 50), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 8), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 8), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3552), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 30), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 2), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 2), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_tuning, 1), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 1), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 55), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 55), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 57), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 57), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 52), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 52), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, .production_id = 46), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, .production_id = 46), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 30), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 52), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 52), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 46), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 46), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(400), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1809), + [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1729), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 55), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 55), [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5), [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 1), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 30), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 30), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 1), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [2638] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1250), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1842), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1250), - [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1935), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 2), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(482), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(1857), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 2), - [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3053), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(731), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1759), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(742), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2774), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 1), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 19), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_tuning, 1), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_tuning, 1), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 1), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 1), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), - [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3892), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(451), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(1841), - [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(4402), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3753), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 1), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 1), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 46), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 46), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(1250), - [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 2), - [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4398), - [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(3748), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 52), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 52), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2464), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2454), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2452), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2431), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2430), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2428), - [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), - [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(1841), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(4402), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 55), - [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 55), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10), - [2928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 1), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 30), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 57), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 57), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 30), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 1), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 30), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [2666] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1191), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 1), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 19), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(387), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(1899), + [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 2), + [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3157), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1862), + [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1191), + [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1944), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_tuning, 1), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_tuning, 1), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(733), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1791), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(770), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2912), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), + [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(1860), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3838), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(379), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(4489), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3703), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 1), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 1), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), + [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(1860), + [2894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(4489), + [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2512), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), + [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2484), + [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2398), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2400), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2408), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2411), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(1191), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4219), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(3921), [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10, .production_id = 57), [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10, .production_id = 57), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), - [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(3986), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1, .production_id = 15), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 3), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 2), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 38), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pre_tuning, 1), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2, .production_id = 15), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serialization_tuning, 1), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_serialization_tuning, 1), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), - [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(348), - [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(2161), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(1965), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1842), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1250), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3596), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 1), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1250), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 1), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 2, .production_id = 7), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5, .production_id = 38), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 4, .production_id = 13), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1, .production_id = 15), - [3238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1840), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 4, .production_id = 13), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 2, .production_id = 7), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 2), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), - [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(389), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(2737), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(3441), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 3), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 3), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(887), - [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1914), - [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(742), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3606), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 11), - [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 11), - [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 10), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 10), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 1), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 9), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 9), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 1), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 1), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 52), + [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 52), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 55), + [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 55), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 46), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 46), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2, .production_id = 15), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pre_tuning, 1), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 38), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serialization_tuning, 1), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_serialization_tuning, 1), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 3), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 2), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), + [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(3912), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1, .production_id = 15), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1862), + [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1191), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(416), + [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(2217), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(1997), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 1), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3616), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1191), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 1), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 2), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), + [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1845), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 4, .production_id = 13), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 2, .production_id = 7), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5, .production_id = 38), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1, .production_id = 15), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(464), + [3308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(2884), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(3292), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 2, .production_id = 7), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 4, .production_id = 13), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 1), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 3), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 9), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 9), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 3), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 11), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 11), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 10), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 10), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 1), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 30), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1922), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 1), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), SHIFT_REPEAT(2434), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 3), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 2), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 2), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(2519), - [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(3795), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 4), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(424), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(2455), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), - [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), SHIFT_REPEAT(3131), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(2932), - [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(3366), - [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), - [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(3027), - [3634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(4586), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(4342), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(2529), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), - [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2889), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(512), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 1), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 1), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(2759), - [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 1), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 1), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_tuning, 2), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(3133), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(3008), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 3), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 2), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), SHIFT_REPEAT(3759), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 1), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 19), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 1), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(2766), - [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), - [4030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(4247), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(2923), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4357), - [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4356), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(423), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 3), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 6), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 6), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 2), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 2), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 7), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 7), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 5), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 5), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 7), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 7), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 53), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 53), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 53), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 53), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 1), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 56), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 56), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 7), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 7), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 8), - [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 8), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 8), - [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 8), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 1), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 53), - [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 53), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 56), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 56), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 58), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 58), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 8), - [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 8), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), - [4273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), SHIFT_REPEAT(4161), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 9), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 9), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 9), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 9), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 9), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 9), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 53), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 53), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 56), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 56), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 58), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 58), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 9), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 9), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 30), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 10), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 10), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 10), - [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 10), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 10), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 10), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 53), - [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 53), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 56), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 56), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 58), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 58), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 10), - [4386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 10), - [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 5), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), - [4392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 11), - [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 11), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 11), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 11), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 56), - [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 56), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 58), - [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 58), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 11), - [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 11), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 12), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 12), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 53), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 53), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), - [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(452), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 56), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 56), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_type, 1), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 58), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 58), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 12), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 12), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 56), - [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 56), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 58), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 58), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 14, .production_id = 58), - [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 14, .production_id = 58), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 53), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 53), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1130), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1906), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(770), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 30), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3626), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), + [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(381), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(2475), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 4), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), SHIFT_REPEAT(2466), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), + [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(2522), + [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(3756), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 1), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 2), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 2), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 3), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1931), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(2969), + [3643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(3330), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), + [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(3000), + [3651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(4638), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), + [3660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), SHIFT_REPEAT(3208), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2764), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(514), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 1), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 1), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(4413), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(2608), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(2842), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 1), + [3934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 1), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 19), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 1), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 2), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), SHIFT_REPEAT(3925), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_tuning, 2), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(2917), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), + [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(3209), + [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(3027), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(2790), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), + [4061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(4130), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), + [4066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4422), + [4069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4421), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 3), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(435), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 1), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 56), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 56), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 8), + [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 8), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 2), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 14, .production_id = 58), + [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 14, .production_id = 58), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 6), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 6), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 53), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 53), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 58), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 58), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 8), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 8), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 53), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 53), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 56), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 56), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 5), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 5), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 10), + [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 10), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 58), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 58), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_type, 1), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 12), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 12), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 10), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 10), + [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 58), + [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 58), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 56), + [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 56), + [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 56), + [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 56), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 53), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 53), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 58), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 58), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 8), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 8), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 1), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 12), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 12), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 5), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 53), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 53), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 7), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 7), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 10), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 10), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 10), + [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 10), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), + [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), SHIFT_REPEAT(4262), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 3), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 11), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 11), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 58), + [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 58), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 56), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 56), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 9), + [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 9), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 9), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 9), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 9), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 9), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 56), + [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 56), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 53), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 53), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), + [4400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(348), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 30), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 53), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 53), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 53), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 53), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 56), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 56), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 1), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 7), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 7), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 11), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 11), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 11), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 11), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 7), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 7), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 9), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 9), [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 5), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 4), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_tuning, 1), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 1), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 3), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 3), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 4), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 4), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), - [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 1), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 30), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4684), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 48), - [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 21), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 1), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 6), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 43), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 2), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 5), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 5), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), - [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(3473), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 5), - [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), SHIFT_REPEAT(3470), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 1), - [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 1), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [4768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 4), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1), - [4806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 1), - [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(470), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), - [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), SHIFT_REPEAT(322), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3018), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 1), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 1), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3554), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 2), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 5), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5, .production_id = 31), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), - [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(2021), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 21), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6, .production_id = 43), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 44), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7, .production_id = 49), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), - [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), SHIFT_REPEAT(2560), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 1), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [5166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 2), SHIFT_REPEAT(3817), - [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 2), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 1), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 2), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3), - [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 10, .production_id = 30), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 48), - [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 21), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 1), - [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 1), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 43), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_mode, 1), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 33), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 9), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 8), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 7), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 6), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [6887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_mode, 1), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__find_type, 1), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 2), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 58), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 58), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7), + [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_tuning, 1), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 1), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 48), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 4), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 6), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 21), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 1), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 3), + [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 3), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1), + [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), + [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat1, 1), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 43), + [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 2), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 5), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 4), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 30), + [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), + [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(3078), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 5), + [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), SHIFT_REPEAT(3079), + [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [4771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4707), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 1), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 1), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 5), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 5), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(371), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [4903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 1), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 1), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 2), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 1), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), + [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), SHIFT_REPEAT(324), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2926), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 1), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 5), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5, .production_id = 31), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [5103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(2134), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 21), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6, .production_id = 43), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 44), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7, .production_id = 49), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), + [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), SHIFT_REPEAT(2664), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 2), SHIFT_REPEAT(3975), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 2), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3574), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 10, .production_id = 30), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 2), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 48), + [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 21), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_mode, 1), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 43), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 33), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_mode, 1), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 6), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 7), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__find_type, 1), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 8), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7177] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [7207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), - [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [7185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 9), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7225] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [7251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), + [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), }; #ifdef __cplusplus diff --git a/test/corpus/basic.txt b/test/corpus/basic.txt index 21155cd..27b23b7 100644 --- a/test/corpus/basic.txt +++ b/test/corpus/basic.txt @@ -769,6 +769,7 @@ END. fn(INPUT somepar, OUTPUT otherpar). fn-no-mode(somerpar). +fn-no-mode(somerpar) NO-ERROR. --------------------------------------------------------------------------------